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
package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js
DELETED
@@ -1,98 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../../../../common/vendor.js");
|
3
|
-
const _sfc_main = {
|
4
|
-
name: "UniCard",
|
5
|
-
emits: ["click"],
|
6
|
-
props: {
|
7
|
-
title: {
|
8
|
-
type: String,
|
9
|
-
default: ""
|
10
|
-
},
|
11
|
-
subTitle: {
|
12
|
-
type: String,
|
13
|
-
default: ""
|
14
|
-
},
|
15
|
-
padding: {
|
16
|
-
type: String,
|
17
|
-
default: "10px"
|
18
|
-
},
|
19
|
-
margin: {
|
20
|
-
type: String,
|
21
|
-
default: "15px"
|
22
|
-
},
|
23
|
-
spacing: {
|
24
|
-
type: String,
|
25
|
-
default: "0 10px"
|
26
|
-
},
|
27
|
-
extra: {
|
28
|
-
type: String,
|
29
|
-
default: ""
|
30
|
-
},
|
31
|
-
cover: {
|
32
|
-
type: String,
|
33
|
-
default: ""
|
34
|
-
},
|
35
|
-
thumbnail: {
|
36
|
-
type: String,
|
37
|
-
default: ""
|
38
|
-
},
|
39
|
-
isFull: {
|
40
|
-
// 内容区域是否通栏
|
41
|
-
type: Boolean,
|
42
|
-
default: false
|
43
|
-
},
|
44
|
-
isShadow: {
|
45
|
-
// 是否开启阴影
|
46
|
-
type: Boolean,
|
47
|
-
default: true
|
48
|
-
},
|
49
|
-
shadow: {
|
50
|
-
type: String,
|
51
|
-
default: "0px 0px 3px 1px rgba(0, 0, 0, 0.08)"
|
52
|
-
},
|
53
|
-
border: {
|
54
|
-
type: Boolean,
|
55
|
-
default: true
|
56
|
-
}
|
57
|
-
},
|
58
|
-
methods: {
|
59
|
-
onClick(type) {
|
60
|
-
this.$emit("click", type);
|
61
|
-
}
|
62
|
-
}
|
63
|
-
};
|
64
|
-
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
65
|
-
return common_vendor.e({
|
66
|
-
a: $props.cover
|
67
|
-
}, $props.cover ? {
|
68
|
-
b: common_vendor.o(($event) => $options.onClick("cover")),
|
69
|
-
c: $props.cover
|
70
|
-
} : {}, {
|
71
|
-
d: $props.title || $props.extra
|
72
|
-
}, $props.title || $props.extra ? common_vendor.e({
|
73
|
-
e: $props.thumbnail
|
74
|
-
}, $props.thumbnail ? {
|
75
|
-
f: $props.thumbnail
|
76
|
-
} : {}, {
|
77
|
-
g: common_vendor.t($props.title),
|
78
|
-
h: $props.title && $props.subTitle
|
79
|
-
}, $props.title && $props.subTitle ? {
|
80
|
-
i: common_vendor.t($props.subTitle)
|
81
|
-
} : {}, {
|
82
|
-
j: common_vendor.o(($event) => $options.onClick("title")),
|
83
|
-
k: common_vendor.t($props.extra),
|
84
|
-
l: common_vendor.o(($event) => $options.onClick("extra"))
|
85
|
-
}) : {}, {
|
86
|
-
m: $props.padding,
|
87
|
-
n: common_vendor.o(($event) => $options.onClick("content")),
|
88
|
-
o: common_vendor.o(($event) => $options.onClick("actions")),
|
89
|
-
p: $props.isFull ? 1 : "",
|
90
|
-
q: $props.isShadow ? 1 : "",
|
91
|
-
r: $props.border ? 1 : "",
|
92
|
-
s: $props.isFull ? 0 : $props.margin,
|
93
|
-
t: $props.spacing,
|
94
|
-
v: $props.isShadow ? $props.shadow : ""
|
95
|
-
});
|
96
|
-
}
|
97
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/node_modules/@dcloudio/uni-ui/lib/uni-card/uni-card.vue"]]);
|
98
|
-
wx.createComponent(Component);
|
package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<view class="{{['uni-card', p && 'uni-card--full', q && 'uni-card--shadow', r && 'uni-card--border']}}" style="{{'margin:' + s + ';' + ('padding:' + t) + ';' + ('box-shadow:' + v)}}"><block wx:if="{{$slots.cover}}"><slot name="cover"></slot></block><block wx:else><view wx:if="{{a}}" class="uni-card__cover"><image class="uni-card__cover-image" mode="widthFix" bindtap="{{b}}" src="{{c}}"></image></view></block><block wx:if="{{$slots.title}}"><slot name="title"></slot></block><block wx:else><view wx:if="{{d}}" class="uni-card__header"><view class="uni-card__header-box" bindtap="{{j}}"><view wx:if="{{e}}" class="uni-card__header-avatar"><image class="uni-card__header-avatar-image" src="{{f}}" mode="aspectFit"/></view><view class="uni-card__header-content"><text class="uni-card__header-content-title uni-ellipsis">{{g}}</text><text wx:if="{{h}}" class="uni-card__header-content-subtitle uni-ellipsis">{{i}}</text></view></view><view class="uni-card__header-extra" bindtap="{{l}}"><block wx:if="{{$slots.extra}}"><slot name="extra"></slot></block><block wx:else><text class="uni-card__header-extra-text">{{k}}</text></block></view></view></block><view class="uni-card__content" style="{{'padding:' + m}}" bindtap="{{n}}"><slot></slot></view><view class="uni-card__actions" bindtap="{{o}}"><slot name="actions"></slot></view></view>
|
package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss
DELETED
@@ -1,125 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* 这里是uni-app内置的常用样式变量
|
3
|
-
*
|
4
|
-
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
5
|
-
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
6
|
-
*
|
7
|
-
*/
|
8
|
-
/**
|
9
|
-
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
10
|
-
*
|
11
|
-
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
12
|
-
*/
|
13
|
-
/* 颜色变量 */
|
14
|
-
/* 行为相关颜色 */
|
15
|
-
/* 文字基本颜色 */
|
16
|
-
/* 背景颜色 */
|
17
|
-
/* 边框颜色 */
|
18
|
-
/* 尺寸变量 */
|
19
|
-
/* 文字尺寸 */
|
20
|
-
/* 图片尺寸 */
|
21
|
-
/* Border Radius */
|
22
|
-
/* 水平间距 */
|
23
|
-
/* 垂直间距 */
|
24
|
-
/* 透明度 */
|
25
|
-
/* 文章场景相关 */
|
26
|
-
.uni-card {
|
27
|
-
margin: 10px;
|
28
|
-
padding: 0 8px;
|
29
|
-
border-radius: 4px;
|
30
|
-
overflow: hidden;
|
31
|
-
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
|
32
|
-
background-color: #fff;
|
33
|
-
flex: 1;
|
34
|
-
}
|
35
|
-
.uni-card .uni-card__cover {
|
36
|
-
position: relative;
|
37
|
-
margin-top: 10px;
|
38
|
-
flex-direction: row;
|
39
|
-
overflow: hidden;
|
40
|
-
border-radius: 4px;
|
41
|
-
}
|
42
|
-
.uni-card .uni-card__cover .uni-card__cover-image {
|
43
|
-
flex: 1;
|
44
|
-
vertical-align: middle;
|
45
|
-
}
|
46
|
-
.uni-card .uni-card__header {
|
47
|
-
display: flex;
|
48
|
-
border-bottom: 1px #EBEEF5 solid;
|
49
|
-
flex-direction: row;
|
50
|
-
align-items: center;
|
51
|
-
padding: 10px;
|
52
|
-
overflow: hidden;
|
53
|
-
}
|
54
|
-
.uni-card .uni-card__header .uni-card__header-box {
|
55
|
-
display: flex;
|
56
|
-
flex: 1;
|
57
|
-
flex-direction: row;
|
58
|
-
align-items: center;
|
59
|
-
overflow: hidden;
|
60
|
-
}
|
61
|
-
.uni-card .uni-card__header .uni-card__header-avatar {
|
62
|
-
width: 40px;
|
63
|
-
height: 40px;
|
64
|
-
overflow: hidden;
|
65
|
-
border-radius: 5px;
|
66
|
-
margin-right: 10px;
|
67
|
-
}
|
68
|
-
.uni-card .uni-card__header .uni-card__header-avatar .uni-card__header-avatar-image {
|
69
|
-
flex: 1;
|
70
|
-
width: 40px;
|
71
|
-
height: 40px;
|
72
|
-
}
|
73
|
-
.uni-card .uni-card__header .uni-card__header-content {
|
74
|
-
display: flex;
|
75
|
-
flex-direction: column;
|
76
|
-
justify-content: center;
|
77
|
-
flex: 1;
|
78
|
-
overflow: hidden;
|
79
|
-
}
|
80
|
-
.uni-card .uni-card__header .uni-card__header-content .uni-card__header-content-title {
|
81
|
-
font-size: 15px;
|
82
|
-
color: #3a3a3a;
|
83
|
-
}
|
84
|
-
.uni-card .uni-card__header .uni-card__header-content .uni-card__header-content-subtitle {
|
85
|
-
font-size: 12px;
|
86
|
-
margin-top: 5px;
|
87
|
-
color: #909399;
|
88
|
-
}
|
89
|
-
.uni-card .uni-card__header .uni-card__header-extra {
|
90
|
-
line-height: 12px;
|
91
|
-
}
|
92
|
-
.uni-card .uni-card__header .uni-card__header-extra .uni-card__header-extra-text {
|
93
|
-
font-size: 12px;
|
94
|
-
color: #909399;
|
95
|
-
}
|
96
|
-
.uni-card .uni-card__content {
|
97
|
-
padding: 10px;
|
98
|
-
font-size: 14px;
|
99
|
-
color: #6a6a6a;
|
100
|
-
line-height: 22px;
|
101
|
-
}
|
102
|
-
.uni-card .uni-card__actions {
|
103
|
-
font-size: 12px;
|
104
|
-
}
|
105
|
-
.uni-card--border {
|
106
|
-
border: 1px solid #EBEEF5;
|
107
|
-
}
|
108
|
-
.uni-card--shadow {
|
109
|
-
position: relative;
|
110
|
-
box-shadow: 0 0px 6px 1px rgba(165, 165, 165, 0.2);
|
111
|
-
}
|
112
|
-
.uni-card--full {
|
113
|
-
margin: 0;
|
114
|
-
border-left-width: 0;
|
115
|
-
border-left-width: 0;
|
116
|
-
border-radius: 0;
|
117
|
-
}
|
118
|
-
.uni-card--full:after {
|
119
|
-
border-radius: 0;
|
120
|
-
}
|
121
|
-
.uni-ellipsis {
|
122
|
-
overflow: hidden;
|
123
|
-
white-space: nowrap;
|
124
|
-
text-overflow: ellipsis;
|
125
|
-
}
|
@@ -1,38 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../common/vendor.js");
|
3
|
-
const apis_index = require("../../apis/index.js");
|
4
|
-
require("../../apis/lib/index.js");
|
5
|
-
require("../../apis/requests/get.js");
|
6
|
-
require("../../apis/requests/post.js");
|
7
|
-
require("../../utils/modal.js");
|
8
|
-
require("../../store/system.js");
|
9
|
-
const __unplugin_components_0 = () => "../../components/young-navbar/young-navbar.js";
|
10
|
-
if (!Array) {
|
11
|
-
const _easycom_young_navbar2 = __unplugin_components_0;
|
12
|
-
const _component_layout_default_uni = common_vendor.resolveComponent("layout-default-uni");
|
13
|
-
(_easycom_young_navbar2 + _component_layout_default_uni)();
|
14
|
-
}
|
15
|
-
const _easycom_young_navbar = () => "../../components/young-navbar/young-navbar.js";
|
16
|
-
if (!Math) {
|
17
|
-
_easycom_young_navbar();
|
18
|
-
}
|
19
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
20
|
-
__name: "index",
|
21
|
-
setup(__props) {
|
22
|
-
const testGet = async () => {
|
23
|
-
const res = await apis_index.apis.get.getByUserName("BluesYoung-web");
|
24
|
-
console.log("🚀 ~ file: index.vue:12 ~ test ~ res:", res);
|
25
|
-
};
|
26
|
-
const testPost = async () => {
|
27
|
-
await apis_index.apis.post.createRepo("BluesYoung-web");
|
28
|
-
};
|
29
|
-
return (_ctx, _cache) => {
|
30
|
-
return {
|
31
|
-
a: common_vendor.o(testGet),
|
32
|
-
b: common_vendor.o(testPost)
|
33
|
-
};
|
34
|
-
};
|
35
|
-
}
|
36
|
-
});
|
37
|
-
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/pages/demo/index.vue"]]);
|
38
|
-
wx.createPage(MiniProgramPage);
|
@@ -1 +0,0 @@
|
|
1
|
-
<layout-default-uni u-s="{{['d']}}" u-i="8c384434-0" bind:__l="__l"><young-navbar u-i="8c384434-1,8c384434-0" bind:__l="__l"/><view class="text-32">我是子页面 demo</view><button bindtap="{{a}}">点我测试 Get 请求</button><button bindtap="{{b}}">点我测试 Post 请求</button></layout-default-uni>
|
File without changes
|
@@ -1,51 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const utils_route = require("../utils/route.js");
|
3
|
-
const config_enum = require("../config/enum.js");
|
4
|
-
const common_vendor = require("../common/vendor.js");
|
5
|
-
const apis_index = require("../apis/index.js");
|
6
|
-
const store_system = require("../store/system.js");
|
7
|
-
require("../apis/lib/index.js");
|
8
|
-
require("../apis/requests/get.js");
|
9
|
-
require("../apis/requests/post.js");
|
10
|
-
require("../utils/modal.js");
|
11
|
-
if (!Array) {
|
12
|
-
const _easycom_uni_card2 = common_vendor.resolveComponent("uni-card");
|
13
|
-
const _component_layout_tabbar_uni = common_vendor.resolveComponent("layout-tabbar-uni");
|
14
|
-
(_easycom_uni_card2 + _component_layout_tabbar_uni)();
|
15
|
-
}
|
16
|
-
const _easycom_uni_card = () => "../node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js";
|
17
|
-
if (!Math) {
|
18
|
-
_easycom_uni_card();
|
19
|
-
}
|
20
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
21
|
-
__name: "index",
|
22
|
-
setup(__props) {
|
23
|
-
const testGet = async () => {
|
24
|
-
const res = await apis_index.apis.get.getByUserName("BluesYoung-web");
|
25
|
-
console.log("🚀 ~ file: index.vue:12 ~ test ~ res:", res);
|
26
|
-
};
|
27
|
-
const testPost = async () => {
|
28
|
-
await apis_index.apis.post.createRepo("BluesYoung-web");
|
29
|
-
};
|
30
|
-
const { fullscreenLoading } = common_vendor.storeToRefs(store_system.useHttpLoading());
|
31
|
-
fullscreenLoading.value = true;
|
32
|
-
setTimeout(() => {
|
33
|
-
fullscreenLoading.value = false;
|
34
|
-
}, 3e3);
|
35
|
-
return (_ctx, _cache) => {
|
36
|
-
return {
|
37
|
-
a: common_vendor.o(testGet),
|
38
|
-
b: common_vendor.o(testPost),
|
39
|
-
c: common_vendor.o(($event) => ("to" in _ctx ? _ctx.to : common_vendor.unref(utils_route.to))(("Pages" in _ctx ? _ctx.Pages : common_vendor.unref(config_enum.Pages)).测试子页面)),
|
40
|
-
d: common_vendor.p({
|
41
|
-
title: "基础卡片",
|
42
|
-
["sub-title"]: "副标题",
|
43
|
-
extra: "额外信息",
|
44
|
-
thumbnail: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/unicloudlogo.png"
|
45
|
-
})
|
46
|
-
};
|
47
|
-
};
|
48
|
-
}
|
49
|
-
});
|
50
|
-
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/pages/index.vue"]]);
|
51
|
-
wx.createPage(MiniProgramPage);
|
@@ -1 +0,0 @@
|
|
1
|
-
<layout-tabbar-uni u-s="{{['d']}}" u-i="1106be7c-0" bind:__l="__l"><view class="text-32">我是页面</view><view class="uni-primary">主色</view><view class="uni-success">成功色</view><view class="uni-warning">警告色</view><view class="uni-error">错误色</view><button bindtap="{{a}}">点我测试 Get 请求</button><button bindtap="{{b}}">点我测试 Post 请求</button><uni-card wx:if="{{d}}" u-s="{{['d']}}" bindclick="{{c}}" u-i="1106be7c-1,1106be7c-0" bind:__l="__l" u-p="{{d}}"><text>这是一个带头像和双标题的基础卡片,此示例展示了一个完整的卡片。</text></uni-card></layout-tabbar-uni>
|
File without changes
|
@@ -1,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../common/vendor.js");
|
3
|
-
const store_system = require("../store/system.js");
|
4
|
-
if (!Array) {
|
5
|
-
const _component_layout_tabbar_uni = common_vendor.resolveComponent("layout-tabbar-uni");
|
6
|
-
_component_layout_tabbar_uni();
|
7
|
-
}
|
8
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
9
|
-
__name: "my",
|
10
|
-
setup(__props) {
|
11
|
-
const { fullscreenLoading } = common_vendor.storeToRefs(store_system.useHttpLoading());
|
12
|
-
fullscreenLoading.value = true;
|
13
|
-
setTimeout(() => {
|
14
|
-
fullscreenLoading.value = false;
|
15
|
-
}, 3e3);
|
16
|
-
return (_ctx, _cache) => {
|
17
|
-
return {};
|
18
|
-
};
|
19
|
-
}
|
20
|
-
});
|
21
|
-
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/pages/my.vue"]]);
|
22
|
-
wx.createPage(MiniProgramPage);
|
@@ -1 +0,0 @@
|
|
1
|
-
<layout-tabbar-uni u-s="{{['d']}}" u-i="2d9e2a28-0" bind:__l="__l"><view class="text-32">我是个人中心</view></layout-tabbar-uni>
|
File without changes
|
@@ -1,56 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"description": "项目配置文件。",
|
3
|
-
"packOptions": {
|
4
|
-
"ignore": [],
|
5
|
-
"include": []
|
6
|
-
},
|
7
|
-
"setting": {
|
8
|
-
"urlCheck": true,
|
9
|
-
"coverView": true,
|
10
|
-
"es6": true,
|
11
|
-
"postcss": true,
|
12
|
-
"lazyloadPlaceholderEnable": false,
|
13
|
-
"preloadBackgroundData": false,
|
14
|
-
"minified": true,
|
15
|
-
"autoAudits": false,
|
16
|
-
"uglifyFileName": false,
|
17
|
-
"uploadWithSourceMap": true,
|
18
|
-
"enhance": true,
|
19
|
-
"showShadowRootInWxmlPanel": true,
|
20
|
-
"packNpmManually": false,
|
21
|
-
"packNpmRelationList": [],
|
22
|
-
"minifyWXSS": true,
|
23
|
-
"useStaticServer": true,
|
24
|
-
"showES6CompileOption": false,
|
25
|
-
"checkInvalidKey": true,
|
26
|
-
"babelSetting": {
|
27
|
-
"ignore": [],
|
28
|
-
"disablePlugins": [],
|
29
|
-
"outputPath": ""
|
30
|
-
},
|
31
|
-
"disableUseStrict": false,
|
32
|
-
"useCompilerPlugins": false,
|
33
|
-
"minifyWXML": true,
|
34
|
-
"useMultiFrameRuntime": true,
|
35
|
-
"ignoreUploadUnusedFiles": false,
|
36
|
-
"ignoreDevUnusedFiles": false,
|
37
|
-
"condition": false
|
38
|
-
},
|
39
|
-
"compileType": "miniprogram",
|
40
|
-
"libVersion": "2.33.0",
|
41
|
-
"projectname": "",
|
42
|
-
"condition": {},
|
43
|
-
"requiredPrivateInfos": [
|
44
|
-
"getLocation"
|
45
|
-
],
|
46
|
-
"permission": {
|
47
|
-
"scope.userLocation": {
|
48
|
-
"desc": "你的位置信息将用于获取附近的门店信息"
|
49
|
-
}
|
50
|
-
},
|
51
|
-
"appid": "wxa10fe9602ff00560",
|
52
|
-
"editorSetting": {
|
53
|
-
"tabIndent": "insertSpaces",
|
54
|
-
"tabSize": 2
|
55
|
-
}
|
56
|
-
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,11 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../common/vendor.js");
|
3
|
-
const config_enum = require("../../config/enum.js");
|
4
|
-
const getUuid = () => common_vendor.index.getStorageSync(config_enum.YoungStorageKeys.唯一标识);
|
5
|
-
const setUuid = () => common_vendor.index.setStorageSync(config_enum.YoungStorageKeys.唯一标识, common_vendor.Q() + common_vendor.Q() + common_vendor.Q() + common_vendor.Q());
|
6
|
-
const setNavbarHeihgt = (v) => common_vendor.index.setStorageSync(config_enum.YoungStorageKeys.导航栏高度, v);
|
7
|
-
const getNavbarHeihgt = () => common_vendor.index.getStorageSync(config_enum.YoungStorageKeys.导航栏高度);
|
8
|
-
exports.getNavbarHeihgt = getNavbarHeihgt;
|
9
|
-
exports.getUuid = getUuid;
|
10
|
-
exports.setNavbarHeihgt = setNavbarHeihgt;
|
11
|
-
exports.setUuid = setUuid;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../common/vendor.js");
|
3
|
-
const useSystemInfo = common_vendor.defineStore("useSystemInfo", () => {
|
4
|
-
const systemInfo = common_vendor.ref();
|
5
|
-
const pagesInfo = common_vendor.ref([]);
|
6
|
-
return { systemInfo, pagesInfo };
|
7
|
-
});
|
8
|
-
const useHttpLoading = common_vendor.defineStore("useHttpLoading", () => {
|
9
|
-
const fullscreenLoading = common_vendor.ref(false);
|
10
|
-
const smallLoading = common_vendor.ref(false);
|
11
|
-
return { smallLoading, fullscreenLoading };
|
12
|
-
});
|
13
|
-
exports.useHttpLoading = useHttpLoading;
|
14
|
-
exports.useSystemInfo = useSystemInfo;
|
@@ -1,82 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../common/vendor.js");
|
3
|
-
const store_system = require("../store/system.js");
|
4
|
-
let loadingCount = 0;
|
5
|
-
function showLoading(title = "加载中...", mask = true) {
|
6
|
-
const { fullscreenLoading, smallLoading } = common_vendor.storeToRefs(store_system.useHttpLoading());
|
7
|
-
if (fullscreenLoading.value) {
|
8
|
-
return;
|
9
|
-
}
|
10
|
-
loadingCount++;
|
11
|
-
if ({}.VITE_CUSTOM_LOADING) {
|
12
|
-
smallLoading.value = true;
|
13
|
-
} else {
|
14
|
-
common_vendor.index.showLoading({
|
15
|
-
mask,
|
16
|
-
title
|
17
|
-
});
|
18
|
-
}
|
19
|
-
}
|
20
|
-
function hideLoading() {
|
21
|
-
const { smallLoading, fullscreenLoading } = common_vendor.storeToRefs(store_system.useHttpLoading());
|
22
|
-
if (fullscreenLoading.value) {
|
23
|
-
return;
|
24
|
-
}
|
25
|
-
if (--loadingCount === 0) {
|
26
|
-
if ({}.VITE_CUSTOM_LOADING) {
|
27
|
-
smallLoading.value = false;
|
28
|
-
} else {
|
29
|
-
common_vendor.index.hideLoading();
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
33
|
-
let hasModel = false;
|
34
|
-
const modalPage = /* @__PURE__ */ new Set();
|
35
|
-
async function showModal(options) {
|
36
|
-
const page = getCurrentPages();
|
37
|
-
const route = page[page.length - 1].route || "";
|
38
|
-
if (modalPage.has(route)) {
|
39
|
-
hasModel = true;
|
40
|
-
} else {
|
41
|
-
hasModel = false;
|
42
|
-
modalPage.add(route);
|
43
|
-
}
|
44
|
-
const { title = "提示", showCancel = true, complete } = options;
|
45
|
-
while (hasModel) {
|
46
|
-
await common_vendor.G(0.5);
|
47
|
-
}
|
48
|
-
return new Promise((resolve, reject) => {
|
49
|
-
hasModel = true;
|
50
|
-
common_vendor.index.showModal({
|
51
|
-
title,
|
52
|
-
showCancel,
|
53
|
-
success(res) {
|
54
|
-
hasModel = false;
|
55
|
-
modalPage.delete(route);
|
56
|
-
if (res.confirm) {
|
57
|
-
resolve(res);
|
58
|
-
} else if (res.cancel) {
|
59
|
-
reject(res);
|
60
|
-
}
|
61
|
-
},
|
62
|
-
fail(err) {
|
63
|
-
hasModel = false;
|
64
|
-
modalPage.delete(route);
|
65
|
-
reject(err);
|
66
|
-
},
|
67
|
-
...options,
|
68
|
-
complete: (res) => {
|
69
|
-
hasModel = false;
|
70
|
-
modalPage.delete(route);
|
71
|
-
complete == null ? void 0 : complete(res);
|
72
|
-
}
|
73
|
-
});
|
74
|
-
});
|
75
|
-
}
|
76
|
-
function showErrorModal(errMsg) {
|
77
|
-
return showModal({ content: errMsg, showCancel: false });
|
78
|
-
}
|
79
|
-
exports.hideLoading = hideLoading;
|
80
|
-
exports.showErrorModal = showErrorModal;
|
81
|
-
exports.showLoading = showLoading;
|
82
|
-
exports.showModal = showModal;
|
@@ -1,85 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../common/vendor.js");
|
3
|
-
const config_enum = require("../config/enum.js");
|
4
|
-
const params2Url = (params, encode = false) => {
|
5
|
-
const arr = [];
|
6
|
-
for (const key in params) {
|
7
|
-
arr.push(`${key}=${encode ? encodeURIComponent(params[key]) : params[key]}`);
|
8
|
-
}
|
9
|
-
return arr.join("&");
|
10
|
-
};
|
11
|
-
function route({ type, url, params, delta = 1, encode }) {
|
12
|
-
if (type !== "navigateBack" && params) {
|
13
|
-
url = `${url}?${params2Url(params, encode)}`;
|
14
|
-
}
|
15
|
-
switch (type) {
|
16
|
-
case "navigateTo":
|
17
|
-
common_vendor.index.navigateTo({
|
18
|
-
url
|
19
|
-
});
|
20
|
-
break;
|
21
|
-
case "redirectTo":
|
22
|
-
common_vendor.index.redirectTo({
|
23
|
-
url
|
24
|
-
});
|
25
|
-
break;
|
26
|
-
case "switchTab":
|
27
|
-
common_vendor.index.switchTab({
|
28
|
-
url
|
29
|
-
});
|
30
|
-
break;
|
31
|
-
case "reLaunch":
|
32
|
-
common_vendor.index.reLaunch({
|
33
|
-
url
|
34
|
-
});
|
35
|
-
break;
|
36
|
-
case "navigateBack":
|
37
|
-
common_vendor.index.navigateBack({
|
38
|
-
delta
|
39
|
-
});
|
40
|
-
break;
|
41
|
-
}
|
42
|
-
}
|
43
|
-
function to(url, params, encode) {
|
44
|
-
if (config_enum.TabbarArr.includes(url)) {
|
45
|
-
tabbar(url, params, encode);
|
46
|
-
} else {
|
47
|
-
route({
|
48
|
-
type: "navigateTo",
|
49
|
-
url,
|
50
|
-
params,
|
51
|
-
encode
|
52
|
-
});
|
53
|
-
}
|
54
|
-
}
|
55
|
-
function tabbar(url, params, encode) {
|
56
|
-
if (config_enum.TabbarArr.includes(url)) {
|
57
|
-
route({
|
58
|
-
type: "switchTab",
|
59
|
-
url,
|
60
|
-
params,
|
61
|
-
encode
|
62
|
-
});
|
63
|
-
} else {
|
64
|
-
to(url, params, encode);
|
65
|
-
}
|
66
|
-
}
|
67
|
-
function relaunch(url, params, encode) {
|
68
|
-
route({
|
69
|
-
type: "reLaunch",
|
70
|
-
url,
|
71
|
-
params,
|
72
|
-
encode
|
73
|
-
});
|
74
|
-
}
|
75
|
-
function back(delta) {
|
76
|
-
route({
|
77
|
-
type: "navigateBack",
|
78
|
-
delta,
|
79
|
-
url: ""
|
80
|
-
});
|
81
|
-
}
|
82
|
-
exports.back = back;
|
83
|
-
exports.relaunch = relaunch;
|
84
|
-
exports.tabbar = tabbar;
|
85
|
-
exports.to = to;
|