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