create-young-proj 0.12.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +31 -22
- package/dist/index.mjs +34 -34
- package/package.json +12 -11
- package/template-nuxt-admin/README.md +23 -16
- package/template-nuxt-website/README.md +117 -0
- package/template-uni-app/README.md +5 -0
- package/template-admin-server/.editorconfig +0 -11
- package/template-admin-server/.nvmrc +0 -1
- package/template-admin-server/.vscode/extensions.json +0 -6
- package/template-admin-server/.vscode/settings.json +0 -4
- package/template-admin-server/_gitignore +0 -15
- package/template-admin-server/boot.mjs +0 -11
- package/template-admin-server/package.json +0 -60
- package/template-admin-server/rome.json +0 -22
- package/template-admin-server/src/config/config.default.ts +0 -56
- package/template-admin-server/src/configuration.ts +0 -47
- package/template-admin-server/src/controller/admin.controller.ts +0 -397
- package/template-admin-server/src/controller/api.controller.ts +0 -98
- package/template-admin-server/src/controller/base.controller.ts +0 -70
- package/template-admin-server/src/controller/dto/api.ts +0 -47
- package/template-admin-server/src/controller/dto/index.ts +0 -36
- package/template-admin-server/src/controller/dto/menu.ts +0 -41
- package/template-admin-server/src/controller/dto/role.ts +0 -41
- package/template-admin-server/src/controller/dto/user.ts +0 -52
- package/template-admin-server/src/controller/menu.controller.ts +0 -138
- package/template-admin-server/src/controller/role.controller.ts +0 -116
- package/template-admin-server/src/controller/user.controller.ts +0 -108
- package/template-admin-server/src/entities/Api.ts +0 -29
- package/template-admin-server/src/entities/BaseCreate.ts +0 -30
- package/template-admin-server/src/entities/Menu.ts +0 -39
- package/template-admin-server/src/entities/Role.ts +0 -36
- package/template-admin-server/src/entities/User.ts +0 -35
- package/template-admin-server/src/entities/index.ts +0 -10
- package/template-admin-server/src/filter/default.filter.ts +0 -22
- package/template-admin-server/src/filter/notfound.filter.ts +0 -23
- package/template-admin-server/src/middleware/helper.middleware.ts +0 -28
- package/template-admin-server/src/middleware/index.ts +0 -9
- package/template-admin-server/src/middleware/jwt.middleware.ts +0 -32
- package/template-admin-server/src/middleware/report.middleware.ts +0 -26
- package/template-admin-server/src/service/api.service.ts +0 -174
- package/template-admin-server/src/service/basic.ts +0 -118
- package/template-admin-server/src/service/index.ts +0 -10
- package/template-admin-server/src/service/menu.service.ts +0 -139
- package/template-admin-server/src/service/role.service.ts +0 -286
- package/template-admin-server/src/service/user.service.ts +0 -124
- package/template-admin-server/src/strategy/jwt.strategy.ts +0 -26
- package/template-admin-server/src/types/index.ts +0 -42
- package/template-admin-server/src/types/types.d.ts +0 -31
- package/template-admin-server/tsconfig.json +0 -24
- package/template-nuxt-admin/.eslintrc +0 -14
- package/template-nuxt-admin/.vscode/extensions.json +0 -12
- package/template-nuxt-admin/.vscode/settings.json +0 -25
- package/template-nuxt-admin/Dockerfile +0 -41
- package/template-nuxt-admin/_gitignore +0 -23
- package/template-nuxt-admin/_npmrc +0 -2
- package/template-nuxt-admin/app.vue +0 -41
- package/template-nuxt-admin/boot.mjs +0 -16
- package/template-nuxt-admin/components/ScreenFull.vue +0 -19
- package/template-nuxt-admin/components/TopSearch.vue +0 -77
- package/template-nuxt-admin/components/TopUser.vue +0 -72
- package/template-nuxt-admin/components/YoungChangePassword.vue +0 -97
- package/template-nuxt-admin/components/YoungCodeInput.vue +0 -66
- package/template-nuxt-admin/components/YoungLink.vue +0 -24
- package/template-nuxt-admin/components/YoungLoading.vue +0 -39
- package/template-nuxt-admin/components/layout/Footer.vue +0 -29
- package/template-nuxt-admin/components/layout/Logo.vue +0 -54
- package/template-nuxt-admin/components/layout/Main.vue +0 -26
- package/template-nuxt-admin/components/layout/NavBar.vue +0 -89
- package/template-nuxt-admin/components/layout/SideBar.vue +0 -96
- package/template-nuxt-admin/components/layout/SubMenu.vue +0 -52
- package/template-nuxt-admin/components/layout/TabsBar.vue +0 -184
- package/template-nuxt-admin/composables/api.ts +0 -105
- package/template-nuxt-admin/composables/apis/delete.ts +0 -37
- package/template-nuxt-admin/composables/apis/get.ts +0 -83
- package/template-nuxt-admin/composables/apis/index.ts +0 -10
- package/template-nuxt-admin/composables/apis/patch.ts +0 -74
- package/template-nuxt-admin/composables/apis/post.ts +0 -85
- package/template-nuxt-admin/composables/config.ts +0 -13
- package/template-nuxt-admin/composables/icon.ts +0 -27
- package/template-nuxt-admin/composables/nav.ts +0 -75
- package/template-nuxt-admin/composables/tags.ts +0 -136
- package/template-nuxt-admin/composables/user.ts +0 -46
- package/template-nuxt-admin/config/.devrc +0 -1
- package/template-nuxt-admin/config/.onlinerc +0 -1
- package/template-nuxt-admin/config/.testrc +0 -1
- package/template-nuxt-admin/env.d.ts +0 -47
- package/template-nuxt-admin/error.vue +0 -61
- package/template-nuxt-admin/layouts/blank.vue +0 -9
- package/template-nuxt-admin/layouts/default.vue +0 -125
- package/template-nuxt-admin/middleware/auth.global.ts +0 -69
- package/template-nuxt-admin/nuxt.config.ts +0 -106
- package/template-nuxt-admin/package.json +0 -64
- package/template-nuxt-admin/pages/home/[id].vue +0 -28
- package/template-nuxt-admin/pages/index.vue +0 -15
- package/template-nuxt-admin/pages/login.vue +0 -199
- package/template-nuxt-admin/pages/system/api.vue +0 -179
- package/template-nuxt-admin/pages/system/hooks/useRole.ts +0 -335
- package/template-nuxt-admin/pages/system/menuList.vue +0 -353
- package/template-nuxt-admin/pages/system/role.vue +0 -145
- package/template-nuxt-admin/pages/system/user.vue +0 -225
- package/template-nuxt-admin/plugins/directive.ts +0 -26
- package/template-nuxt-admin/public/bg.webp +0 -0
- package/template-nuxt-admin/public/default_avatar.svg +0 -1
- package/template-nuxt-admin/public/favicon.svg +0 -2
- package/template-nuxt-admin/public/image_placeholder.svg +0 -15
- package/template-nuxt-admin/public/logo.svg +0 -2
- package/template-nuxt-admin/public/tabbar_bg.png +0 -0
- package/template-nuxt-admin/server/api/[...all].ts +0 -10
- package/template-nuxt-admin/server/plugins/env.ts +0 -87
- package/template-nuxt-admin/server/routes/get/env.ts +0 -13
- package/template-nuxt-admin/server/tsconfig.json +0 -3
- package/template-nuxt-admin/server/utils/index.ts +0 -36
- package/template-nuxt-admin/styles/element.scss +0 -30
- package/template-nuxt-admin/styles/index.scss +0 -59
- package/template-nuxt-admin/styles/variable.scss +0 -103
- package/template-nuxt-admin/tsconfig.json +0 -7
- package/template-nuxt-admin/typings/global.d.ts +0 -16
- package/template-nuxt-admin/typings/system.d.ts +0 -66
- package/template-nuxt-admin/typings/user.d.ts +0 -19
- package/template-nuxt-admin/uno.config.ts +0 -40
- package/template-nuxt-admin/utils/tool.ts +0 -199
- package/template-nuxt-admin/yarn.lock +0 -8635
- package/template-uni-app/.eslintignore +0 -1
- package/template-uni-app/.eslintrc +0 -16
- package/template-uni-app/.vscode/.server-controller-port.log +0 -5
- package/template-uni-app/.vscode/css.code-snippets +0 -398
- package/template-uni-app/.vscode/extensions.json +0 -12
- package/template-uni-app/.vscode/js.code-snippets +0 -1669
- package/template-uni-app/.vscode/settings.json +0 -25
- package/template-uni-app/.vscode/vue-html.code-snippets +0 -682
- package/template-uni-app/_env +0 -3
- package/template-uni-app/_env.development +0 -11
- package/template-uni-app/_env.production +0 -8
- package/template-uni-app/_env.test +0 -11
- package/template-uni-app/_gitignore +0 -3
- package/template-uni-app/_npmrc +0 -2
- package/template-uni-app/auto-imports.d.ts +0 -410
- package/template-uni-app/components.d.ts +0 -17
- package/template-uni-app/custom-plugins/index.ts +0 -8
- package/template-uni-app/custom-plugins/multiconf.ts +0 -74
- package/template-uni-app/custom-plugins/polyfill.ts +0 -32
- package/template-uni-app/dist/dev/mp-weixin/apis/index.js +0 -44
- package/template-uni-app/dist/dev/mp-weixin/apis/lib/index.js +0 -90
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +0 -10
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +0 -15
- package/template-uni-app/dist/dev/mp-weixin/app.js +0 -93
- package/template-uni-app/dist/dev/mp-weixin/app.json +0 -51
- package/template-uni-app/dist/dev/mp-weixin/app.wxss +0 -2378
- package/template-uni-app/dist/dev/mp-weixin/common/assets.js +0 -13
- package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +0 -10189
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.js +0 -82
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +0 -108
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +0 -56
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +0 -88
- package/template-uni-app/dist/dev/mp-weixin/config/enum.js +0 -21
- package/template-uni-app/dist/dev/mp-weixin/config/index.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/config/map.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +0 -30
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +0 -6
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.js +0 -56
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +0 -9
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js +0 -98
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +0 -125
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +0 -38
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +0 -5
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.js +0 -51
- package/template-uni-app/dist/dev/mp-weixin/pages/index.json +0 -5
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/pages/my.json +0 -3
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/project.config.json +0 -56
- package/template-uni-app/dist/dev/mp-weixin/static/back.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/h.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/home.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/home_active.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/more.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/my.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/my_active.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/network.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/store/index.js +0 -8
- package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +0 -11
- package/template-uni-app/dist/dev/mp-weixin/store/system.js +0 -14
- package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +0 -82
- package/template-uni-app/dist/dev/mp-weixin/utils/route.js +0 -85
- package/template-uni-app/dist/dev/mp-weixin/utils/system.js +0 -27
- package/template-uni-app/index.html +0 -23
- package/template-uni-app/manifest.config.ts +0 -88
- package/template-uni-app/package.json +0 -109
- package/template-uni-app/pages.config.ts +0 -58
- package/template-uni-app/pnpm-lock.yaml +0 -9918
- package/template-uni-app/src/App.vue +0 -79
- package/template-uni-app/src/apis/index.ts +0 -54
- package/template-uni-app/src/apis/lib/index.ts +0 -235
- package/template-uni-app/src/apis/requests/get.ts +0 -52
- package/template-uni-app/src/apis/requests/index.ts +0 -8
- package/template-uni-app/src/apis/requests/post.ts +0 -23
- package/template-uni-app/src/components/young-loading/young-loading.vue +0 -36
- package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +0 -35
- package/template-uni-app/src/components/young-navbar/young-navbar.vue +0 -252
- package/template-uni-app/src/components/young-tabbar/young-tabbar.vue +0 -145
- package/template-uni-app/src/config/enum.ts +0 -47
- package/template-uni-app/src/config/index.ts +0 -8
- package/template-uni-app/src/config/map.ts +0 -15
- package/template-uni-app/src/env.d.ts +0 -36
- package/template-uni-app/src/layouts/default.vue +0 -22
- package/template-uni-app/src/layouts/tabbar.vue +0 -38
- package/template-uni-app/src/main.ts +0 -20
- package/template-uni-app/src/manifest.json +0 -75
- package/template-uni-app/src/pages/demo/index.vue +0 -30
- package/template-uni-app/src/pages/index.vue +0 -65
- package/template-uni-app/src/pages/my.vue +0 -30
- package/template-uni-app/src/pages.json +0 -74
- package/template-uni-app/src/static/back.png +0 -0
- package/template-uni-app/src/static/h.png +0 -0
- package/template-uni-app/src/static/home.png +0 -0
- package/template-uni-app/src/static/home_active.png +0 -0
- package/template-uni-app/src/static/more.png +0 -0
- package/template-uni-app/src/static/my.png +0 -0
- package/template-uni-app/src/static/my_active.png +0 -0
- package/template-uni-app/src/static/network.png +0 -0
- package/template-uni-app/src/store/index.ts +0 -16
- package/template-uni-app/src/store/local/index.ts +0 -42
- package/template-uni-app/src/store/system.ts +0 -21
- package/template-uni-app/src/typings/global.d.ts +0 -7
- package/template-uni-app/src/uni.scss +0 -76
- package/template-uni-app/src/utils/auth.ts +0 -204
- package/template-uni-app/src/utils/index.ts +0 -11
- package/template-uni-app/src/utils/map.ts +0 -98
- package/template-uni-app/src/utils/modal.ts +0 -120
- package/template-uni-app/src/utils/route.ts +0 -151
- package/template-uni-app/src/utils/system.ts +0 -67
- package/template-uni-app/tsconfig.json +0 -16
- package/template-uni-app/unocss.config.ts +0 -30
- package/template-uni-app/vite.config.ts +0 -64
- package/template-uni-app/volar.config.js +0 -6
- package/template-vue-mobile/.vscode/base.code-snippets +0 -24
- package/template-vue-mobile/.vscode/extensions.json +0 -10
- package/template-vue-mobile/.vscode/settings.json +0 -7
- package/template-vue-mobile/Dockerfile +0 -42
- package/template-vue-mobile/_env +0 -6
- package/template-vue-mobile/_gitignore +0 -30
- package/template-vue-mobile/boot.mjs +0 -16
- package/template-vue-mobile/build/custom-plugin.ts +0 -30
- package/template-vue-mobile/build/index.ts +0 -7
- package/template-vue-mobile/build/plugins.ts +0 -68
- package/template-vue-mobile/config/.devrc +0 -2
- package/template-vue-mobile/config/.onlinerc +0 -1
- package/template-vue-mobile/config/.testrc +0 -1
- package/template-vue-mobile/index.html +0 -25
- package/template-vue-mobile/nitro.config.ts +0 -19
- package/template-vue-mobile/package.json +0 -48
- package/template-vue-mobile/plugins/env.ts +0 -26
- package/template-vue-mobile/public/vite.svg +0 -1
- package/template-vue-mobile/rome.json +0 -24
- package/template-vue-mobile/routes/[...all].ts +0 -11
- package/template-vue-mobile/routes/get/env.ts +0 -25
- package/template-vue-mobile/src/App.vue +0 -29
- package/template-vue-mobile/src/auto-components.d.ts +0 -24
- package/template-vue-mobile/src/auto-imports.d.ts +0 -289
- package/template-vue-mobile/src/components/Init.vue +0 -36
- package/template-vue-mobile/src/global.d.ts +0 -7
- package/template-vue-mobile/src/hooks/useVerifyCode.ts +0 -46
- package/template-vue-mobile/src/layouts/blank.vue +0 -9
- package/template-vue-mobile/src/layouts/default.vue +0 -27
- package/template-vue-mobile/src/layouts/sub.vue +0 -20
- package/template-vue-mobile/src/main.ts +0 -35
- package/template-vue-mobile/src/modules/1-router.ts +0 -40
- package/template-vue-mobile/src/modules/2-pinia.ts +0 -10
- package/template-vue-mobile/src/modules/3-net.ts +0 -46
- package/template-vue-mobile/src/modules/4-auth.ts +0 -64
- package/template-vue-mobile/src/views/[...all_404].vue +0 -557
- package/template-vue-mobile/src/views/base/login.vue +0 -110
- package/template-vue-mobile/src/views/base/resetPasswd.vue +0 -88
- package/template-vue-mobile/src/views/index.vue +0 -18
- package/template-vue-mobile/src/views/my.vue +0 -15
- package/template-vue-mobile/src/views/sub.vue +0 -18
- package/template-vue-mobile/src/vite-env.d.ts +0 -43
- package/template-vue-mobile/tsconfig.json +0 -21
- package/template-vue-mobile/tsconfig.node.json +0 -9
- package/template-vue-mobile/unocss.config.ts +0 -47
- package/template-vue-mobile/vite.config.ts +0 -32
- package/template-vue-mobile/yarn.lock +0 -4395
- package/template-vue-thin/.vscode/extensions.json +0 -10
- package/template-vue-thin/.vscode/settings.json +0 -4
- package/template-vue-thin/_env +0 -1
- package/template-vue-thin/_gitignore +0 -29
- package/template-vue-thin/index.html +0 -21
- package/template-vue-thin/package.json +0 -40
- package/template-vue-thin/public/vite.svg +0 -1
- package/template-vue-thin/src/App.vue +0 -9
- package/template-vue-thin/src/layouts/blank.vue +0 -9
- package/template-vue-thin/src/layouts/default.vue +0 -12
- package/template-vue-thin/src/layouts/list.vue +0 -12
- package/template-vue-thin/src/main.ts +0 -58
- package/template-vue-thin/src/views/[...all_404].vue +0 -488
- package/template-vue-thin/src/views/index.vue +0 -19
- package/template-vue-thin/src/views/list.vue +0 -17
- package/template-vue-thin/src/vite-env.d.ts +0 -22
- package/template-vue-thin/tsconfig.json +0 -21
- package/template-vue-thin/tsconfig.node.json +0 -9
- package/template-vue-thin/unocss.config.ts +0 -47
- package/template-vue-thin/vite.config.ts +0 -64
@@ -1,11 +0,0 @@
|
|
1
|
-
###
|
2
|
-
# @Author: zhangyang
|
3
|
-
# @Date: 2023-07-19 15:26:04
|
4
|
-
# @LastEditTime: 2023-07-19 15:52:20
|
5
|
-
# @Description: 测试配置,需要传递 --mode=test 才会启用
|
6
|
-
###
|
7
|
-
|
8
|
-
# 非标准 mode 时需要,可能的取值为 development 或者 production
|
9
|
-
# NODE_ENV = production
|
10
|
-
|
11
|
-
# 下面为应用需要使用的环境变量,需要以 VITE_ 开头
|
package/template-uni-app/_npmrc
DELETED
@@ -1,410 +0,0 @@
|
|
1
|
-
/* eslint-disable */
|
2
|
-
/* prettier-ignore */
|
3
|
-
// @ts-nocheck
|
4
|
-
// noinspection JSUnusedGlobalSymbols
|
5
|
-
// Generated by unplugin-auto-import
|
6
|
-
export {}
|
7
|
-
declare global {
|
8
|
-
const AuthLocationEvents: typeof import('./src/config/enum')['AuthLocationEvents']
|
9
|
-
const EffectScope: typeof import('vue')['EffectScope']
|
10
|
-
const Pages: typeof import('./src/config/enum')['Pages']
|
11
|
-
const SubscribeMessage: typeof import('./src/config/enum')['SubscribeMessage']
|
12
|
-
const TabbarArr: typeof import('./src/config/enum')['TabbarArr']
|
13
|
-
const UIEvents: typeof import('./src/config/enum')['UIEvents']
|
14
|
-
const UsefulContentTypes: typeof import('./src/apis/lib/index')['UsefulContentTypes']
|
15
|
-
const YoungStorageKeys: typeof import('./src/config/enum')['YoungStorageKeys']
|
16
|
-
const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate']
|
17
|
-
const apis: typeof import('./src/apis/index')['apis']
|
18
|
-
const authLocation: typeof import('./src/utils/auth')['authLocation']
|
19
|
-
const back: typeof import('./src/utils/route')['back']
|
20
|
-
const computed: typeof import('vue')['computed']
|
21
|
-
const createApp: typeof import('vue')['createApp']
|
22
|
-
const createPinia: typeof import('pinia')['createPinia']
|
23
|
-
const customRef: typeof import('vue')['customRef']
|
24
|
-
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
25
|
-
const defineComponent: typeof import('vue')['defineComponent']
|
26
|
-
const defineStore: typeof import('pinia')['defineStore']
|
27
|
-
const effectScope: typeof import('vue')['effectScope']
|
28
|
-
const geocoderLocation: typeof import('./src/utils/map')['geocoderLocation']
|
29
|
-
const getActivePinia: typeof import('pinia')['getActivePinia']
|
30
|
-
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
31
|
-
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
32
|
-
const getLocationInfo: typeof import('./src/store/local/index')['getLocationInfo']
|
33
|
-
const getMapApiKey: typeof import('./src/config/map')['getMapApiKey']
|
34
|
-
const getNavbarHeihgt: typeof import('./src/store/local/index')['getNavbarHeihgt']
|
35
|
-
const getReqUrl: typeof import('./src/apis/index')['getReqUrl']
|
36
|
-
const getSystemInfo: typeof import('./src/utils/system')['getSystemInfo']
|
37
|
-
const getUuid: typeof import('./src/store/local/index')['getUuid']
|
38
|
-
const getWxCode: typeof import('./src/utils/auth')['getWxCode']
|
39
|
-
const h: typeof import('vue')['h']
|
40
|
-
const hideLoading: typeof import('./src/utils/modal')['hideLoading']
|
41
|
-
const inject: typeof import('vue')['inject']
|
42
|
-
const isProxy: typeof import('vue')['isProxy']
|
43
|
-
const isReactive: typeof import('vue')['isReactive']
|
44
|
-
const isReadonly: typeof import('vue')['isReadonly']
|
45
|
-
const isRef: typeof import('vue')['isRef']
|
46
|
-
const locate: typeof import('./src/utils/auth')['locate']
|
47
|
-
const mapActions: typeof import('pinia')['mapActions']
|
48
|
-
const mapGetters: typeof import('pinia')['mapGetters']
|
49
|
-
const mapState: typeof import('pinia')['mapState']
|
50
|
-
const mapStores: typeof import('pinia')['mapStores']
|
51
|
-
const mapWritableState: typeof import('pinia')['mapWritableState']
|
52
|
-
const markRaw: typeof import('vue')['markRaw']
|
53
|
-
const nextTick: typeof import('vue')['nextTick']
|
54
|
-
const onActivated: typeof import('vue')['onActivated']
|
55
|
-
const onAddToFavorites: typeof import('@dcloudio/uni-app')['onAddToFavorites']
|
56
|
-
const onBackPress: typeof import('@dcloudio/uni-app')['onBackPress']
|
57
|
-
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
58
|
-
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
59
|
-
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
60
|
-
const onDeactivated: typeof import('vue')['onDeactivated']
|
61
|
-
const onError: typeof import('@dcloudio/uni-app')['onError']
|
62
|
-
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
63
|
-
const onHide: typeof import('@dcloudio/uni-app')['onHide']
|
64
|
-
const onLaunch: typeof import('@dcloudio/uni-app')['onLaunch']
|
65
|
-
const onLoad: typeof import('@dcloudio/uni-app')['onLoad']
|
66
|
-
const onMounted: typeof import('vue')['onMounted']
|
67
|
-
const onNavigationBarButtonTap: typeof import('@dcloudio/uni-app')['onNavigationBarButtonTap']
|
68
|
-
const onNavigationBarSearchInputChanged: typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputChanged']
|
69
|
-
const onNavigationBarSearchInputClicked: typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputClicked']
|
70
|
-
const onNavigationBarSearchInputConfirmed: typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputConfirmed']
|
71
|
-
const onNavigationBarSearchInputFocusChanged: typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputFocusChanged']
|
72
|
-
const onPageNotFound: typeof import('@dcloudio/uni-app')['onPageNotFound']
|
73
|
-
const onPageScroll: typeof import('@dcloudio/uni-app')['onPageScroll']
|
74
|
-
const onPullDownRefresh: typeof import('@dcloudio/uni-app')['onPullDownRefresh']
|
75
|
-
const onReachBottom: typeof import('@dcloudio/uni-app')['onReachBottom']
|
76
|
-
const onReady: typeof import('@dcloudio/uni-app')['onReady']
|
77
|
-
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
78
|
-
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
79
|
-
const onResize: typeof import('@dcloudio/uni-app')['onResize']
|
80
|
-
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
81
|
-
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
82
|
-
const onShareAppMessage: typeof import('@dcloudio/uni-app')['onShareAppMessage']
|
83
|
-
const onShareTimeline: typeof import('@dcloudio/uni-app')['onShareTimeline']
|
84
|
-
const onShow: typeof import('@dcloudio/uni-app')['onShow']
|
85
|
-
const onTabItemTap: typeof import('@dcloudio/uni-app')['onTabItemTap']
|
86
|
-
const onThemeChange: typeof import('@dcloudio/uni-app')['onThemeChange']
|
87
|
-
const onUnhandledRejection: typeof import('@dcloudio/uni-app')['onUnhandledRejection']
|
88
|
-
const onUnload: typeof import('@dcloudio/uni-app')['onUnload']
|
89
|
-
const onUnmounted: typeof import('vue')['onUnmounted']
|
90
|
-
const onUpdated: typeof import('vue')['onUpdated']
|
91
|
-
const provide: typeof import('vue')['provide']
|
92
|
-
const reactive: typeof import('vue')['reactive']
|
93
|
-
const readonly: typeof import('vue')['readonly']
|
94
|
-
const redirect: typeof import('./src/utils/route')['redirect']
|
95
|
-
const ref: typeof import('vue')['ref']
|
96
|
-
const relaunch: typeof import('./src/utils/route')['relaunch']
|
97
|
-
const removeLocationInfo: typeof import('./src/store/local/index')['removeLocationInfo']
|
98
|
-
const resolveComponent: typeof import('vue')['resolveComponent']
|
99
|
-
const route: typeof import('./src/utils/route')['route']
|
100
|
-
const searchLoaction: typeof import('./src/utils/map')['searchLoaction']
|
101
|
-
const setActivePinia: typeof import('pinia')['setActivePinia']
|
102
|
-
const setLocationInfo: typeof import('./src/store/local/index')['setLocationInfo']
|
103
|
-
const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
|
104
|
-
const setNavbarHeihgt: typeof import('./src/store/local/index')['setNavbarHeihgt']
|
105
|
-
const setUuid: typeof import('./src/store/local/index')['setUuid']
|
106
|
-
const setupStore: typeof import('./src/store/index')['setupStore']
|
107
|
-
const shallowReactive: typeof import('vue')['shallowReactive']
|
108
|
-
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
109
|
-
const shallowRef: typeof import('vue')['shallowRef']
|
110
|
-
const showErrorModal: typeof import('./src/utils/modal')['showErrorModal']
|
111
|
-
const showLoading: typeof import('./src/utils/modal')['showLoading']
|
112
|
-
const showModal: typeof import('./src/utils/modal')['showModal']
|
113
|
-
const showToast: typeof import('./src/utils/modal')['showToast']
|
114
|
-
const storeToRefs: typeof import('pinia')['storeToRefs']
|
115
|
-
const subscribeMessage: typeof import('./src/utils/system')['subscribeMessage']
|
116
|
-
const tabbar: typeof import('./src/utils/route')['tabbar']
|
117
|
-
const to: typeof import('./src/utils/route')['to']
|
118
|
-
const toRaw: typeof import('vue')['toRaw']
|
119
|
-
const toRef: typeof import('vue')['toRef']
|
120
|
-
const toRefs: typeof import('vue')['toRefs']
|
121
|
-
const toValue: typeof import('vue')['toValue']
|
122
|
-
const triggerRef: typeof import('vue')['triggerRef']
|
123
|
-
const unref: typeof import('vue')['unref']
|
124
|
-
const useAttrs: typeof import('vue')['useAttrs']
|
125
|
-
const useCssModule: typeof import('vue')['useCssModule']
|
126
|
-
const useCssVars: typeof import('vue')['useCssVars']
|
127
|
-
const useGet: typeof import('./src/apis/requests/get')['useGet']
|
128
|
-
const useHttp: typeof import('./src/apis/lib/index')['useHttp']
|
129
|
-
const useHttpLoading: typeof import('./src/store/system')['useHttpLoading']
|
130
|
-
const usePost: typeof import('./src/apis/requests/post')['usePost']
|
131
|
-
const useSlots: typeof import('vue')['useSlots']
|
132
|
-
const useSystemInfo: typeof import('./src/store/system')['useSystemInfo']
|
133
|
-
const watch: typeof import('vue')['watch']
|
134
|
-
const watchEffect: typeof import('vue')['watchEffect']
|
135
|
-
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
136
|
-
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
137
|
-
}
|
138
|
-
// for type re-export
|
139
|
-
declare global {
|
140
|
-
// @ts-ignore
|
141
|
-
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
|
142
|
-
}
|
143
|
-
// for vue template auto import
|
144
|
-
import { UnwrapRef } from 'vue'
|
145
|
-
declare module 'vue' {
|
146
|
-
interface ComponentCustomProperties {
|
147
|
-
readonly AuthLocationEvents: UnwrapRef<typeof import('./src/config/enum')['AuthLocationEvents']>
|
148
|
-
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
149
|
-
readonly Pages: UnwrapRef<typeof import('./src/config/enum')['Pages']>
|
150
|
-
readonly SubscribeMessage: UnwrapRef<typeof import('./src/config/enum')['SubscribeMessage']>
|
151
|
-
readonly TabbarArr: UnwrapRef<typeof import('./src/config/enum')['TabbarArr']>
|
152
|
-
readonly UIEvents: UnwrapRef<typeof import('./src/config/enum')['UIEvents']>
|
153
|
-
readonly UsefulContentTypes: UnwrapRef<typeof import('./src/apis/lib/index')['UsefulContentTypes']>
|
154
|
-
readonly YoungStorageKeys: UnwrapRef<typeof import('./src/config/enum')['YoungStorageKeys']>
|
155
|
-
readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
|
156
|
-
readonly apis: UnwrapRef<typeof import('./src/apis/index')['apis']>
|
157
|
-
readonly authLocation: UnwrapRef<typeof import('./src/utils/auth')['authLocation']>
|
158
|
-
readonly back: UnwrapRef<typeof import('./src/utils/route')['back']>
|
159
|
-
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
160
|
-
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
161
|
-
readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
|
162
|
-
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
163
|
-
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
164
|
-
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
165
|
-
readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
|
166
|
-
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
167
|
-
readonly geocoderLocation: UnwrapRef<typeof import('./src/utils/map')['geocoderLocation']>
|
168
|
-
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
|
169
|
-
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
170
|
-
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
171
|
-
readonly getLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['getLocationInfo']>
|
172
|
-
readonly getMapApiKey: UnwrapRef<typeof import('./src/config/map')['getMapApiKey']>
|
173
|
-
readonly getNavbarHeihgt: UnwrapRef<typeof import('./src/store/local/index')['getNavbarHeihgt']>
|
174
|
-
readonly getReqUrl: UnwrapRef<typeof import('./src/apis/index')['getReqUrl']>
|
175
|
-
readonly getSystemInfo: UnwrapRef<typeof import('./src/utils/system')['getSystemInfo']>
|
176
|
-
readonly getUuid: UnwrapRef<typeof import('./src/store/local/index')['getUuid']>
|
177
|
-
readonly getWxCode: UnwrapRef<typeof import('./src/utils/auth')['getWxCode']>
|
178
|
-
readonly h: UnwrapRef<typeof import('vue')['h']>
|
179
|
-
readonly hideLoading: UnwrapRef<typeof import('./src/utils/modal')['hideLoading']>
|
180
|
-
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
181
|
-
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
182
|
-
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
183
|
-
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
184
|
-
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
185
|
-
readonly locate: UnwrapRef<typeof import('./src/utils/auth')['locate']>
|
186
|
-
readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
|
187
|
-
readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
|
188
|
-
readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
|
189
|
-
readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
|
190
|
-
readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
|
191
|
-
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
192
|
-
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
193
|
-
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
194
|
-
readonly onAddToFavorites: UnwrapRef<typeof import('@dcloudio/uni-app')['onAddToFavorites']>
|
195
|
-
readonly onBackPress: UnwrapRef<typeof import('@dcloudio/uni-app')['onBackPress']>
|
196
|
-
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
197
|
-
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
198
|
-
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
199
|
-
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
200
|
-
readonly onError: UnwrapRef<typeof import('@dcloudio/uni-app')['onError']>
|
201
|
-
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
202
|
-
readonly onHide: UnwrapRef<typeof import('@dcloudio/uni-app')['onHide']>
|
203
|
-
readonly onLaunch: UnwrapRef<typeof import('@dcloudio/uni-app')['onLaunch']>
|
204
|
-
readonly onLoad: UnwrapRef<typeof import('@dcloudio/uni-app')['onLoad']>
|
205
|
-
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
206
|
-
readonly onNavigationBarButtonTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarButtonTap']>
|
207
|
-
readonly onNavigationBarSearchInputChanged: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputChanged']>
|
208
|
-
readonly onNavigationBarSearchInputClicked: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputClicked']>
|
209
|
-
readonly onNavigationBarSearchInputConfirmed: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputConfirmed']>
|
210
|
-
readonly onNavigationBarSearchInputFocusChanged: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputFocusChanged']>
|
211
|
-
readonly onPageNotFound: UnwrapRef<typeof import('@dcloudio/uni-app')['onPageNotFound']>
|
212
|
-
readonly onPageScroll: UnwrapRef<typeof import('@dcloudio/uni-app')['onPageScroll']>
|
213
|
-
readonly onPullDownRefresh: UnwrapRef<typeof import('@dcloudio/uni-app')['onPullDownRefresh']>
|
214
|
-
readonly onReachBottom: UnwrapRef<typeof import('@dcloudio/uni-app')['onReachBottom']>
|
215
|
-
readonly onReady: UnwrapRef<typeof import('@dcloudio/uni-app')['onReady']>
|
216
|
-
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
217
|
-
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
218
|
-
readonly onResize: UnwrapRef<typeof import('@dcloudio/uni-app')['onResize']>
|
219
|
-
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
220
|
-
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
221
|
-
readonly onShareAppMessage: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareAppMessage']>
|
222
|
-
readonly onShareTimeline: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareTimeline']>
|
223
|
-
readonly onShow: UnwrapRef<typeof import('@dcloudio/uni-app')['onShow']>
|
224
|
-
readonly onTabItemTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onTabItemTap']>
|
225
|
-
readonly onThemeChange: UnwrapRef<typeof import('@dcloudio/uni-app')['onThemeChange']>
|
226
|
-
readonly onUnhandledRejection: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnhandledRejection']>
|
227
|
-
readonly onUnload: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnload']>
|
228
|
-
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
229
|
-
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
230
|
-
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
231
|
-
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
232
|
-
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
233
|
-
readonly redirect: UnwrapRef<typeof import('./src/utils/route')['redirect']>
|
234
|
-
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
235
|
-
readonly relaunch: UnwrapRef<typeof import('./src/utils/route')['relaunch']>
|
236
|
-
readonly removeLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['removeLocationInfo']>
|
237
|
-
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
238
|
-
readonly route: UnwrapRef<typeof import('./src/utils/route')['route']>
|
239
|
-
readonly searchLoaction: UnwrapRef<typeof import('./src/utils/map')['searchLoaction']>
|
240
|
-
readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
|
241
|
-
readonly setLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['setLocationInfo']>
|
242
|
-
readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
|
243
|
-
readonly setNavbarHeihgt: UnwrapRef<typeof import('./src/store/local/index')['setNavbarHeihgt']>
|
244
|
-
readonly setUuid: UnwrapRef<typeof import('./src/store/local/index')['setUuid']>
|
245
|
-
readonly setupStore: UnwrapRef<typeof import('./src/store/index')['setupStore']>
|
246
|
-
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
247
|
-
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
248
|
-
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
249
|
-
readonly showErrorModal: UnwrapRef<typeof import('./src/utils/modal')['showErrorModal']>
|
250
|
-
readonly showLoading: UnwrapRef<typeof import('./src/utils/modal')['showLoading']>
|
251
|
-
readonly showModal: UnwrapRef<typeof import('./src/utils/modal')['showModal']>
|
252
|
-
readonly showToast: UnwrapRef<typeof import('./src/utils/modal')['showToast']>
|
253
|
-
readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
|
254
|
-
readonly subscribeMessage: UnwrapRef<typeof import('./src/utils/system')['subscribeMessage']>
|
255
|
-
readonly tabbar: UnwrapRef<typeof import('./src/utils/route')['tabbar']>
|
256
|
-
readonly to: UnwrapRef<typeof import('./src/utils/route')['to']>
|
257
|
-
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
258
|
-
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
259
|
-
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
260
|
-
readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
|
261
|
-
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
262
|
-
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
263
|
-
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
264
|
-
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
265
|
-
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
266
|
-
readonly useGet: UnwrapRef<typeof import('./src/apis/requests/get')['useGet']>
|
267
|
-
readonly useHttp: UnwrapRef<typeof import('./src/apis/lib/index')['useHttp']>
|
268
|
-
readonly useHttpLoading: UnwrapRef<typeof import('./src/store/system')['useHttpLoading']>
|
269
|
-
readonly usePost: UnwrapRef<typeof import('./src/apis/requests/post')['usePost']>
|
270
|
-
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
271
|
-
readonly useSystemInfo: UnwrapRef<typeof import('./src/store/system')['useSystemInfo']>
|
272
|
-
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
273
|
-
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
274
|
-
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
275
|
-
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
276
|
-
}
|
277
|
-
}
|
278
|
-
declare module '@vue/runtime-core' {
|
279
|
-
interface ComponentCustomProperties {
|
280
|
-
readonly AuthLocationEvents: UnwrapRef<typeof import('./src/config/enum')['AuthLocationEvents']>
|
281
|
-
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
282
|
-
readonly Pages: UnwrapRef<typeof import('./src/config/enum')['Pages']>
|
283
|
-
readonly SubscribeMessage: UnwrapRef<typeof import('./src/config/enum')['SubscribeMessage']>
|
284
|
-
readonly TabbarArr: UnwrapRef<typeof import('./src/config/enum')['TabbarArr']>
|
285
|
-
readonly UIEvents: UnwrapRef<typeof import('./src/config/enum')['UIEvents']>
|
286
|
-
readonly UsefulContentTypes: UnwrapRef<typeof import('./src/apis/lib/index')['UsefulContentTypes']>
|
287
|
-
readonly YoungStorageKeys: UnwrapRef<typeof import('./src/config/enum')['YoungStorageKeys']>
|
288
|
-
readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
|
289
|
-
readonly apis: UnwrapRef<typeof import('./src/apis/index')['apis']>
|
290
|
-
readonly authLocation: UnwrapRef<typeof import('./src/utils/auth')['authLocation']>
|
291
|
-
readonly back: UnwrapRef<typeof import('./src/utils/route')['back']>
|
292
|
-
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
293
|
-
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
294
|
-
readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>
|
295
|
-
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
296
|
-
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
297
|
-
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
298
|
-
readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
|
299
|
-
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
300
|
-
readonly geocoderLocation: UnwrapRef<typeof import('./src/utils/map')['geocoderLocation']>
|
301
|
-
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
|
302
|
-
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
303
|
-
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
304
|
-
readonly getLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['getLocationInfo']>
|
305
|
-
readonly getMapApiKey: UnwrapRef<typeof import('./src/config/map')['getMapApiKey']>
|
306
|
-
readonly getNavbarHeihgt: UnwrapRef<typeof import('./src/store/local/index')['getNavbarHeihgt']>
|
307
|
-
readonly getReqUrl: UnwrapRef<typeof import('./src/apis/index')['getReqUrl']>
|
308
|
-
readonly getSystemInfo: UnwrapRef<typeof import('./src/utils/system')['getSystemInfo']>
|
309
|
-
readonly getUuid: UnwrapRef<typeof import('./src/store/local/index')['getUuid']>
|
310
|
-
readonly getWxCode: UnwrapRef<typeof import('./src/utils/auth')['getWxCode']>
|
311
|
-
readonly h: UnwrapRef<typeof import('vue')['h']>
|
312
|
-
readonly hideLoading: UnwrapRef<typeof import('./src/utils/modal')['hideLoading']>
|
313
|
-
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
314
|
-
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
315
|
-
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
316
|
-
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
317
|
-
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
318
|
-
readonly locate: UnwrapRef<typeof import('./src/utils/auth')['locate']>
|
319
|
-
readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
|
320
|
-
readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
|
321
|
-
readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
|
322
|
-
readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
|
323
|
-
readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
|
324
|
-
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
325
|
-
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
326
|
-
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
327
|
-
readonly onAddToFavorites: UnwrapRef<typeof import('@dcloudio/uni-app')['onAddToFavorites']>
|
328
|
-
readonly onBackPress: UnwrapRef<typeof import('@dcloudio/uni-app')['onBackPress']>
|
329
|
-
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
330
|
-
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
331
|
-
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
332
|
-
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
333
|
-
readonly onError: UnwrapRef<typeof import('@dcloudio/uni-app')['onError']>
|
334
|
-
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
335
|
-
readonly onHide: UnwrapRef<typeof import('@dcloudio/uni-app')['onHide']>
|
336
|
-
readonly onLaunch: UnwrapRef<typeof import('@dcloudio/uni-app')['onLaunch']>
|
337
|
-
readonly onLoad: UnwrapRef<typeof import('@dcloudio/uni-app')['onLoad']>
|
338
|
-
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
339
|
-
readonly onNavigationBarButtonTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarButtonTap']>
|
340
|
-
readonly onNavigationBarSearchInputChanged: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputChanged']>
|
341
|
-
readonly onNavigationBarSearchInputClicked: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputClicked']>
|
342
|
-
readonly onNavigationBarSearchInputConfirmed: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputConfirmed']>
|
343
|
-
readonly onNavigationBarSearchInputFocusChanged: UnwrapRef<typeof import('@dcloudio/uni-app')['onNavigationBarSearchInputFocusChanged']>
|
344
|
-
readonly onPageNotFound: UnwrapRef<typeof import('@dcloudio/uni-app')['onPageNotFound']>
|
345
|
-
readonly onPageScroll: UnwrapRef<typeof import('@dcloudio/uni-app')['onPageScroll']>
|
346
|
-
readonly onPullDownRefresh: UnwrapRef<typeof import('@dcloudio/uni-app')['onPullDownRefresh']>
|
347
|
-
readonly onReachBottom: UnwrapRef<typeof import('@dcloudio/uni-app')['onReachBottom']>
|
348
|
-
readonly onReady: UnwrapRef<typeof import('@dcloudio/uni-app')['onReady']>
|
349
|
-
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
350
|
-
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
351
|
-
readonly onResize: UnwrapRef<typeof import('@dcloudio/uni-app')['onResize']>
|
352
|
-
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
353
|
-
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
354
|
-
readonly onShareAppMessage: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareAppMessage']>
|
355
|
-
readonly onShareTimeline: UnwrapRef<typeof import('@dcloudio/uni-app')['onShareTimeline']>
|
356
|
-
readonly onShow: UnwrapRef<typeof import('@dcloudio/uni-app')['onShow']>
|
357
|
-
readonly onTabItemTap: UnwrapRef<typeof import('@dcloudio/uni-app')['onTabItemTap']>
|
358
|
-
readonly onThemeChange: UnwrapRef<typeof import('@dcloudio/uni-app')['onThemeChange']>
|
359
|
-
readonly onUnhandledRejection: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnhandledRejection']>
|
360
|
-
readonly onUnload: UnwrapRef<typeof import('@dcloudio/uni-app')['onUnload']>
|
361
|
-
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
362
|
-
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
363
|
-
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
364
|
-
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
365
|
-
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
366
|
-
readonly redirect: UnwrapRef<typeof import('./src/utils/route')['redirect']>
|
367
|
-
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
368
|
-
readonly relaunch: UnwrapRef<typeof import('./src/utils/route')['relaunch']>
|
369
|
-
readonly removeLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['removeLocationInfo']>
|
370
|
-
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
371
|
-
readonly route: UnwrapRef<typeof import('./src/utils/route')['route']>
|
372
|
-
readonly searchLoaction: UnwrapRef<typeof import('./src/utils/map')['searchLoaction']>
|
373
|
-
readonly setActivePinia: UnwrapRef<typeof import('pinia')['setActivePinia']>
|
374
|
-
readonly setLocationInfo: UnwrapRef<typeof import('./src/store/local/index')['setLocationInfo']>
|
375
|
-
readonly setMapStoreSuffix: UnwrapRef<typeof import('pinia')['setMapStoreSuffix']>
|
376
|
-
readonly setNavbarHeihgt: UnwrapRef<typeof import('./src/store/local/index')['setNavbarHeihgt']>
|
377
|
-
readonly setUuid: UnwrapRef<typeof import('./src/store/local/index')['setUuid']>
|
378
|
-
readonly setupStore: UnwrapRef<typeof import('./src/store/index')['setupStore']>
|
379
|
-
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
380
|
-
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
381
|
-
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
382
|
-
readonly showErrorModal: UnwrapRef<typeof import('./src/utils/modal')['showErrorModal']>
|
383
|
-
readonly showLoading: UnwrapRef<typeof import('./src/utils/modal')['showLoading']>
|
384
|
-
readonly showModal: UnwrapRef<typeof import('./src/utils/modal')['showModal']>
|
385
|
-
readonly showToast: UnwrapRef<typeof import('./src/utils/modal')['showToast']>
|
386
|
-
readonly storeToRefs: UnwrapRef<typeof import('pinia')['storeToRefs']>
|
387
|
-
readonly subscribeMessage: UnwrapRef<typeof import('./src/utils/system')['subscribeMessage']>
|
388
|
-
readonly tabbar: UnwrapRef<typeof import('./src/utils/route')['tabbar']>
|
389
|
-
readonly to: UnwrapRef<typeof import('./src/utils/route')['to']>
|
390
|
-
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
391
|
-
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
392
|
-
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
393
|
-
readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
|
394
|
-
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
395
|
-
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
396
|
-
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
397
|
-
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
398
|
-
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
399
|
-
readonly useGet: UnwrapRef<typeof import('./src/apis/requests/get')['useGet']>
|
400
|
-
readonly useHttp: UnwrapRef<typeof import('./src/apis/lib/index')['useHttp']>
|
401
|
-
readonly useHttpLoading: UnwrapRef<typeof import('./src/store/system')['useHttpLoading']>
|
402
|
-
readonly usePost: UnwrapRef<typeof import('./src/apis/requests/post')['usePost']>
|
403
|
-
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
404
|
-
readonly useSystemInfo: UnwrapRef<typeof import('./src/store/system')['useSystemInfo']>
|
405
|
-
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
406
|
-
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
407
|
-
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
408
|
-
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
409
|
-
}
|
410
|
-
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
/* eslint-disable */
|
2
|
-
/* prettier-ignore */
|
3
|
-
// @ts-nocheck
|
4
|
-
// Generated by unplugin-vue-components
|
5
|
-
// Read more: https://github.com/vuejs/core/pull/3399
|
6
|
-
export {}
|
7
|
-
|
8
|
-
declare module 'vue' {
|
9
|
-
export interface GlobalComponents {
|
10
|
-
RouterLink: typeof import('vue-router')['RouterLink']
|
11
|
-
RouterView: typeof import('vue-router')['RouterView']
|
12
|
-
YoungLoading: typeof import('./src/components/young-loading/young-loading.vue')['default']
|
13
|
-
YoungLoadingMini: typeof import('./src/components/young-loading-mini/young-loading-mini.vue')['default']
|
14
|
-
YoungNavbar: typeof import('./src/components/young-navbar/young-navbar.vue')['default']
|
15
|
-
YoungTabbar: typeof import('./src/components/young-tabbar/young-tabbar.vue')['default']
|
16
|
-
}
|
17
|
-
}
|
@@ -1,74 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-19 14:32:45
|
4
|
-
* @LastEditTime: 2023-09-06 19:39:10
|
5
|
-
* @Description:
|
6
|
-
*/
|
7
|
-
import type { Plugin } from 'vite'
|
8
|
-
import type { OutputAsset } from 'rollup'
|
9
|
-
|
10
|
-
/**
|
11
|
-
* 通过传递 mode 以读取不同的环境变量
|
12
|
-
*/
|
13
|
-
export function multiConf(env: string) {
|
14
|
-
let configEnv: ImportMetaEnv
|
15
|
-
return {
|
16
|
-
name: 'young-multi-conf',
|
17
|
-
enforce: 'post',
|
18
|
-
configResolved: async (config) => {
|
19
|
-
console.log(`当前使用的环境变量来自于:.env.${env}`, config.env)
|
20
|
-
|
21
|
-
configEnv = config.env as ImportMetaEnv
|
22
|
-
},
|
23
|
-
generateBundle(options, bundle) {
|
24
|
-
const appid = configEnv.VITE_APP_ID
|
25
|
-
const json = bundle['project.config.json'] as OutputAsset
|
26
|
-
if (json?.source && typeof json.source === 'string') {
|
27
|
-
const jsonConf = JSON.parse(json.source)
|
28
|
-
// console.log("🚀 ~ file: multiconf.ts:27 ~ generateBundle ~ jsonConf:", jsonConf);
|
29
|
-
|
30
|
-
jsonConf.setting = {
|
31
|
-
urlCheck: true,
|
32
|
-
coverView: true,
|
33
|
-
es6: true,
|
34
|
-
postcss: true,
|
35
|
-
lazyloadPlaceholderEnable: false,
|
36
|
-
preloadBackgroundData: false,
|
37
|
-
minified: true,
|
38
|
-
autoAudits: false,
|
39
|
-
uglifyFileName: false,
|
40
|
-
uploadWithSourceMap: true,
|
41
|
-
enhance: true,
|
42
|
-
showShadowRootInWxmlPanel: true,
|
43
|
-
packNpmManually: false,
|
44
|
-
packNpmRelationList: [],
|
45
|
-
minifyWXSS: true,
|
46
|
-
useStaticServer: true,
|
47
|
-
showES6CompileOption: false,
|
48
|
-
checkInvalidKey: true,
|
49
|
-
babelSetting: {
|
50
|
-
ignore: [],
|
51
|
-
disablePlugins: [],
|
52
|
-
outputPath: '',
|
53
|
-
},
|
54
|
-
disableUseStrict: false,
|
55
|
-
useCompilerPlugins: false,
|
56
|
-
minifyWXML: true,
|
57
|
-
useMultiFrameRuntime: true,
|
58
|
-
ignoreUploadUnusedFiles: false,
|
59
|
-
ignoreDevUnusedFiles: false,
|
60
|
-
}
|
61
|
-
jsonConf.appid = appid
|
62
|
-
jsonConf.requiredPrivateInfos = ['getLocation']
|
63
|
-
jsonConf.permission = {
|
64
|
-
'scope.userLocation': {
|
65
|
-
desc: '你的位置信息将用于获取附近的门店信息',
|
66
|
-
},
|
67
|
-
}
|
68
|
-
|
69
|
-
json.source = JSON.stringify(jsonConf, null, 2)
|
70
|
-
// console.log("🚀 ~ file: multiconf.ts:72 ~ generateBundle ~ jsonConf:", jsonConf);
|
71
|
-
}
|
72
|
-
},
|
73
|
-
} as Plugin
|
74
|
-
}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: zhangyang
|
3
|
-
* @Date: 2023-07-18 15:58:06
|
4
|
-
* @LastEditTime: 2023-07-19 14:32:28
|
5
|
-
* @Description:
|
6
|
-
*/
|
7
|
-
import type { Plugin } from 'vite'
|
8
|
-
|
9
|
-
export function polyfillFormData() {
|
10
|
-
return {
|
11
|
-
name: 'vite-plugin-uni-axios',
|
12
|
-
transform(code, id) {
|
13
|
-
if (process.env.UNI_PLATFORM?.includes('mp')) {
|
14
|
-
if (id.includes('/form-data/lib/browser.js')) {
|
15
|
-
return {
|
16
|
-
code: code.replace('window', 'globalThis'),
|
17
|
-
}
|
18
|
-
}
|
19
|
-
if (id.includes('/axios/lib/platform/browser/classes/FormData.js')) {
|
20
|
-
return {
|
21
|
-
code: 'import FormData from \'miniprogram-formdata\';\nexport default FormData;',
|
22
|
-
}
|
23
|
-
}
|
24
|
-
if (id.includes('/axios/lib/platform/browser/classes/Blob.js')) {
|
25
|
-
return {
|
26
|
-
code: 'import Blob from \'miniprogram-blob\';\nexport default Blob;',
|
27
|
-
}
|
28
|
-
}
|
29
|
-
}
|
30
|
-
},
|
31
|
-
} as Plugin
|
32
|
-
}
|