create-young-proj 0.13.0 → 1.1.0-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. package/.editorconfig +14 -0
  2. package/.vscode/settings.json +39 -0
  3. package/CHANGELOG.md +256 -0
  4. package/README.md +38 -25
  5. package/build.config.ts +22 -0
  6. package/eslint.config.js +35 -0
  7. package/package.json +10 -15
  8. package/src/index.ts +366 -0
  9. package/template-admin-server/_nvmrc +1 -0
  10. package/template-nuxt-admin/.vscode/settings.json +20 -6
  11. package/template-nuxt-admin/Dockerfile +3 -3
  12. package/template-nuxt-admin/README.md +23 -16
  13. package/template-nuxt-admin/_nvmrc +1 -0
  14. package/template-nuxt-admin/app.vue +10 -2
  15. package/template-nuxt-admin/boot.mjs +7 -7
  16. package/template-nuxt-admin/components/TopSearch.vue +1 -2
  17. package/template-nuxt-admin/components/YoungChangePassword.vue +2 -5
  18. package/template-nuxt-admin/components/YoungCodeInput.vue +1 -2
  19. package/template-nuxt-admin/components/YoungEditor.vue +81 -0
  20. package/template-nuxt-admin/components/ZenMode.vue +21 -0
  21. package/template-nuxt-admin/components/layout/NavBar.vue +3 -2
  22. package/template-nuxt-admin/composables/api.ts +7 -15
  23. package/template-nuxt-admin/composables/icon.ts +1 -3
  24. package/template-nuxt-admin/composables/nav.ts +11 -1
  25. package/template-nuxt-admin/composables/user.ts +3 -1
  26. package/template-nuxt-admin/env.d.ts +8 -8
  27. package/template-nuxt-admin/eslint.config.js +33 -0
  28. package/template-nuxt-admin/layouts/default.vue +45 -7
  29. package/template-nuxt-admin/middleware/auth.global.ts +2 -5
  30. package/template-nuxt-admin/nuxt.config.ts +21 -21
  31. package/template-nuxt-admin/package.json +8 -9
  32. package/template-nuxt-admin/pages/system/api.vue +1 -3
  33. package/template-nuxt-admin/pages/system/hooks/useRole.ts +1 -8
  34. package/template-nuxt-admin/pages/system/menuList.vue +4 -6
  35. package/template-nuxt-admin/pages/system/role.vue +1 -2
  36. package/template-nuxt-admin/pages/system/user.vue +1 -3
  37. package/template-nuxt-admin/public/index.umd.js +74 -0
  38. package/template-nuxt-admin/public/index.umd.js.map +1 -0
  39. package/template-nuxt-admin/server/plugins/env.ts +3 -2
  40. package/template-nuxt-admin/server/utils/index.ts +1 -1
  41. package/template-nuxt-admin/typings/global.d.ts +6 -6
  42. package/template-nuxt-admin/typings/system.d.ts +55 -54
  43. package/template-nuxt-admin/typings/user.d.ts +12 -12
  44. package/template-nuxt-admin/utils/tool.ts +4 -8
  45. package/template-nuxt-admin/yarn.lock +1913 -2002
  46. package/template-nuxt-website/.nvmrc +1 -0
  47. package/template-nuxt-website/.vscode/extensions.json +12 -0
  48. package/template-nuxt-website/.vscode/settings.json +39 -0
  49. package/template-nuxt-website/Dockerfile +41 -0
  50. package/template-nuxt-website/README.md +117 -0
  51. package/template-nuxt-website/_gitignore +26 -0
  52. package/template-nuxt-website/_npmrc +2 -0
  53. package/template-nuxt-website/_nvmrc +1 -0
  54. package/template-nuxt-website/app.vue +66 -0
  55. package/template-nuxt-website/assets/tabbar/event.png +0 -0
  56. package/template-nuxt-website/assets/tabbar/event_active.png +0 -0
  57. package/template-nuxt-website/assets/tabbar/game.png +0 -0
  58. package/template-nuxt-website/assets/tabbar/game_active.png +0 -0
  59. package/template-nuxt-website/assets/tabbar/shop.png +0 -0
  60. package/template-nuxt-website/assets/tabbar/shop_active.png +0 -0
  61. package/template-nuxt-website/assets/tabbar/user.png +0 -0
  62. package/template-nuxt-website/assets/tabbar/user_active.png +0 -0
  63. package/template-nuxt-website/boot.mjs +16 -0
  64. package/template-nuxt-website/components/AboutNav.vue +27 -0
  65. package/template-nuxt-website/components/BreadNav.vue +35 -0
  66. package/template-nuxt-website/components/Follow.vue +48 -0
  67. package/template-nuxt-website/components/FriendLink.vue +36 -0
  68. package/template-nuxt-website/components/mobile/NavBar.vue +50 -0
  69. package/template-nuxt-website/components/top/Extra.vue +50 -0
  70. package/template-nuxt-website/components/top/Nav.vue +87 -0
  71. package/template-nuxt-website/components/young/Banner.vue +100 -0
  72. package/template-nuxt-website/components/young/Footer.vue +44 -0
  73. package/template-nuxt-website/components/young/Header.vue +25 -0
  74. package/template-nuxt-website/components/young/Tabbar.vue +76 -0
  75. package/template-nuxt-website/composables/ad.ts +20 -0
  76. package/template-nuxt-website/composables/config.ts +11 -0
  77. package/template-nuxt-website/composables/nav.ts +30 -0
  78. package/template-nuxt-website/composables/share.ts +22 -0
  79. package/template-nuxt-website/composables/utils.ts +84 -0
  80. package/template-nuxt-website/config/.devrc +11 -0
  81. package/template-nuxt-website/config/.onlinerc +13 -0
  82. package/template-nuxt-website/config/.testrc +11 -0
  83. package/template-nuxt-website/env.d.ts +55 -0
  84. package/template-nuxt-website/error.vue +69 -0
  85. package/template-nuxt-website/eslint.config.js +34 -0
  86. package/template-nuxt-website/layouts/default.vue +80 -0
  87. package/template-nuxt-website/layouts/home.vue +75 -0
  88. package/template-nuxt-website/layouts/tabbar.vue +78 -0
  89. package/template-nuxt-website/nuxt.config.ts +98 -0
  90. package/template-nuxt-website/package.json +41 -0
  91. package/template-nuxt-website/pages/index.html.vue +16 -0
  92. package/template-nuxt-website/pages/index.vue +29 -0
  93. package/template-nuxt-website/pages/match.html.vue +23 -0
  94. package/template-nuxt-website/pages/news/[id].html.vue +57 -0
  95. package/template-nuxt-website/pages/news.html.vue +26 -0
  96. package/template-nuxt-website/pages/shop.html.vue +26 -0
  97. package/template-nuxt-website/public/favicon.ico +0 -0
  98. package/template-nuxt-website/public/robots.txt +2 -0
  99. package/template-nuxt-website/public/svg/image_placeholder.svg +15 -0
  100. package/template-nuxt-website/server/api/get_footer_info.get.ts +52 -0
  101. package/template-nuxt-website/server/api/get_gray_status.get.ts +38 -0
  102. package/template-nuxt-website/server/api/get_head_nav.get.ts +38 -0
  103. package/template-nuxt-website/server/api/get_home_banner.get.ts +28 -0
  104. package/template-nuxt-website/server/api/get_seo_info.get.ts +32 -0
  105. package/template-nuxt-website/server/middleware/platform.ts +11 -0
  106. package/template-nuxt-website/server/plugins/init.ts +147 -0
  107. package/template-nuxt-website/server/tsconfig.json +3 -0
  108. package/template-nuxt-website/server/utils/index.ts +12 -0
  109. package/template-nuxt-website/server/utils/proxy.ts +59 -0
  110. package/template-nuxt-website/tsconfig.json +4 -0
  111. package/template-nuxt-website/typings/banner.d.ts +30 -0
  112. package/template-nuxt-website/typings/nav.d.ts +34 -0
  113. package/template-nuxt-website/typings/system.d.ts +22 -0
  114. package/template-nuxt-website/uno.config.ts +40 -0
  115. package/template-nuxt-website/utils/tool.ts +171 -0
  116. package/template-nuxt-website/yarn.lock +8018 -0
  117. package/template-uni-app/.vscode/settings.json +20 -6
  118. package/template-uni-app/README.md +5 -0
  119. package/template-uni-app/_nvmrc +1 -0
  120. package/template-uni-app/eslint.config.js +35 -0
  121. package/template-uni-app/package.json +22 -21
  122. package/template-uni-app/pnpm-lock.yaml +2557 -1543
  123. package/template-uni-app/src/env.d.ts +6 -6
  124. package/template-uni-app/src/typings/global.d.ts +1 -1
  125. package/template-uni-app/src/utils/modal.ts +2 -2
  126. package/template-uni-app/tsconfig.json +3 -3
  127. package/tsconfig.json +11 -0
  128. package/dist/index.mjs +0 -51
  129. package/template-nuxt-admin/.eslintrc +0 -14
  130. package/template-uni-app/.vscode/.server-controller-port.log +0 -5
  131. package/template-uni-app/dist/dev/mp-weixin/apis/index.js +0 -43
  132. package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +0 -10
  133. package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +0 -1
  134. package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +0 -15
  135. package/template-uni-app/dist/dev/mp-weixin/app.js +0 -92
  136. package/template-uni-app/dist/dev/mp-weixin/app.json +0 -51
  137. package/template-uni-app/dist/dev/mp-weixin/app.wxss +0 -2378
  138. package/template-uni-app/dist/dev/mp-weixin/common/assets.js +0 -13
  139. package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +0 -9166
  140. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +0 -22
  141. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +0 -4
  142. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +0 -1
  143. package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxss +0 -0
  144. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.js +0 -22
  145. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +0 -4
  146. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +0 -1
  147. package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxss +0 -0
  148. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.js +0 -81
  149. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +0 -4
  150. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +0 -1
  151. package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +0 -108
  152. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +0 -55
  153. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +0 -4
  154. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +0 -1
  155. package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +0 -88
  156. package/template-uni-app/dist/dev/mp-weixin/config/enum.js +0 -21
  157. package/template-uni-app/dist/dev/mp-weixin/config/index.js +0 -1
  158. package/template-uni-app/dist/dev/mp-weixin/config/map.js +0 -1
  159. package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +0 -29
  160. package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +0 -6
  161. package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +0 -1
  162. package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxss +0 -0
  163. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.js +0 -56
  164. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +0 -9
  165. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +0 -1
  166. package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxss +0 -0
  167. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js +0 -98
  168. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +0 -4
  169. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +0 -1
  170. package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +0 -125
  171. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +0 -37
  172. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +0 -5
  173. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +0 -1
  174. package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxss +0 -0
  175. package/template-uni-app/dist/dev/mp-weixin/pages/index.js +0 -50
  176. package/template-uni-app/dist/dev/mp-weixin/pages/index.json +0 -5
  177. package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +0 -1
  178. package/template-uni-app/dist/dev/mp-weixin/pages/index.wxss +0 -0
  179. package/template-uni-app/dist/dev/mp-weixin/pages/my.js +0 -22
  180. package/template-uni-app/dist/dev/mp-weixin/pages/my.json +0 -3
  181. package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +0 -1
  182. package/template-uni-app/dist/dev/mp-weixin/pages/my.wxss +0 -0
  183. package/template-uni-app/dist/dev/mp-weixin/project.config.json +0 -55
  184. package/template-uni-app/dist/dev/mp-weixin/project.private.config.json +0 -6
  185. package/template-uni-app/dist/dev/mp-weixin/static/back.png +0 -0
  186. package/template-uni-app/dist/dev/mp-weixin/static/h.png +0 -0
  187. package/template-uni-app/dist/dev/mp-weixin/static/home.png +0 -0
  188. package/template-uni-app/dist/dev/mp-weixin/static/home_active.png +0 -0
  189. package/template-uni-app/dist/dev/mp-weixin/static/more.png +0 -0
  190. package/template-uni-app/dist/dev/mp-weixin/static/my.png +0 -0
  191. package/template-uni-app/dist/dev/mp-weixin/static/my_active.png +0 -0
  192. package/template-uni-app/dist/dev/mp-weixin/static/network.png +0 -0
  193. package/template-uni-app/dist/dev/mp-weixin/store/index.js +0 -8
  194. package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +0 -13
  195. package/template-uni-app/dist/dev/mp-weixin/store/system.js +0 -14
  196. package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +0 -78
  197. package/template-uni-app/dist/dev/mp-weixin/utils/route.js +0 -83
  198. package/template-uni-app/dist/dev/mp-weixin/utils/system.js +0 -27
@@ -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,4 +0,0 @@
1
- {
2
- "component": true,
3
- "usingComponents": {}
4
- }
@@ -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>
@@ -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);
@@ -1,4 +0,0 @@
1
- {
2
- "component": true,
3
- "usingComponents": {}
4
- }
@@ -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>
@@ -1,81 +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
- function handleLeftClick() {
40
- if (pagesCount.value === 1)
41
- utils_route.relaunch(config_enum.Pages.首页);
42
- else
43
- utils_route.back();
44
- }
45
- return (_ctx, _cache) => {
46
- return common_vendor.e({
47
- a: __props.ishow
48
- }, __props.ishow ? common_vendor.e({
49
- b: __props.isback
50
- }, __props.isback ? common_vendor.e({
51
- c: _ctx.$slots.back
52
- }, _ctx.$slots.back ? {} : common_vendor.e({
53
- d: common_vendor.unref(pagesCount) === 1
54
- }, common_vendor.unref(pagesCount) === 1 ? {
55
- e: common_assets._imports_0
56
- } : {
57
- f: common_assets._imports_1
58
- }), {
59
- g: common_vendor.o(handleLeftClick)
60
- }) : {}, {
61
- h: _ctx.$slots.title
62
- }, _ctx.$slots.title ? {} : {
63
- i: common_vendor.t(__props.title || common_vendor.unref(pagesTitle)),
64
- j: __props.color
65
- }, {
66
- k: __props.custom ? 1 : "",
67
- l: __props.fixed || __props.placeholder ? 1 : "",
68
- m: `${common_vendor.unref(navHeight).customBarH}px`,
69
- n: `${common_vendor.unref(navHeight).statusBarH}px`,
70
- o: __props.bgcolor,
71
- p: __props.color,
72
- q: __props.zIndex,
73
- r: __props.placeholder
74
- }, __props.placeholder ? {
75
- s: `${common_vendor.unref(navHeight).customBarH}px`
76
- } : {}) : {});
77
- };
78
- }
79
- });
80
- 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"]]);
81
- wx.createComponent(Component);
@@ -1,4 +0,0 @@
1
- {
2
- "component": true,
3
- "usingComponents": {}
4
- }
@@ -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 wx:else src="{{f}}" class="w20px h20px v-else data-v-1047ead9"/></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>
@@ -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,55 +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
- function tabChange(index) {
33
- if (index === current.value)
34
- return;
35
- utils_route.tabbar(list.value[index].pagePath);
36
- }
37
- common_vendor.index.hideTabBar();
38
- return (_ctx, _cache) => {
39
- return {
40
- a: common_vendor.f(common_vendor.unref(list), (item, index, i0) => {
41
- return {
42
- a: common_vendor.unref(current) === index ? item.selectedIconPath : item.iconPath,
43
- b: common_vendor.t(item.text),
44
- c: index,
45
- d: index === common_vendor.unref(current) ? 1 : "",
46
- e: common_vendor.o(($event) => tabChange(index), index)
47
- };
48
- }),
49
- b: __props.z
50
- };
51
- };
52
- }
53
- });
54
- 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"]]);
55
- wx.createComponent(Component);
@@ -1,4 +0,0 @@
1
- {
2
- "component": true,
3
- "usingComponents": {}
4
- }
@@ -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="c" class="{{['t-tabbar__item', 'data-v-4df9e9ce', item.d && 't-bar__item_on']}}" bindtap="{{item.e}}"><view class="data-v-4df9e9ce" style="position:relative;display:inline-block"><image src="{{item.a}}" class="t-tabbar__icon data-v-4df9e9ce"/></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,29 +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
- return (_ctx, _cache) => {
24
- return {};
25
- };
26
- }
27
- });
28
- 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"]]);
29
- wx.createComponent(Component);
@@ -1,6 +0,0 @@
1
- {
2
- "component": true,
3
- "usingComponents": {
4
- "young-loading-mini": "../components/young-loading-mini/young-loading-mini"
5
- }
6
- }
@@ -1 +0,0 @@
1
- <young-loading-mini u-i="0b237194-0" bind:__l="__l"/><slot/>
@@ -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/></scroll-view><young-tabbar wx:if="{{d}}" u-i="199e550e-3" bind:__l="__l" u-p="{{d}}"/>
@@ -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);