@gx-design-vue/create-gx-cli 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +4 -11
- package/package.json +3 -2
- package/template-mobile-vant-cli/.editorconfig +19 -0
- package/template-mobile-vant-cli/.env +0 -0
- package/template-mobile-vant-cli/.env.development +19 -0
- package/template-mobile-vant-cli/.env.pro +19 -0
- package/template-mobile-vant-cli/.env.production +19 -0
- package/template-mobile-vant-cli/.eslintignore +15 -0
- package/template-mobile-vant-cli/.prettierignore +9 -0
- package/template-mobile-vant-cli/build/cdn.ts +5 -0
- package/template-mobile-vant-cli/build/generateModifyVars.ts +7 -0
- package/template-mobile-vant-cli/build/optimizer.ts +18 -0
- package/template-mobile-vant-cli/build/plugin/autoImport.ts +24 -0
- package/template-mobile-vant-cli/build/plugin/html.ts +26 -0
- package/template-mobile-vant-cli/build/plugin/index.ts +42 -0
- package/template-mobile-vant-cli/build/plugin/mock.ts +14 -0
- package/template-mobile-vant-cli/build/plugin/viteMock/client.ts +88 -0
- package/template-mobile-vant-cli/build/plugin/viteMock/createMockServer.ts +271 -0
- package/template-mobile-vant-cli/build/plugin/viteMock/index.ts +69 -0
- package/template-mobile-vant-cli/build/plugin/viteMock/types.ts +48 -0
- package/template-mobile-vant-cli/build/plugin/viteMock/utils.ts +48 -0
- package/template-mobile-vant-cli/build/script/postBuild.ts +14 -0
- package/template-mobile-vant-cli/eslint.config.js +49 -0
- package/template-mobile-vant-cli/index.html +24 -0
- package/template-mobile-vant-cli/mock/_createProductionServer.ts +19 -0
- package/template-mobile-vant-cli/mock/datasSource/api/index.ts +0 -0
- package/template-mobile-vant-cli/mock/utils.ts +9 -0
- package/template-mobile-vant-cli/package.json +57 -0
- package/template-mobile-vant-cli/postcss.config.cjs +8 -0
- package/template-mobile-vant-cli/prettier.config.cjs +18 -0
- package/template-mobile-vant-cli/public/favicon.ico +0 -0
- package/template-mobile-vant-cli/public/js/flexible.js +44 -0
- package/template-mobile-vant-cli/src/App.vue +5 -0
- package/template-mobile-vant-cli/src/components/PageContainer/ProSkeleton.tsx +29 -0
- package/template-mobile-vant-cli/src/components/PageContainer/index.tsx +115 -0
- package/template-mobile-vant-cli/src/components/PageContainer/style.module.less +14 -0
- package/template-mobile-vant-cli/src/core/gx-design/index.ts +7 -0
- package/template-mobile-vant-cli/src/core/index.ts +12 -0
- package/template-mobile-vant-cli/src/core/vant-design/index.ts +4 -0
- package/template-mobile-vant-cli/src/design/config.less +0 -0
- package/template-mobile-vant-cli/src/design/index.less +3 -0
- package/template-mobile-vant-cli/src/design/reset.less +155 -0
- package/template-mobile-vant-cli/src/design/root.less +3 -0
- package/template-mobile-vant-cli/src/design/vant.less +2 -0
- package/template-mobile-vant-cli/src/global.less +1 -0
- package/template-mobile-vant-cli/src/hooks/web/index.ts +5 -0
- package/template-mobile-vant-cli/src/hooks/web/usePageLoading.ts +58 -0
- package/template-mobile-vant-cli/src/layout/BasicLayout.vue +16 -0
- package/template-mobile-vant-cli/src/layout/basicLayout.less +11 -0
- package/template-mobile-vant-cli/src/main.ts +27 -0
- package/template-mobile-vant-cli/src/pages/home.vue +71 -0
- package/template-mobile-vant-cli/src/router/index.ts +25 -0
- package/template-mobile-vant-cli/src/router/routes.ts +20 -0
- package/template-mobile-vant-cli/src/router/typings.ts +8 -0
- package/template-mobile-vant-cli/src/services/index.ts +31 -0
- package/template-mobile-vant-cli/src/settings/index.ts +10 -0
- package/template-mobile-vant-cli/src/store/index.ts +17 -0
- package/template-mobile-vant-cli/src/store/modules/global.ts +30 -0
- package/template-mobile-vant-cli/src/utils/crypto/base64.ts +101 -0
- package/template-mobile-vant-cli/src/utils/crypto/index.ts +57 -0
- package/template-mobile-vant-cli/src/utils/env.ts +50 -0
- package/template-mobile-vant-cli/src/utils/pageTitle.ts +14 -0
- package/template-mobile-vant-cli/src/utils/request/XHR.ts +139 -0
- package/template-mobile-vant-cli/src/utils/request/axiosCancel.ts +69 -0
- package/template-mobile-vant-cli/src/utils/request/checkStatus.ts +9 -0
- package/template-mobile-vant-cli/src/utils/request/index.ts +142 -0
- package/template-mobile-vant-cli/src/utils/request/typings.ts +171 -0
- package/template-mobile-vant-cli/src/utils/storage.ts +198 -0
- package/template-mobile-vant-cli/src/utils/util.ts +27 -0
- package/template-mobile-vant-cli/src/utils/validate.ts +216 -0
- package/template-mobile-vant-cli/tsconfig.json +42 -0
- package/template-mobile-vant-cli/types/ant-design-import.d.ts +13 -0
- package/template-mobile-vant-cli/types/auto-imports.d.ts +64 -0
- package/template-mobile-vant-cli/types/components.d.ts +12 -0
- package/template-mobile-vant-cli/types/global.d.ts +39 -0
- package/template-mobile-vant-cli/types/module.d.ts +20 -0
- package/template-mobile-vant-cli/types/plugins-auto-import.d.ts +14 -0
- package/template-mobile-vant-cli/types/response.d.ts +15 -0
- package/template-mobile-vant-cli/types/vant-import.d.ts +13 -0
- package/template-mobile-vant-cli/unocss.config.ts +101 -0
- package/template-mobile-vant-cli/vite.config.ts +145 -0
- package/template-mobile-vant-html/css/global.css +293 -0
- package/template-mobile-vant-html/css/global.css.map +1 -0
- package/template-mobile-vant-html/css/global.less +293 -0
- package/template-mobile-vant-html/css/index.css +20 -0
- package/template-mobile-vant-html/css/index.css.map +1 -0
- package/template-mobile-vant-html/css/index.less +21 -0
- package/template-mobile-vant-html/image/disconnected.svg +60 -0
- package/template-mobile-vant-html/image/empty.svg +52 -0
- package/template-mobile-vant-html/image/error.svg +53 -0
- package/template-mobile-vant-html/image/loading.svg +1 -0
- package/template-mobile-vant-html/index.html +91 -0
- package/template-mobile-vant-html/js/index.js +29 -0
- package/template-mobile-vant-html/js/plugin/day.min.js +1 -0
- package/template-mobile-vant-html/js/plugin/fastclick.js +730 -0
- package/template-mobile-vant-html/js/plugin/jquery.min.js +2 -0
- package/template-mobile-vant-html/js/plugin/rem.js +28 -0
- package/template-mobile-vant-html/js/utils/appUtil.js +70 -0
- package/template-mobile-vant-html/js/utils/config.js +3 -0
- package/template-mobile-vant-html/js/utils/request.js +61 -0
- package/template-mobile-vant-html/js/utils/utils.js +65 -0
- package/template-mobile-vant-html/js/utils/validate.js +292 -0
@@ -0,0 +1,292 @@
|
|
1
|
+
const toString = Object.prototype.toString
|
2
|
+
|
3
|
+
function is(val, type) {
|
4
|
+
return toString.call(val) === `[object ${type}]`
|
5
|
+
}
|
6
|
+
|
7
|
+
const isClient = typeof window !== 'undefined'
|
8
|
+
|
9
|
+
const noop = () => {}
|
10
|
+
|
11
|
+
/**
|
12
|
+
* @author gx12358 2539306317@qq.com
|
13
|
+
* @description 判读是否为外链
|
14
|
+
* @param path
|
15
|
+
* @returns {boolean}
|
16
|
+
*/
|
17
|
+
function isExternal(path) {
|
18
|
+
return /^(https?:|mailto:|tel:)/.test(path)
|
19
|
+
}
|
20
|
+
|
21
|
+
/**
|
22
|
+
* @author gx12358 2539306317@qq.com
|
23
|
+
* @description 校验密码是否小于6位
|
24
|
+
* @param value
|
25
|
+
* @returns {boolean}
|
26
|
+
*/
|
27
|
+
function isPassword(value) {
|
28
|
+
return value.length >= 6
|
29
|
+
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* @author gx12358 2539306317@qq.com
|
33
|
+
* @description 判断是否为数字
|
34
|
+
* @param value
|
35
|
+
* @returns {boolean}
|
36
|
+
*/
|
37
|
+
function isNumber(val) {
|
38
|
+
return typeof val === 'number'
|
39
|
+
}
|
40
|
+
|
41
|
+
/**
|
42
|
+
* @author gx12358 2539306317@qq.com
|
43
|
+
* @description 判断是否是名称
|
44
|
+
* @param value
|
45
|
+
* @returns {boolean}
|
46
|
+
*/
|
47
|
+
function isName(value) {
|
48
|
+
const reg = /^[\u4e00-\u9fa5a-zA-Z0-9]+$/
|
49
|
+
return reg.test(value)
|
50
|
+
}
|
51
|
+
|
52
|
+
/**
|
53
|
+
* @author gx12358 2539306317@qq.com
|
54
|
+
* @description 判断是否为IP
|
55
|
+
* @param ip
|
56
|
+
* @returns {boolean}
|
57
|
+
*/
|
58
|
+
function isIP(ip) {
|
59
|
+
const reg = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/
|
60
|
+
return reg.test(ip)
|
61
|
+
}
|
62
|
+
|
63
|
+
/**
|
64
|
+
* @author gx12358 2539306317@qq.com
|
65
|
+
* @description 判断是否是传统网站
|
66
|
+
* @param url
|
67
|
+
* @returns {boolean}
|
68
|
+
*/
|
69
|
+
function isUrl(url) {
|
70
|
+
const reg = /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/
|
71
|
+
return reg.test(url)
|
72
|
+
}
|
73
|
+
|
74
|
+
/**
|
75
|
+
* @author gx12358 2539306317@qq.com
|
76
|
+
* @description 判断是否是小写字母
|
77
|
+
* @param value
|
78
|
+
* @returns {boolean}
|
79
|
+
*/
|
80
|
+
function isLowerCase(value) {
|
81
|
+
const reg = /^[a-z]+$/
|
82
|
+
return reg.test(value)
|
83
|
+
}
|
84
|
+
|
85
|
+
/**
|
86
|
+
* @author gx12358 2539306317@qq.com
|
87
|
+
* @description 判断是否是大写字母
|
88
|
+
* @param value
|
89
|
+
* @returns {boolean}
|
90
|
+
*/
|
91
|
+
function isUpperCase(value) {
|
92
|
+
const reg = /^[A-Z]+$/
|
93
|
+
return reg.test(value)
|
94
|
+
}
|
95
|
+
|
96
|
+
/**
|
97
|
+
* @author gx12358 2539306317@qq.com
|
98
|
+
* @description 判断是否是大写字母开头
|
99
|
+
* @param value
|
100
|
+
* @returns {boolean}
|
101
|
+
*/
|
102
|
+
function isAlphabets(value) {
|
103
|
+
const reg = /^[A-Za-z]+$/
|
104
|
+
return reg.test(value)
|
105
|
+
}
|
106
|
+
|
107
|
+
/**
|
108
|
+
* @author gx12358 2539306317@qq.com
|
109
|
+
* @description 判断是否是字符串
|
110
|
+
* @param value
|
111
|
+
* @returns {boolean}
|
112
|
+
*/
|
113
|
+
function isString(value) {
|
114
|
+
return typeof value === 'string' || value instanceof String
|
115
|
+
}
|
116
|
+
|
117
|
+
function isBoolean(val){
|
118
|
+
return is(val, 'Boolean')
|
119
|
+
}
|
120
|
+
|
121
|
+
function isFunction(func) {
|
122
|
+
return (typeof func === 'function' || Object.prototype.toString.call(func) === '[object Function]')
|
123
|
+
}
|
124
|
+
|
125
|
+
/**
|
126
|
+
* @author gx12358 2539306317@qq.com
|
127
|
+
* @description 判断是否是数组
|
128
|
+
* @param arg
|
129
|
+
* @returns {arg is any[]|boolean}
|
130
|
+
*/
|
131
|
+
function isArray(arg) {
|
132
|
+
if (typeof Array.isArray === 'undefined') {
|
133
|
+
return Object.prototype.toString.call(arg) === '[object Array]'
|
134
|
+
}
|
135
|
+
return Array.isArray(arg)
|
136
|
+
}
|
137
|
+
|
138
|
+
/**
|
139
|
+
* @Author gaoxiang
|
140
|
+
* @DateTime 2019/11/29
|
141
|
+
* @lastTime 2019/11/29
|
142
|
+
* @description 是否是对象
|
143
|
+
*/
|
144
|
+
function isObject(val) {
|
145
|
+
return val !== null && is(val, 'Object')
|
146
|
+
}
|
147
|
+
|
148
|
+
/**
|
149
|
+
* @author gx12358 2539306317@qq.com
|
150
|
+
* @description 判断是否是端口号
|
151
|
+
* @param value
|
152
|
+
* @returns {boolean}
|
153
|
+
*/
|
154
|
+
function isPort(value) {
|
155
|
+
const reg = /^([0-9]|[1-9]\d|[1-9]\d{2}|[1-9]\d{3}|[1-5]\d{4}|6[0-4]\d{3}|65[0-4]\d{2}|655[0-2]\d|6553[0-5])$/
|
156
|
+
return reg.test(value)
|
157
|
+
}
|
158
|
+
|
159
|
+
/**
|
160
|
+
* @author gx12358 2539306317@qq.com
|
161
|
+
* @description 判断是否是手机号
|
162
|
+
* @param value
|
163
|
+
* @returns {boolean}
|
164
|
+
*/
|
165
|
+
function isPhone(value) {
|
166
|
+
const reg = /^1\d{10}$/
|
167
|
+
return reg.test(value)
|
168
|
+
}
|
169
|
+
|
170
|
+
/**
|
171
|
+
* @author gx12358 2539306317@qq.com
|
172
|
+
* @description 判断是否是身份证号(第二代)
|
173
|
+
* @param value
|
174
|
+
* @returns {boolean}
|
175
|
+
*/
|
176
|
+
function isIdCard(value) {
|
177
|
+
const reg = /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/
|
178
|
+
return reg.test(value)
|
179
|
+
}
|
180
|
+
|
181
|
+
/**
|
182
|
+
* @author gx12358 2539306317@qq.com
|
183
|
+
* @description 判断是否是邮箱
|
184
|
+
* @param value
|
185
|
+
* @returns {boolean}
|
186
|
+
*/
|
187
|
+
function isEmail(value) {
|
188
|
+
const reg = /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/
|
189
|
+
return reg.test(value)
|
190
|
+
}
|
191
|
+
|
192
|
+
/**
|
193
|
+
* @author gx12358 2539306317@qq.com
|
194
|
+
* @description 判断是否中文
|
195
|
+
* @param value
|
196
|
+
* @returns {boolean}
|
197
|
+
*/
|
198
|
+
function isChina(value) {
|
199
|
+
const reg = /^[\u4E00-\u9FA5]{2,4}$/
|
200
|
+
return reg.test(value)
|
201
|
+
}
|
202
|
+
|
203
|
+
/**
|
204
|
+
* @author gx12358 2539306317@qq.com
|
205
|
+
* @description 判断是否为空
|
206
|
+
* @param value
|
207
|
+
* @returns {boolean}
|
208
|
+
*/
|
209
|
+
function isBlank(value) {
|
210
|
+
return (
|
211
|
+
value == null ||
|
212
|
+
false ||
|
213
|
+
value === '' ||
|
214
|
+
value.trim() === '' ||
|
215
|
+
value.toLocaleLowerCase().trim() === 'null'
|
216
|
+
)
|
217
|
+
}
|
218
|
+
|
219
|
+
/**
|
220
|
+
* @author gx12358 2539306317@qq.com
|
221
|
+
* @description 判断是否为固话
|
222
|
+
* @param value
|
223
|
+
* @returns {boolean}
|
224
|
+
*/
|
225
|
+
function isTel(value) {
|
226
|
+
const reg = /^(400|800)([0-9\\-]{7,10})|(([0-9]{4}|[0-9]{3})([- ])?)?([0-9]{7,8})(([- 转])*([0-9]{1,4}))?$/
|
227
|
+
return reg.test(value)
|
228
|
+
}
|
229
|
+
|
230
|
+
/**
|
231
|
+
* @author gx12358 2539306317@qq.com
|
232
|
+
* @description 判断经度 -180.0~+180.0(整数部分为0~180,必须输入1到5位小数)
|
233
|
+
* @param value
|
234
|
+
* @returns {boolean}
|
235
|
+
*/
|
236
|
+
function isLongitude(value) {
|
237
|
+
const reg = /^[-|+]?(0?\d{1,2}\.\d{1,5}|1[0-7]?\d{1}\.\d{1,5}|180\.0{1,5})$/
|
238
|
+
return reg.test(value)
|
239
|
+
}
|
240
|
+
|
241
|
+
/**
|
242
|
+
* @author gx12358 2539306317@qq.com
|
243
|
+
* @description 判断纬度 -90.0~+90.0(整数部分为0~90,必须输入1到5位小数)
|
244
|
+
* @param value
|
245
|
+
* @returns {boolean}
|
246
|
+
*/
|
247
|
+
function isLatitude(value) {
|
248
|
+
const reg = /^[-|+]?([0-8]?\d{1}\.\d{1,5}|90\.0{1,5})$/
|
249
|
+
return reg.test(value)
|
250
|
+
}
|
251
|
+
|
252
|
+
/**
|
253
|
+
* @author gx12358 2539306317@qq.com
|
254
|
+
* @description rtsp校验,只要有rtsp://
|
255
|
+
* @param value
|
256
|
+
* @returns {boolean}
|
257
|
+
*/
|
258
|
+
function isRTSP(value) {
|
259
|
+
const reg = /^rtsp:\/\/([a-z]{0,10}:.{0,10}@)?(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/
|
260
|
+
const reg1 = /^rtsp:\/\/([a-z]{0,10}:.{0,10}@)?(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5]):[0-9]{1,5}/
|
261
|
+
const reg2 = /^rtsp:\/\/([a-z]{0,10}:.{0,10}@)?(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\//
|
262
|
+
return reg.test(value) || reg1.test(value) || reg2.test(value)
|
263
|
+
}
|
264
|
+
|
265
|
+
/**
|
266
|
+
* @Author gaoxiang
|
267
|
+
* @DateTime 2020/11/4
|
268
|
+
* @lastTime 2020/11/4
|
269
|
+
* @description 判断是否是JSON字符串
|
270
|
+
*/
|
271
|
+
function isJSONStr(str) {
|
272
|
+
if (typeof str === 'string') {
|
273
|
+
try {
|
274
|
+
const obj = JSON.parse(str)
|
275
|
+
if (typeof obj === 'object' && obj) {
|
276
|
+
return true
|
277
|
+
} else {
|
278
|
+
return false
|
279
|
+
}
|
280
|
+
} catch (e) {
|
281
|
+
return false
|
282
|
+
}
|
283
|
+
}
|
284
|
+
return false
|
285
|
+
}
|
286
|
+
|
287
|
+
function checkURL(URL) {
|
288
|
+
const str = URL,
|
289
|
+
Expression = /http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w- .\/?%&=]*)?/,
|
290
|
+
objExp = new RegExp(Expression)
|
291
|
+
return objExp.test(str)
|
292
|
+
}
|