create-young-proj 0.6.1 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. package/README.md +5 -3
  2. package/dist/index.mjs +9 -9
  3. package/package.json +3 -6
  4. package/template-nuxt-admin/Dockerfile +41 -0
  5. package/template-nuxt-admin/README.md +57 -0
  6. package/template-nuxt-admin/_gitignore +23 -0
  7. package/template-nuxt-admin/_npmrc +2 -0
  8. package/template-nuxt-admin/app.vue +41 -0
  9. package/template-nuxt-admin/boot.mjs +16 -0
  10. package/template-nuxt-admin/components/ScreenFull.vue +18 -0
  11. package/template-nuxt-admin/components/TopSearch.vue +73 -0
  12. package/template-nuxt-admin/components/TopUser.vue +69 -0
  13. package/template-nuxt-admin/components/YoungChangePassword.vue +87 -0
  14. package/template-nuxt-admin/components/YoungCodeInput.vue +60 -0
  15. package/template-nuxt-admin/components/YoungLink.vue +23 -0
  16. package/template-nuxt-admin/components/YoungLoading.vue +39 -0
  17. package/template-nuxt-admin/components/layout/Footer.vue +29 -0
  18. package/template-nuxt-admin/components/layout/Logo.vue +52 -0
  19. package/template-nuxt-admin/components/layout/Main.vue +26 -0
  20. package/template-nuxt-admin/components/layout/NavBar.vue +77 -0
  21. package/template-nuxt-admin/components/layout/SideBar.vue +89 -0
  22. package/template-nuxt-admin/components/layout/SubMenu.vue +46 -0
  23. package/template-nuxt-admin/components/layout/TabsBar.vue +183 -0
  24. package/template-nuxt-admin/composables/api.ts +104 -0
  25. package/template-nuxt-admin/composables/apis/delete.ts +37 -0
  26. package/template-nuxt-admin/composables/apis/get.ts +83 -0
  27. package/template-nuxt-admin/composables/apis/index.ts +10 -0
  28. package/template-nuxt-admin/composables/apis/patch.ts +74 -0
  29. package/template-nuxt-admin/composables/apis/post.ts +85 -0
  30. package/template-nuxt-admin/composables/config.ts +13 -0
  31. package/template-nuxt-admin/composables/icon.ts +27 -0
  32. package/template-nuxt-admin/composables/nav.ts +60 -0
  33. package/template-nuxt-admin/composables/tags.ts +114 -0
  34. package/template-nuxt-admin/composables/user.ts +29 -0
  35. package/template-nuxt-admin/config/.devrc +1 -0
  36. package/template-nuxt-admin/config/.onlinerc +1 -0
  37. package/template-nuxt-admin/config/.testrc +1 -0
  38. package/template-nuxt-admin/env.d.ts +47 -0
  39. package/template-nuxt-admin/error.vue +53 -0
  40. package/template-nuxt-admin/layouts/blank.vue +9 -0
  41. package/template-nuxt-admin/layouts/default.vue +124 -0
  42. package/template-nuxt-admin/middleware/auth.global.ts +50 -0
  43. package/template-nuxt-admin/nuxt.config.ts +101 -0
  44. package/template-nuxt-admin/package.json +44 -0
  45. package/template-nuxt-admin/pages/home/[id].vue +28 -0
  46. package/template-nuxt-admin/pages/index.vue +20 -0
  47. package/template-nuxt-admin/pages/login.vue +179 -0
  48. package/template-nuxt-admin/pages/system/api.vue +166 -0
  49. package/template-nuxt-admin/pages/system/hooks/useRole.ts +336 -0
  50. package/template-nuxt-admin/pages/system/menuList.vue +329 -0
  51. package/template-nuxt-admin/pages/system/role.vue +117 -0
  52. package/template-nuxt-admin/pages/system/user.vue +214 -0
  53. package/template-nuxt-admin/plugins/directive.ts +26 -0
  54. package/template-nuxt-admin/public/default_avatar.svg +1 -0
  55. package/template-nuxt-admin/public/favicon.ico +0 -0
  56. package/template-nuxt-admin/public/image_placeholder.svg +15 -0
  57. package/template-nuxt-admin/public/tabbar_bg.png +0 -0
  58. package/template-nuxt-admin/rome.json +26 -0
  59. package/template-nuxt-admin/server/api/[...all].ts +10 -0
  60. package/template-nuxt-admin/server/plugins/env.ts +89 -0
  61. package/template-nuxt-admin/server/routes/get/env.ts +13 -0
  62. package/template-nuxt-admin/server/tsconfig.json +3 -0
  63. package/template-nuxt-admin/server/utils/index.ts +35 -0
  64. package/template-nuxt-admin/styles/element.scss +30 -0
  65. package/template-nuxt-admin/styles/index.scss +59 -0
  66. package/template-nuxt-admin/styles/variable.scss +103 -0
  67. package/template-nuxt-admin/tsconfig.json +7 -0
  68. package/template-nuxt-admin/typings/global.d.ts +16 -0
  69. package/template-nuxt-admin/typings/system.d.ts +66 -0
  70. package/template-nuxt-admin/typings/user.d.ts +19 -0
  71. package/template-nuxt-admin/uno.config.ts +40 -0
  72. package/template-nuxt-admin/utils/tool.ts +207 -0
  73. package/template-nuxt-admin/yarn.lock +7103 -0
  74. package/template-uni-app/README.md +20 -0
  75. package/template-uni-app/_env +1 -1
  76. package/template-uni-app/_env.development +2 -2
  77. package/template-uni-app/_env.production +0 -3
  78. package/template-uni-app/_env.test +0 -3
  79. package/template-uni-app/_npmrc +2 -0
  80. package/template-uni-app/auto-imports.d.ts +3 -0
  81. package/template-uni-app/dist/dev/mp-weixin/apis/index.js +44 -0
  82. package/template-uni-app/dist/dev/mp-weixin/apis/lib/index.js +90 -0
  83. package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +10 -0
  84. package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +1 -0
  85. package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +15 -0
  86. package/template-uni-app/dist/dev/mp-weixin/app.js +93 -0
  87. package/template-uni-app/dist/dev/mp-weixin/app.json +51 -0
  88. package/template-uni-app/dist/dev/mp-weixin/app.wxss +2378 -0
  89. package/template-uni-app/dist/dev/mp-weixin/common/assets.js +13 -0
  90. package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +10189 -0
  91. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +22 -0
  92. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +4 -0
  93. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +1 -0
  94. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxss +0 -0
  95. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.js +22 -0
  96. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +4 -0
  97. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +1 -0
  98. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxss +0 -0
  99. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.js +82 -0
  100. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +4 -0
  101. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +1 -0
  102. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +108 -0
  103. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +56 -0
  104. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +4 -0
  105. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +1 -0
  106. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +88 -0
  107. package/template-uni-app/dist/dev/mp-weixin/config/enum.js +21 -0
  108. package/template-uni-app/dist/dev/mp-weixin/config/index.js +1 -0
  109. package/template-uni-app/dist/dev/mp-weixin/config/map.js +1 -0
  110. package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +30 -0
  111. package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +6 -0
  112. package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +1 -0
  113. package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxss +0 -0
  114. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.js +56 -0
  115. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +9 -0
  116. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +1 -0
  117. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxss +0 -0
  118. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js +98 -0
  119. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +4 -0
  120. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +1 -0
  121. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +125 -0
  122. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +38 -0
  123. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +5 -0
  124. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +1 -0
  125. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxss +0 -0
  126. package/template-uni-app/dist/dev/mp-weixin/pages/index.js +51 -0
  127. package/template-uni-app/dist/dev/mp-weixin/pages/index.json +5 -0
  128. package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +1 -0
  129. package/template-uni-app/dist/dev/mp-weixin/pages/index.wxss +0 -0
  130. package/template-uni-app/dist/dev/mp-weixin/pages/my.js +22 -0
  131. package/template-uni-app/dist/dev/mp-weixin/pages/my.json +3 -0
  132. package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +1 -0
  133. package/template-uni-app/dist/dev/mp-weixin/pages/my.wxss +0 -0
  134. package/template-uni-app/dist/dev/mp-weixin/project.config.json +56 -0
  135. package/template-uni-app/dist/dev/mp-weixin/static/back.png +0 -0
  136. package/template-uni-app/dist/dev/mp-weixin/static/h.png +0 -0
  137. package/template-uni-app/dist/dev/mp-weixin/static/home.png +0 -0
  138. package/template-uni-app/dist/dev/mp-weixin/static/home_active.png +0 -0
  139. package/template-uni-app/dist/dev/mp-weixin/static/more.png +0 -0
  140. package/template-uni-app/dist/dev/mp-weixin/static/my.png +0 -0
  141. package/template-uni-app/dist/dev/mp-weixin/static/my_active.png +0 -0
  142. package/template-uni-app/dist/dev/mp-weixin/static/network.png +0 -0
  143. package/template-uni-app/dist/dev/mp-weixin/store/index.js +8 -0
  144. package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +11 -0
  145. package/template-uni-app/dist/dev/mp-weixin/store/system.js +14 -0
  146. package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +82 -0
  147. package/template-uni-app/dist/dev/mp-weixin/utils/route.js +85 -0
  148. package/template-uni-app/dist/dev/mp-weixin/utils/system.js +27 -0
  149. package/template-uni-app/src/apis/index.ts +17 -14
  150. package/template-uni-app/src/components/young-loading/young-loading.vue +6 -13
  151. package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +3 -10
  152. package/template-uni-app/src/layouts/default.vue +2 -3
  153. package/template-uni-app/src/layouts/tabbar.vue +22 -15
  154. package/template-uni-app/src/pages/index.vue +12 -3
  155. package/template-uni-app/src/pages/my.vue +15 -12
  156. package/template-uni-app/src/pages.json +8 -2
  157. package/template-uni-app/src/store/system.ts +4 -3
  158. package/template-uni-app/src/typings/global.d.ts +7 -0
  159. package/template-uni-app/src/utils/auth.ts +71 -1
  160. package/template-uni-app/src/utils/modal.ts +30 -7
  161. package/template-vue-admin/src/views/system/menuList.vue +3 -3
@@ -0,0 +1,22 @@
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);
@@ -0,0 +1,4 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {}
4
+ }
@@ -0,0 +1 @@
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>
@@ -0,0 +1,22 @@
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);
@@ -0,0 +1,4 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {}
4
+ }
@@ -0,0 +1 @@
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>
@@ -0,0 +1,82 @@
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);
@@ -0,0 +1,4 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {}
4
+ }
@@ -0,0 +1 @@
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>
@@ -0,0 +1,108 @@
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
+ }
@@ -0,0 +1,56 @@
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);
@@ -0,0 +1,4 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {}
4
+ }
@@ -0,0 +1 @@
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>
@@ -0,0 +1,88 @@
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
+ }
@@ -0,0 +1,21 @@
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;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,30 @@
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);
@@ -0,0 +1,6 @@
1
+ {
2
+ "component": true,
3
+ "usingComponents": {
4
+ "young-loading-mini": "../components/young-loading-mini/young-loading-mini"
5
+ }
6
+ }
@@ -0,0 +1 @@
1
+ <young-loading-mini u-i="0b237194-0" bind:__l="__l"/><slot/>
@@ -0,0 +1,56 @@
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);
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1 @@
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}}"/>