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,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../common/vendor.js");
|
3
|
-
const store_system = require("../../store/system.js");
|
4
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
5
|
-
__name: "young-loading",
|
6
|
-
props: {
|
7
|
-
loadingGif: { default: __wxConfig.accountInfo.icon },
|
8
|
-
tip: { default: "加载中..." }
|
9
|
-
},
|
10
|
-
setup(__props) {
|
11
|
-
const { fullscreenLoading } = common_vendor.storeToRefs(store_system.useHttpLoading());
|
12
|
-
return (_ctx, _cache) => {
|
13
|
-
return {
|
14
|
-
a: __props.loadingGif,
|
15
|
-
b: common_vendor.t(__props.tip),
|
16
|
-
c: common_vendor.unref(fullscreenLoading)
|
17
|
-
};
|
18
|
-
};
|
19
|
-
}
|
20
|
-
});
|
21
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/components/young-loading/young-loading.vue"]]);
|
22
|
-
wx.createComponent(Component);
|
@@ -1 +0,0 @@
|
|
1
|
-
<view hidden="{{!c}}" class="w100vw h100vh fixed left-0 top-0 z-999999 bg-white flex flex-col items-center justify-center"><image src="{{a}}" class="w140rpx h140rpx mb-32rpx"/><text class="text-_lfl__wn_999_lfr_ text-24rpx leading-36rpx">{{b}}</text></view>
|
File without changes
|
package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.js
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../common/vendor.js");
|
3
|
-
const store_system = require("../../store/system.js");
|
4
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
5
|
-
__name: "young-loading-mini",
|
6
|
-
props: {
|
7
|
-
loadingGif: { default: "https://api.iconify.design/eos-icons:bubble-loading.svg?color=%23e80d19" },
|
8
|
-
tip: { default: "拼命加载中..." }
|
9
|
-
},
|
10
|
-
setup(__props) {
|
11
|
-
const { smallLoading } = common_vendor.storeToRefs(store_system.useHttpLoading());
|
12
|
-
return (_ctx, _cache) => {
|
13
|
-
return {
|
14
|
-
a: __props.loadingGif,
|
15
|
-
b: common_vendor.t(__props.tip),
|
16
|
-
c: common_vendor.unref(smallLoading)
|
17
|
-
};
|
18
|
-
};
|
19
|
-
}
|
20
|
-
});
|
21
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue"]]);
|
22
|
-
wx.createComponent(Component);
|
package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<view hidden="{{!c}}" class="w100vw h100vh fixed left-0 top-0 z-999998 bg-_lfl__wn_333_lfr_ opacity-90 flex flex-col items-center justify-center"><image src="{{a}}" class="w240rpx h240rpx mb-32rpx"/><text class="text-_lfl__wn_fff_lfr_ text-24rpx leading-36rpx">{{b}}</text></view>
|
package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxss
DELETED
File without changes
|
@@ -1,82 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../common/vendor.js");
|
3
|
-
const common_assets = require("../../common/assets.js");
|
4
|
-
const store_local_index = require("../../store/local/index.js");
|
5
|
-
const config_enum = require("../../config/enum.js");
|
6
|
-
const utils_route = require("../../utils/route.js");
|
7
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
8
|
-
__name: "young-navbar",
|
9
|
-
props: {
|
10
|
-
custom: { type: Boolean, default: true },
|
11
|
-
isback: { type: Boolean, default: true },
|
12
|
-
title: { default: "" },
|
13
|
-
color: { default: "#fff" },
|
14
|
-
bgcolor: { default: "linear-gradient(180deg, #3E3A39 0%, #0D0D0D 100%)" },
|
15
|
-
fixed: { type: Boolean, default: true },
|
16
|
-
placeholder: { type: Boolean, default: true },
|
17
|
-
zIndex: { default: 2 },
|
18
|
-
ishow: { type: Boolean, default: true }
|
19
|
-
},
|
20
|
-
setup(__props) {
|
21
|
-
const navHeight = store_local_index.getNavbarHeihgt();
|
22
|
-
const pagesCount = common_vendor.computed(() => {
|
23
|
-
return getCurrentPages().length;
|
24
|
-
});
|
25
|
-
const pagesTitle = common_vendor.computed(() => {
|
26
|
-
var _a;
|
27
|
-
const page = getCurrentPages()[pagesCount.value - 1];
|
28
|
-
let res = "";
|
29
|
-
for (const key in config_enum.Pages) {
|
30
|
-
const val = (_a = config_enum.Pages[key]) == null ? void 0 : _a.slice(1);
|
31
|
-
const route = page.route;
|
32
|
-
if (route === val) {
|
33
|
-
res = key;
|
34
|
-
break;
|
35
|
-
}
|
36
|
-
}
|
37
|
-
return res;
|
38
|
-
});
|
39
|
-
const handleLeftClick = () => {
|
40
|
-
if (pagesCount.value === 1) {
|
41
|
-
utils_route.relaunch(config_enum.Pages.首页);
|
42
|
-
} else {
|
43
|
-
utils_route.back();
|
44
|
-
}
|
45
|
-
};
|
46
|
-
return (_ctx, _cache) => {
|
47
|
-
return common_vendor.e({
|
48
|
-
a: __props.ishow
|
49
|
-
}, __props.ishow ? common_vendor.e({
|
50
|
-
b: __props.isback
|
51
|
-
}, __props.isback ? common_vendor.e({
|
52
|
-
c: _ctx.$slots.back
|
53
|
-
}, _ctx.$slots.back ? {} : common_vendor.e({
|
54
|
-
d: common_vendor.unref(pagesCount) === 1
|
55
|
-
}, common_vendor.unref(pagesCount) === 1 ? {
|
56
|
-
e: common_assets._imports_0
|
57
|
-
} : {
|
58
|
-
f: common_assets._imports_1
|
59
|
-
}), {
|
60
|
-
g: common_vendor.o(handleLeftClick)
|
61
|
-
}) : {}, {
|
62
|
-
h: _ctx.$slots.title
|
63
|
-
}, _ctx.$slots.title ? {} : {
|
64
|
-
i: common_vendor.t(__props.title || common_vendor.unref(pagesTitle)),
|
65
|
-
j: __props.color
|
66
|
-
}, {
|
67
|
-
k: __props.custom ? 1 : "",
|
68
|
-
l: __props.fixed || __props.placeholder ? 1 : "",
|
69
|
-
m: common_vendor.unref(navHeight).customBarH + "px",
|
70
|
-
n: common_vendor.unref(navHeight).statusBarH + "px",
|
71
|
-
o: __props.bgcolor,
|
72
|
-
p: __props.color,
|
73
|
-
q: __props.zIndex,
|
74
|
-
r: __props.placeholder
|
75
|
-
}, __props.placeholder ? {
|
76
|
-
s: common_vendor.unref(navHeight).customBarH + "px"
|
77
|
-
} : {}) : {});
|
78
|
-
};
|
79
|
-
}
|
80
|
-
});
|
81
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-1047ead9"], ["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/components/young-navbar/young-navbar.vue"]]);
|
82
|
-
wx.createComponent(Component);
|
@@ -1 +0,0 @@
|
|
1
|
-
<view wx:if="{{a}}" class="data-v-1047ead9"><view class="y__navbar data-v-1047ead9"><view class="{{['y__navbar-wrap', 'flex', 'items-center', 'relative', 'box-border', 'left-0', 'data-v-1047ead9', k && 'custom', l && 'fixed']}}" style="{{'height:' + m + ';' + ('padding-top:' + n) + ';' + ('background:' + o) + ';' + ('color:' + p) + ';' + ('z-index:' + q)}}"><view wx:if="{{b}}" class="action navbar-action__left data-v-1047ead9" bindtap="{{g}}"><block wx:if="{{c}}"><slot name="back"/></block><block wx:else class="v-else"><image wx:if="{{d}}" src="{{e}}" class="w20px h20px data-v-1047ead9"></image><image wx:else src="{{f}}" class="w20px h20px v-else data-v-1047ead9"></image></block><slot name="backText"/></view><slot name="left"/><view class="navbar-title absolute data-v-1047ead9"><block wx:if="{{h}}"><slot name="title"/></block><block wx:else class="v-else"><text class="data-v-1047ead9" style="{{'color:' + j}}">{{i}}</text></block></view><view class="action navbar-action__right data-v-1047ead9"><slot name="right"/></view></view></view><view wx:if="{{r}}" class="data-v-1047ead9" style="{{'height:' + s}}"></view></view>
|
@@ -1,108 +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
|
-
.nvuefont.data-v-1047ead9 {
|
27
|
-
font-family: nvueIcon;
|
28
|
-
}
|
29
|
-
.y__navbar.data-v-1047ead9 {
|
30
|
-
display: flex;
|
31
|
-
display: -ms-flexbox;
|
32
|
-
flex-direction: row;
|
33
|
-
}
|
34
|
-
.y__navbar-wrap.data-v-1047ead9 {
|
35
|
-
flex: 1;
|
36
|
-
flex-direction: row;
|
37
|
-
align-items: center;
|
38
|
-
background-color: #fff;
|
39
|
-
color: #333;
|
40
|
-
justify-content: space-between;
|
41
|
-
min-height: 90rpx;
|
42
|
-
position: relative;
|
43
|
-
z-index: 2021;
|
44
|
-
}
|
45
|
-
.y__navbar-wrap.custom.data-v-1047ead9 {
|
46
|
-
padding-right: 200rpx;
|
47
|
-
}
|
48
|
-
.y__navbar-wrap.fixed.data-v-1047ead9 {
|
49
|
-
width: 100%;
|
50
|
-
max-width: 750rpx;
|
51
|
-
position: fixed;
|
52
|
-
top: 0;
|
53
|
-
}
|
54
|
-
.y__navbar-wrap .action.data-v-1047ead9 {
|
55
|
-
display: flex;
|
56
|
-
display: -ms-flexbox;
|
57
|
-
height: 100%;
|
58
|
-
max-width: 100%;
|
59
|
-
flex-direction: row;
|
60
|
-
align-items: center;
|
61
|
-
justify-content: center;
|
62
|
-
}
|
63
|
-
|
64
|
-
/*左侧*/
|
65
|
-
.navbar-action__left.data-v-1047ead9 {
|
66
|
-
font-size: 32rpx;
|
67
|
-
padding: 0 24rpx;
|
68
|
-
}
|
69
|
-
.navbar-action__left .iconfont.data-v-1047ead9 {
|
70
|
-
font-size: 42rpx;
|
71
|
-
}
|
72
|
-
|
73
|
-
/*标题*/
|
74
|
-
.y__navbar-wrap .navbar-title.data-v-1047ead9 {
|
75
|
-
flex: 1;
|
76
|
-
font-size: 34rpx;
|
77
|
-
left: 50%;
|
78
|
-
transform: translateX(-50%);
|
79
|
-
}
|
80
|
-
.y__navbar-wrap .navbar-title.center.data-v-1047ead9 {
|
81
|
-
width: 100%;
|
82
|
-
z-index: -1;
|
83
|
-
align-items: center;
|
84
|
-
text-align: center;
|
85
|
-
text-overflow: ellipsis;
|
86
|
-
white-space: nowrap;
|
87
|
-
overflow: hidden;
|
88
|
-
position: absolute;
|
89
|
-
}
|
90
|
-
.y__navbar-wrap.custom .navbar-title.center.data-v-1047ead9 {
|
91
|
-
width: auto;
|
92
|
-
align-items: auto;
|
93
|
-
text-align: left;
|
94
|
-
position: static;
|
95
|
-
}
|
96
|
-
|
97
|
-
/*搜索条*/
|
98
|
-
.navbar-action__search.action.data-v-1047ead9 {
|
99
|
-
flex: 1;
|
100
|
-
justify-content: flex-start;
|
101
|
-
}
|
102
|
-
.navbar-action__right.data-v-1047ead9 {
|
103
|
-
font-size: 32rpx;
|
104
|
-
padding-right: 24rpx;
|
105
|
-
}
|
106
|
-
.navbar-action__right .iconfont.data-v-1047ead9 {
|
107
|
-
font-size: 42rpx;
|
108
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../../common/vendor.js");
|
3
|
-
const config_enum = require("../../config/enum.js");
|
4
|
-
const common_assets = require("../../common/assets.js");
|
5
|
-
const utils_route = require("../../utils/route.js");
|
6
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
7
|
-
__name: "young-tabbar",
|
8
|
-
props: {
|
9
|
-
z: { default: 99 }
|
10
|
-
},
|
11
|
-
setup(__props) {
|
12
|
-
const list = common_vendor.ref([
|
13
|
-
{
|
14
|
-
text: "首页",
|
15
|
-
iconPath: common_assets.home,
|
16
|
-
selectedIconPath: common_assets.home_active,
|
17
|
-
pagePath: config_enum.Pages.首页
|
18
|
-
},
|
19
|
-
{
|
20
|
-
text: "我的",
|
21
|
-
iconPath: common_assets.my,
|
22
|
-
selectedIconPath: common_assets.my_active,
|
23
|
-
pagePath: config_enum.Pages.个人中心
|
24
|
-
}
|
25
|
-
]);
|
26
|
-
const current = common_vendor.computed(() => {
|
27
|
-
const [page] = getCurrentPages();
|
28
|
-
const route = page.route;
|
29
|
-
const index = list.value.findIndex((path) => path.pagePath === "/" + route);
|
30
|
-
return index;
|
31
|
-
});
|
32
|
-
const tabChange = (index) => {
|
33
|
-
if (index === current.value) {
|
34
|
-
return;
|
35
|
-
}
|
36
|
-
utils_route.tabbar(list.value[index].pagePath);
|
37
|
-
};
|
38
|
-
common_vendor.index.hideTabBar();
|
39
|
-
return (_ctx, _cache) => {
|
40
|
-
return {
|
41
|
-
a: common_vendor.f(common_vendor.unref(list), (item, index, i0) => {
|
42
|
-
return {
|
43
|
-
a: common_vendor.unref(current) === index ? item.selectedIconPath : item.iconPath,
|
44
|
-
b: common_vendor.t(item.text),
|
45
|
-
c: common_vendor.o(($event) => tabChange(index), index),
|
46
|
-
d: index,
|
47
|
-
e: index === common_vendor.unref(current) ? 1 : ""
|
48
|
-
};
|
49
|
-
}),
|
50
|
-
b: __props.z
|
51
|
-
};
|
52
|
-
};
|
53
|
-
}
|
54
|
-
});
|
55
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-4df9e9ce"], ["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/components/young-tabbar/young-tabbar.vue"]]);
|
56
|
-
wx.createComponent(Component);
|
@@ -1 +0,0 @@
|
|
1
|
-
<view class="t-tabbar data-v-4df9e9ce" style="{{'z-index:' + b}}"><view wx:for="{{a}}" wx:for-item="item" wx:key="d" bindtap="{{item.c}}" class="{{['t-tabbar__item', 'data-v-4df9e9ce', item.e && 't-bar__item_on']}}"><view class="data-v-4df9e9ce" style="position:relative;display:inline-block"><image src="{{item.a}}" class="t-tabbar__icon data-v-4df9e9ce"></image></view><view class="t-tabbar__label data-v-4df9e9ce">{{item.b}}</view></view></view>
|
@@ -1,88 +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
|
-
.t-tabbar.data-v-4df9e9ce {
|
27
|
-
display: flex;
|
28
|
-
position: fixed;
|
29
|
-
bottom: 0;
|
30
|
-
left: 0;
|
31
|
-
right: 0;
|
32
|
-
background-color: #ffffff;
|
33
|
-
}
|
34
|
-
.t-tabbar.data-v-4df9e9ce:before {
|
35
|
-
content: " ";
|
36
|
-
position: absolute;
|
37
|
-
left: 0;
|
38
|
-
top: 0;
|
39
|
-
right: 0;
|
40
|
-
height: 1px;
|
41
|
-
border-top: 1rpx solid rgba(0, 0, 0, 0.1);
|
42
|
-
color: rgba(0, 0, 0, 0.1);
|
43
|
-
}
|
44
|
-
.t-tabbar__item.data-v-4df9e9ce {
|
45
|
-
display: block;
|
46
|
-
flex: 1;
|
47
|
-
padding: 8px 0 4px;
|
48
|
-
padding-bottom: calc(8px + constant(safe-area-inset-bottom));
|
49
|
-
padding-bottom: calc(8px + env(safe-area-inset-bottom));
|
50
|
-
font-size: 0;
|
51
|
-
color: rgba(0, 0, 0, 0.5);
|
52
|
-
text-align: center;
|
53
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
54
|
-
}
|
55
|
-
.t-tabbar__item.data-v-4df9e9ce:first-child {
|
56
|
-
padding-left: constant(safe-area-inset-left);
|
57
|
-
padding-left: env(safe-area-inset-left);
|
58
|
-
}
|
59
|
-
.t-tabbar__item.data-v-4df9e9ce:last-child {
|
60
|
-
padding-right: constant(safe-area-inset-right);
|
61
|
-
padding-right: env(safe-area-inset-right);
|
62
|
-
}
|
63
|
-
.t-tabbar__item.t-bar__item_on .t-tabbar__icon.data-v-4df9e9ce,
|
64
|
-
.t-tabbar__item.t-bar__item_on .t-tabbar__icon > i.data-v-4df9e9ce,
|
65
|
-
.t-tabbar__item.t-bar__item_on .t-tabbar__label.data-v-4df9e9ce {
|
66
|
-
color: #e80d19;
|
67
|
-
}
|
68
|
-
.t-tabbar__icon.data-v-4df9e9ce {
|
69
|
-
display: inline-block;
|
70
|
-
width: 28px;
|
71
|
-
height: 28px;
|
72
|
-
margin-bottom: 2px;
|
73
|
-
}
|
74
|
-
i.t-tabbar__icon.data-v-4df9e9ce,
|
75
|
-
.t-tabbar__icon > i.data-v-4df9e9ce {
|
76
|
-
font-size: 24px;
|
77
|
-
color: rgba(0, 0, 0, 0.5);
|
78
|
-
}
|
79
|
-
.t-tabbar__icon image.data-v-4df9e9ce {
|
80
|
-
width: 100%;
|
81
|
-
height: 100%;
|
82
|
-
}
|
83
|
-
.t-tabbar__label.data-v-4df9e9ce {
|
84
|
-
color: #bfbfbf;
|
85
|
-
font-size: 10px;
|
86
|
-
line-height: 1.4;
|
87
|
-
height: 14px;
|
88
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var YoungStorageKeys = /* @__PURE__ */ ((YoungStorageKeys2) => {
|
3
|
-
YoungStorageKeys2["位置信息"] = "location";
|
4
|
-
YoungStorageKeys2["唯一标识"] = "uuid";
|
5
|
-
YoungStorageKeys2["导航栏高度"] = "navbarHeight";
|
6
|
-
return YoungStorageKeys2;
|
7
|
-
})(YoungStorageKeys || {});
|
8
|
-
var Pages = /* @__PURE__ */ ((Pages2) => {
|
9
|
-
Pages2["首页"] = "/pages/index";
|
10
|
-
Pages2["个人中心"] = "/pages/my";
|
11
|
-
Pages2["测试子页面"] = "/pages/demo/index";
|
12
|
-
return Pages2;
|
13
|
-
})(Pages || {});
|
14
|
-
const TabbarArr = [
|
15
|
-
"/pages/index",
|
16
|
-
"/pages/my"
|
17
|
-
/* 个人中心 */
|
18
|
-
];
|
19
|
-
exports.Pages = Pages;
|
20
|
-
exports.TabbarArr = TabbarArr;
|
21
|
-
exports.YoungStorageKeys = YoungStorageKeys;
|
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";
|
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../common/vendor.js");
|
3
|
-
const store_system = require("../store/system.js");
|
4
|
-
const __unplugin_components_0 = () => "../components/young-loading-mini/young-loading-mini.js";
|
5
|
-
if (!Array) {
|
6
|
-
const _easycom_young_loading_mini2 = __unplugin_components_0;
|
7
|
-
_easycom_young_loading_mini2();
|
8
|
-
}
|
9
|
-
const _easycom_young_loading_mini = () => "../components/young-loading-mini/young-loading-mini.js";
|
10
|
-
if (!Math) {
|
11
|
-
_easycom_young_loading_mini();
|
12
|
-
}
|
13
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
14
|
-
__name: "default",
|
15
|
-
setup(__props) {
|
16
|
-
const { pagesInfo } = common_vendor.storeToRefs(store_system.useSystemInfo());
|
17
|
-
common_vendor.onLoad(() => {
|
18
|
-
const [page] = getCurrentPages();
|
19
|
-
const pageConf = pagesInfo.value.find((p) => p.path === page.route);
|
20
|
-
if (pageConf && pageConf.needLogin) {
|
21
|
-
console.log("todo: 这个页面需要登录,进行登录条件判断");
|
22
|
-
}
|
23
|
-
});
|
24
|
-
return (_ctx, _cache) => {
|
25
|
-
return {};
|
26
|
-
};
|
27
|
-
}
|
28
|
-
});
|
29
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/layouts/default.vue"]]);
|
30
|
-
wx.createComponent(Component);
|
@@ -1 +0,0 @@
|
|
1
|
-
<young-loading-mini u-i="0b237194-0" bind:__l="__l"/><slot/>
|
File without changes
|
@@ -1,56 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
const common_vendor = require("../common/vendor.js");
|
3
|
-
const store_local_index = require("../store/local/index.js");
|
4
|
-
const store_system = require("../store/system.js");
|
5
|
-
require("../config/enum.js");
|
6
|
-
const __unplugin_components_3 = () => "../components/young-tabbar/young-tabbar.js";
|
7
|
-
const __unplugin_components_2 = () => "../components/young-loading-mini/young-loading-mini.js";
|
8
|
-
const __unplugin_components_1 = () => "../components/young-loading/young-loading.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 _easycom_young_loading2 = __unplugin_components_1;
|
13
|
-
const _easycom_young_loading_mini2 = __unplugin_components_2;
|
14
|
-
const _easycom_young_tabbar2 = __unplugin_components_3;
|
15
|
-
(_easycom_young_navbar2 + _easycom_young_loading2 + _easycom_young_loading_mini2 + _easycom_young_tabbar2)();
|
16
|
-
}
|
17
|
-
const _easycom_young_navbar = () => "../components/young-navbar/young-navbar.js";
|
18
|
-
const _easycom_young_loading = () => "../components/young-loading/young-loading.js";
|
19
|
-
const _easycom_young_loading_mini = () => "../components/young-loading-mini/young-loading-mini.js";
|
20
|
-
const _easycom_young_tabbar = () => "../components/young-tabbar/young-tabbar.js";
|
21
|
-
if (!Math) {
|
22
|
-
(_easycom_young_navbar + _easycom_young_loading + _easycom_young_loading_mini + _easycom_young_tabbar)();
|
23
|
-
}
|
24
|
-
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
25
|
-
__name: "tabbar",
|
26
|
-
setup(__props) {
|
27
|
-
const { customBarH, safeBottom } = store_local_index.getNavbarHeihgt();
|
28
|
-
const { pagesInfo } = common_vendor.storeToRefs(store_system.useSystemInfo());
|
29
|
-
const showNavBar = common_vendor.ref(false);
|
30
|
-
const navBarAttr = common_vendor.ref({});
|
31
|
-
common_vendor.onLoad(() => {
|
32
|
-
const [page] = getCurrentPages();
|
33
|
-
const pageConf = pagesInfo.value.find((p) => p.path === page.route);
|
34
|
-
if (pageConf == null ? void 0 : pageConf.navbar) {
|
35
|
-
showNavBar.value = true;
|
36
|
-
navBarAttr.value = pageConf.navbar;
|
37
|
-
}
|
38
|
-
});
|
39
|
-
return (_ctx, _cache) => {
|
40
|
-
return common_vendor.e({
|
41
|
-
a: common_vendor.unref(showNavBar)
|
42
|
-
}, common_vendor.unref(showNavBar) ? {
|
43
|
-
b: common_vendor.p({
|
44
|
-
...common_vendor.unref(navBarAttr)
|
45
|
-
})
|
46
|
-
} : {}, {
|
47
|
-
c: `calc(100vh - ${common_vendor.unref(customBarH)}px - ${common_vendor.unref(safeBottom)}px - 44px)`,
|
48
|
-
d: common_vendor.p({
|
49
|
-
z: 999
|
50
|
-
})
|
51
|
-
});
|
52
|
-
};
|
53
|
-
}
|
54
|
-
});
|
55
|
-
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "/mnt/f/young/young-project/create-young-proj/template-uni-app/src/layouts/tabbar.vue"]]);
|
56
|
-
wx.createComponent(Component);
|
@@ -1,9 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"component": true,
|
3
|
-
"usingComponents": {
|
4
|
-
"young-navbar": "../components/young-navbar/young-navbar",
|
5
|
-
"young-loading": "../components/young-loading/young-loading",
|
6
|
-
"young-loading-mini": "../components/young-loading-mini/young-loading-mini",
|
7
|
-
"young-tabbar": "../components/young-tabbar/young-tabbar"
|
8
|
-
}
|
9
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
<young-navbar wx:if="{{a}}" u-i="199e550e-0" bind:__l="__l" u-p="{{b}}"/><young-loading u-i="199e550e-1" bind:__l="__l"/><young-loading-mini u-i="199e550e-2" bind:__l="__l"/><scroll-view scroll-y class="flex flex-col bg-transparent scroll-y" style="{{'height:' + c}}"><slot></slot></scroll-view><young-tabbar wx:if="{{d}}" u-i="199e550e-3" bind:__l="__l" u-p="{{d}}"/>
|
File without changes
|