create-young-proj 0.3.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +6 -1
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
- package/template-uni-app/.vscode/css.code-snippets +398 -0
- package/template-uni-app/.vscode/extensions.json +9 -0
- package/template-uni-app/.vscode/js.code-snippets +1669 -0
- package/template-uni-app/.vscode/settings.json +7 -0
- package/template-uni-app/.vscode/vue-html.code-snippets +668 -0
- package/template-uni-app/README.md +46 -0
- package/template-uni-app/_env +1 -0
- package/template-uni-app/_env.development +11 -0
- package/template-uni-app/_env.production +11 -0
- package/template-uni-app/_env.test +14 -0
- package/template-uni-app/_gitignore +3 -0
- package/template-uni-app/auto-imports.d.ts +404 -0
- package/template-uni-app/components.d.ts +20 -0
- package/template-uni-app/custom-plugins/index.ts +8 -0
- package/template-uni-app/custom-plugins/multiconf.ts +77 -0
- package/template-uni-app/custom-plugins/polyfill.ts +32 -0
- package/template-uni-app/index.html +23 -0
- package/template-uni-app/package.json +84 -0
- package/template-uni-app/pnpm-lock.yaml +7530 -0
- package/template-uni-app/rome.json +26 -0
- package/template-uni-app/src/App.vue +76 -0
- package/template-uni-app/src/apis/index.ts +36 -0
- package/template-uni-app/src/apis/lib/index.ts +236 -0
- package/template-uni-app/src/apis/requests/get.ts +52 -0
- package/template-uni-app/src/apis/requests/index.ts +8 -0
- package/template-uni-app/src/apis/requests/post.ts +23 -0
- package/template-uni-app/src/components/young-loading/young-loading.vue +38 -0
- package/template-uni-app/src/components/young-navbar/young-navbar.vue +253 -0
- package/template-uni-app/src/components/young-tabbar/young-tabbar.vue +137 -0
- package/template-uni-app/src/components/young-tabbar-layout/young-tabbar-layout.vue +27 -0
- package/template-uni-app/src/config/enum.ts +46 -0
- package/template-uni-app/src/config/index.ts +8 -0
- package/template-uni-app/src/config/map.ts +15 -0
- package/template-uni-app/src/env.d.ts +35 -0
- package/template-uni-app/src/main.ts +20 -0
- package/template-uni-app/src/manifest.json +83 -0
- package/template-uni-app/src/pages/index.vue +52 -0
- package/template-uni-app/src/pages/my.vue +29 -0
- package/template-uni-app/src/pages.json +63 -0
- package/template-uni-app/src/store/index.ts +16 -0
- package/template-uni-app/src/store/local/index.ts +40 -0
- package/template-uni-app/src/store/system.ts +12 -0
- package/template-uni-app/src/uni.scss +76 -0
- package/template-uni-app/src/utils/auth.ts +125 -0
- package/template-uni-app/src/utils/index.ts +11 -0
- package/template-uni-app/src/utils/map.ts +97 -0
- package/template-uni-app/src/utils/modal.ts +98 -0
- package/template-uni-app/src/utils/route.ts +149 -0
- package/template-uni-app/src/utils/system.ts +66 -0
- package/template-uni-app/tsconfig.json +13 -0
- package/template-uni-app/unocss.config.ts +30 -0
- package/template-uni-app/vite.config.ts +68 -0
@@ -0,0 +1,668 @@
|
|
1
|
+
{
|
2
|
+
"#ifdef": {
|
3
|
+
"body": [
|
4
|
+
"<!-- #ifdef ${1|APP-PLUS,MP,MP-ALIPAY,MP-BAIDU,MP-WEIXIN,MP-QQ,H5|} -->",
|
5
|
+
"$0",
|
6
|
+
"<!-- #endif -->"
|
7
|
+
],
|
8
|
+
"prefix": "ifdef",
|
9
|
+
"project": "uni-app",
|
10
|
+
"scope": "vue-html"
|
11
|
+
},
|
12
|
+
"#ifndef": {
|
13
|
+
"body": [
|
14
|
+
"<!-- #ifndef ${1|APP-PLUS,MP,MP-ALIPAY,MP-BAIDU,MP-WEIXIN,MP-QQ,H5|} -->",
|
15
|
+
"$0",
|
16
|
+
"<!-- #endif -->"
|
17
|
+
],
|
18
|
+
"prefix": "ifndef",
|
19
|
+
"project": "uni-app",
|
20
|
+
"scope": "vue-html"
|
21
|
+
},
|
22
|
+
"Vue Base": {
|
23
|
+
"body": [
|
24
|
+
"<template>",
|
25
|
+
"\t<${1:div}>",
|
26
|
+
"",
|
27
|
+
"\t</${1:div}>",
|
28
|
+
"</template>",
|
29
|
+
"",
|
30
|
+
"<script>",
|
31
|
+
"\texport default {",
|
32
|
+
"\t\t${0}",
|
33
|
+
"\t}",
|
34
|
+
"</script>",
|
35
|
+
"",
|
36
|
+
"<style scoped>",
|
37
|
+
"",
|
38
|
+
"</style>"
|
39
|
+
],
|
40
|
+
"description": "Base for Vue File",
|
41
|
+
"prefix": "vbase",
|
42
|
+
"scope": "vue-html"
|
43
|
+
},
|
44
|
+
"Vue Class Binding": {
|
45
|
+
"body": ["<${1|div|} :class=\"{ ${2:className}: ${3:data} }\"><,${1:div}>"],
|
46
|
+
"description": "vue class binding",
|
47
|
+
"prefix": "vclass",
|
48
|
+
"scope": "vue-html"
|
49
|
+
},
|
50
|
+
"Vue Class Binding Object": {
|
51
|
+
"body": [
|
52
|
+
"<${1|div|} :class=\"[${2:classNameA}, ${3:classNameB}]\"><,${1:div}>"
|
53
|
+
],
|
54
|
+
"description": "vue class binding",
|
55
|
+
"prefix": "vclass-obj",
|
56
|
+
"scope": "vue-html"
|
57
|
+
},
|
58
|
+
"Vue Component with Props Binding": {
|
59
|
+
"body": ["<${1|component|} :${1:propName}=\"${0}\"><,${1:component}>"],
|
60
|
+
"description": "component element with props",
|
61
|
+
"prefix": "vel-props",
|
62
|
+
"scope": "vue-html"
|
63
|
+
},
|
64
|
+
"Vue Image Source Binding": {
|
65
|
+
"body": [
|
66
|
+
"<img :src=\"'/path/to/images/' + ${1:fileName}\" alt=\"${2:altText}\"/>"
|
67
|
+
],
|
68
|
+
"description": "image source binding",
|
69
|
+
"prefix": "vsrc",
|
70
|
+
"scope": "vue-html"
|
71
|
+
},
|
72
|
+
"Vue Multiple Conditional Class Bindings": {
|
73
|
+
"body": [
|
74
|
+
"<${1|div|} :class=\"[${2:classNameA}, {${3:classNameB} : ${4:condition}}]\"><,${1:div}>"
|
75
|
+
],
|
76
|
+
"description": "vue multiple conditional class bindings",
|
77
|
+
"prefix": "vclass-obj-mult",
|
78
|
+
"scope": "vue-html"
|
79
|
+
},
|
80
|
+
"Vue Nuxt Routing Link": {
|
81
|
+
"body": ["<nuxt-link to=\"/${1:page}\">${1:page}</nuxt-link>"],
|
82
|
+
"description": "nuxt routing link",
|
83
|
+
"prefix": "vnuxtl",
|
84
|
+
"scope": "vue-html"
|
85
|
+
},
|
86
|
+
"Vue Style Binding": {
|
87
|
+
"body": [
|
88
|
+
"<${1|div|} :style=\"{ fontSize: ${2:data} + 'px' }\"><,${1:div}>"
|
89
|
+
],
|
90
|
+
"description": "vue inline style binding",
|
91
|
+
"prefix": "vstyle",
|
92
|
+
"scope": "vue-html"
|
93
|
+
},
|
94
|
+
"Vue Style Binding Object": {
|
95
|
+
"body": [
|
96
|
+
"<${1|div|} :style=\"[${2:styleObjectA}, ${3:styleObjectB]}\"><,${1:div}>"
|
97
|
+
],
|
98
|
+
"description": "vue inline style binding, objects",
|
99
|
+
"prefix": "vstyle-obj",
|
100
|
+
"scope": "vue-html"
|
101
|
+
},
|
102
|
+
"Vue Transition Component with JavaScript Hooks": {
|
103
|
+
"body": [
|
104
|
+
"<transition",
|
105
|
+
"\tmode=\"out-in\"",
|
106
|
+
"\t@before-enter=\"beforeEnter\"",
|
107
|
+
"\t@enter=\"enter\"",
|
108
|
+
"",
|
109
|
+
"\t@before-leave=\"beforeLeave\"",
|
110
|
+
"\t@leave=\"leave\"",
|
111
|
+
"\t:css=\"false\">",
|
112
|
+
"",
|
113
|
+
"</transition>"
|
114
|
+
],
|
115
|
+
"description": "transition component js hooks",
|
116
|
+
"prefix": "vanim",
|
117
|
+
"scope": "vue-html"
|
118
|
+
},
|
119
|
+
"Vue v-for": {
|
120
|
+
"body": [
|
121
|
+
"<${1:div} v-for=\"${2:item} in ${2:item}s\" :key=\"${2:item}.id\">",
|
122
|
+
"\t{{ ${2:item} }}",
|
123
|
+
"</${1:div}>"
|
124
|
+
],
|
125
|
+
"description": "vfor statement",
|
126
|
+
"prefix": "vfor",
|
127
|
+
"scope": "vue-html"
|
128
|
+
},
|
129
|
+
"Vue v-model Directive": {
|
130
|
+
"body": ["<input v-model=\"${1:data}\" type=\"text\" />"],
|
131
|
+
"description": "v-model directive",
|
132
|
+
"prefix": "vmodel",
|
133
|
+
"scope": "vue-html"
|
134
|
+
},
|
135
|
+
"Vue v-model Number Directive": {
|
136
|
+
"body": [
|
137
|
+
"<input v-model.number=\"${1:numData}\" type=\"number\" step=\"1\" />"
|
138
|
+
],
|
139
|
+
"description": "v-model directive number input",
|
140
|
+
"prefix": "vmodel-num",
|
141
|
+
"scope": "vue-html"
|
142
|
+
},
|
143
|
+
"Vue v-on Shortcut Directive": {
|
144
|
+
"body": ["@click=\"${1:handler}(${2:arg}, $event)\""],
|
145
|
+
"description": "v-on click handler with arguments",
|
146
|
+
"prefix": "von",
|
147
|
+
"scope": "vue-html"
|
148
|
+
},
|
149
|
+
"uAccordion": {
|
150
|
+
"body": [
|
151
|
+
"<view class=\"uni-list\">",
|
152
|
+
"\t<view class=\"uni-list-cell uni-collapse\" v-for=\"(item,index) in list$1\" :key=\"index\">",
|
153
|
+
"\t\t<view class=\"uni-list-cell-navigate uni-navigate-bottom\" :class=\"item.show ? 'uni-active' : ''\" @click=\"trigerCollapse$0(index)\">",
|
154
|
+
"\t\t\t折叠面板{{index}}",
|
155
|
+
"\t\t</view>",
|
156
|
+
"\t\t<view class=\"uni-collapse-content\" :class=\"item.show ? 'uni-active' : ''\">",
|
157
|
+
"\t\t\t<view class=\"page-pd\">",
|
158
|
+
"\t\t\t\t<view class=\"uni-h1\">hello uni-app</view>",
|
159
|
+
"\t\t\t\t<view class=\"uni-h2\">hello uni-app</view>",
|
160
|
+
"\t\t\t\t<view class=\"uni-h3\">hello uni-app</view>",
|
161
|
+
"\t\t\t</view>",
|
162
|
+
"\t\t</view>",
|
163
|
+
"\t</view>",
|
164
|
+
"</view>"
|
165
|
+
],
|
166
|
+
"prefix": "uaccordion",
|
167
|
+
"project": "uni-app",
|
168
|
+
"scope": "vue-html"
|
169
|
+
},
|
170
|
+
"uAudio": {
|
171
|
+
"body": [
|
172
|
+
"<audio :src=\"$1\" :poster=\"$0\" :name=\"$2\" :author=\"$3\" :action=\"$4\" controls></audio>"
|
173
|
+
],
|
174
|
+
"prefix": "uaudio",
|
175
|
+
"project": "uni-app",
|
176
|
+
"scope": "vue-html"
|
177
|
+
},
|
178
|
+
"uBadge": {
|
179
|
+
"body": ["<uni-badge text=\"$1\" type=\"$2\"></uni-badge>"],
|
180
|
+
"prefix": "ubadge",
|
181
|
+
"project": "uni-app",
|
182
|
+
"scope": "vue-html"
|
183
|
+
},
|
184
|
+
"uButton": {
|
185
|
+
"body": ["<button type=\"primary\">$1</button>"],
|
186
|
+
"prefix": "ubutton",
|
187
|
+
"project": "uni-app",
|
188
|
+
"scope": "vue-html"
|
189
|
+
},
|
190
|
+
"uCalendar": {
|
191
|
+
"body": [
|
192
|
+
"<uni-calendar lunar=\"\" @change=\"$1\" @to-click=\"$2\"></uni-calendar>"
|
193
|
+
],
|
194
|
+
"prefix": "ucalendar",
|
195
|
+
"project": "uni-app",
|
196
|
+
"scope": "vue-html"
|
197
|
+
},
|
198
|
+
"uCard": {
|
199
|
+
"body": [
|
200
|
+
"<uni-card title=\"标题文字\" thumbnail=\"$1\" extra=\"额外信息$2\" note=\"Tips$3\">",
|
201
|
+
"\t内容主体,可自定义内容及样式$4",
|
202
|
+
"</uni-card>"
|
203
|
+
],
|
204
|
+
"prefix": "ucard",
|
205
|
+
"project": "uni-app",
|
206
|
+
"scope": "vue-html"
|
207
|
+
},
|
208
|
+
"uCheckbox": {
|
209
|
+
"body": [
|
210
|
+
"<label class=\"checkbox\">",
|
211
|
+
"\t<checkbox value=\"$1\" checked= />$0",
|
212
|
+
"</label>"
|
213
|
+
],
|
214
|
+
"prefix": "ucheckbox",
|
215
|
+
"project": "uni-app",
|
216
|
+
"scope": "vue-html"
|
217
|
+
},
|
218
|
+
"uCollapse": {
|
219
|
+
"body": [
|
220
|
+
"<uni-collapse @change=\"$1\">",
|
221
|
+
"\t<uni-collapse-item title=\"$2\">",
|
222
|
+
"\t\t内容$3",
|
223
|
+
"\t</uni-collapse-item>",
|
224
|
+
"</uni-collapse>"
|
225
|
+
],
|
226
|
+
"prefix": "uCollapse",
|
227
|
+
"project": "uni-app",
|
228
|
+
"scope": "vue-html"
|
229
|
+
},
|
230
|
+
"uCountDown": {
|
231
|
+
"body": [
|
232
|
+
"<uni-countdown font-color=\"$1\" bgr-color=\"$2\" timer=\"$3\"></uni-countdown>"
|
233
|
+
],
|
234
|
+
"prefix": "ucountdown",
|
235
|
+
"project": "uni-app",
|
236
|
+
"scope": "vue-html"
|
237
|
+
},
|
238
|
+
"uDrawer": {
|
239
|
+
"body": [
|
240
|
+
"<uni-drawer :visible=\"$1\">",
|
241
|
+
"\t<view style=\"padding:30upx;\">",
|
242
|
+
"\t\t$2",
|
243
|
+
"\t</view>",
|
244
|
+
"</uni-drawer>"
|
245
|
+
],
|
246
|
+
"prefix": "uDrawer",
|
247
|
+
"project": "uni-app",
|
248
|
+
"scope": "vue-html"
|
249
|
+
},
|
250
|
+
"uEditor": {
|
251
|
+
"body": ["<editor placeholder=\"$1\"></editor>"],
|
252
|
+
"prefix": "uEditor",
|
253
|
+
"project": "uni-app",
|
254
|
+
"scope": "vue-html"
|
255
|
+
},
|
256
|
+
"uForm": {
|
257
|
+
"body": [
|
258
|
+
"<form @submit=\"formSubmit\" @reset=\"formReset\">",
|
259
|
+
"\t<view class=\"section section_gap\">",
|
260
|
+
"\t\t<view class=\"section__title\">switch$1</view>",
|
261
|
+
"\t\t<switch name=\"switch\" />",
|
262
|
+
"\t</view>",
|
263
|
+
"\t<view class=\"section section_gap\">",
|
264
|
+
"\t\t<view class=\"section__title\">slider</view>",
|
265
|
+
"\t\t<slider name=\"slider\" show-value></slider>",
|
266
|
+
"\t</view>",
|
267
|
+
"\t<view class=\"section\">",
|
268
|
+
"\t\t<view class=\"section__title\">input</view>",
|
269
|
+
"\t\t<input name=\"input\" placeholder=\"please input here\" />",
|
270
|
+
"\t</view>",
|
271
|
+
"\t<view class=\"section section_gap\">",
|
272
|
+
"\t\t<view class=\"section__title\">radio</view>",
|
273
|
+
"\t\t<radio-group name=\"radio-group\">",
|
274
|
+
"\t\t<label>",
|
275
|
+
"\t\t\t<radio value=\"radio1\" />radio1</label>",
|
276
|
+
"\t\t<label>",
|
277
|
+
"\t\t\t<radio value=\"radio2\" />radio2</label>",
|
278
|
+
"\t\t</radio-group>",
|
279
|
+
"\t</view>",
|
280
|
+
"\t<view class=\"section section_gap\">",
|
281
|
+
"\t\t<view class=\"section__title\">checkbox</view>",
|
282
|
+
"\t\t<checkbox-group name=\"checkbox\">",
|
283
|
+
"\t\t\t<label>",
|
284
|
+
"\t\t\t\t<checkbox value=\"checkbox1\" />checkbox1</label>",
|
285
|
+
"\t\t\t<label>",
|
286
|
+
"\t\t\t\t<checkbox value=\"checkbox2\" />checkbox2</label>",
|
287
|
+
"\t\t</checkbox-group>",
|
288
|
+
"\t</view>",
|
289
|
+
"\t<view class=\"btn-area\">",
|
290
|
+
"\t\t<button formType=\"submit\">Submit</button>",
|
291
|
+
"\t\t<button formType=\"reset\">Reset</button>",
|
292
|
+
"\t</view>",
|
293
|
+
"</form>"
|
294
|
+
],
|
295
|
+
"prefix": "uform",
|
296
|
+
"project": "uni-app",
|
297
|
+
"scope": "vue-html"
|
298
|
+
},
|
299
|
+
"uGrid": {
|
300
|
+
"body": ["<uni-grid :data=\"$1\"></uni-grid>"],
|
301
|
+
"prefix": "ugrid",
|
302
|
+
"project": "uni-app",
|
303
|
+
"scope": "vue-html"
|
304
|
+
},
|
305
|
+
"uIcon": {
|
306
|
+
"body": ["<uni-icon type=\"$1\"></uni-icon>"],
|
307
|
+
"prefix": "uicon",
|
308
|
+
"project": "uni-app",
|
309
|
+
"scope": "vue-html"
|
310
|
+
},
|
311
|
+
"uImage": {
|
312
|
+
"body": ["<image src=\"$1\" mode=\"$2\">$0</image>"],
|
313
|
+
"prefix": "uimage",
|
314
|
+
"project": "uni-app",
|
315
|
+
"scope": "vue-html"
|
316
|
+
},
|
317
|
+
"uInput": {
|
318
|
+
"body": ["<input type=\"text$1\" value=\"$0\" />"],
|
319
|
+
"prefix": "uinput",
|
320
|
+
"project": "uni-app",
|
321
|
+
"scope": "vue-html"
|
322
|
+
},
|
323
|
+
"uList": {
|
324
|
+
"body": [
|
325
|
+
"<uni-list>",
|
326
|
+
"\t<uni-list-item title=\"$1\" note=\"$2\"></uni-list-item>",
|
327
|
+
"\t<uni-list-item title=\"$3\" note=\"$4\"></uni-list-item>",
|
328
|
+
"</uni-list>"
|
329
|
+
],
|
330
|
+
"prefix": "ulist",
|
331
|
+
"project": "uni-app",
|
332
|
+
"scope": "vue-html"
|
333
|
+
},
|
334
|
+
"uListMedia": {
|
335
|
+
"body": [
|
336
|
+
"<view class=\"uni-list\">",
|
337
|
+
"\t<view class=\"uni-list-cell\" hover-class=\"uni-list-cell-hover\" v-for=\"(item,index) in list$1\" :key=\"index\">",
|
338
|
+
"\t\t<view class=\"uni-media-list\">",
|
339
|
+
"\t\t\t<image class=\"uni-media-list-logo\" :src=\"item.img$2\"></image>",
|
340
|
+
"\t\t\t<view class=\"uni-media-list-body\">",
|
341
|
+
"\t\t\t\t<view class=\"uni-media-list-text-top\">{{item.title$3}}</view>",
|
342
|
+
"\t\t\t\t<view class=\"uni-media-list-text-bottom uni-ellipsis\">{{item.content$4}}</view>",
|
343
|
+
"\t\t\t</view>",
|
344
|
+
"\t\t</view>",
|
345
|
+
"\t</view>",
|
346
|
+
"</view>"
|
347
|
+
],
|
348
|
+
"prefix": "ulistmedia",
|
349
|
+
"project": "uni-app",
|
350
|
+
"scope": "vue-html"
|
351
|
+
},
|
352
|
+
"uLoadMore": {
|
353
|
+
"body": [
|
354
|
+
"<uni-load-more :loadingType=\"$1\" :contentText=\"$2\"></uni-load-more>"
|
355
|
+
],
|
356
|
+
"prefix": "uloadmore",
|
357
|
+
"project": "uni-app",
|
358
|
+
"scope": "vue-html"
|
359
|
+
},
|
360
|
+
"uMap": {
|
361
|
+
"body": ["<map :latitude=\"$1\" :longitude=\"$0\"></map>"],
|
362
|
+
"prefix": "umap",
|
363
|
+
"project": "uni-app",
|
364
|
+
"scope": "vue-html"
|
365
|
+
},
|
366
|
+
"uNavBar": {
|
367
|
+
"body": [
|
368
|
+
"<uni-nav-bar left-icon=\"back\" left-text=\"返回\" right-text=\"菜单\" title=\"标题$1\"></uni-nav-bar>"
|
369
|
+
],
|
370
|
+
"prefix": "unavbar",
|
371
|
+
"project": "uni-app",
|
372
|
+
"scope": "vue-html"
|
373
|
+
},
|
374
|
+
"uNavigator": {
|
375
|
+
"body": ["<navigator url=\"$1\">$0</navigator>"],
|
376
|
+
"prefix": "unavigator",
|
377
|
+
"project": "uni-app",
|
378
|
+
"scope": "vue-html"
|
379
|
+
},
|
380
|
+
"uNoticeBar": {
|
381
|
+
"body": ["<uni-notice-bar single=\"$1\" text=\"$2\"></uni-notice-bar>"],
|
382
|
+
"prefix": "uNoticeBar",
|
383
|
+
"project": "uni-app",
|
384
|
+
"scope": "vue-html"
|
385
|
+
},
|
386
|
+
"uNumberBox": {
|
387
|
+
"body": ["<uni-number-box @change=\"$1\"></uni-number-box>"],
|
388
|
+
"prefix": "unumberbox",
|
389
|
+
"project": "uni-app",
|
390
|
+
"scope": "vue-html"
|
391
|
+
},
|
392
|
+
"uPagination": {
|
393
|
+
"body": [
|
394
|
+
"<uni-pagination title=\"$1\" show-icon=\"$2\" total=\"$3\" current=\"$4\"></uni-pagination>"
|
395
|
+
],
|
396
|
+
"prefix": "uPagination",
|
397
|
+
"project": "uni-app",
|
398
|
+
"scope": "vue-html"
|
399
|
+
},
|
400
|
+
"uPicker": {
|
401
|
+
"body": [
|
402
|
+
"<picker mode=\"$1\" :range=\"$2\" @change=\"$3\">",
|
403
|
+
"\t<view>picker组件</view>",
|
404
|
+
"</picker>"
|
405
|
+
],
|
406
|
+
"prefix": "upicker",
|
407
|
+
"project": "uni-app",
|
408
|
+
"scope": "vue-html"
|
409
|
+
},
|
410
|
+
"uPickerView": {
|
411
|
+
"body": [
|
412
|
+
"<picker-view indicator-style=\"height: 50px;\" :value=\"value$1\" @change=\"bindChange\">",
|
413
|
+
"\t<picker-view-column>",
|
414
|
+
"\t\t$0",
|
415
|
+
"\t</picker-view-column>",
|
416
|
+
"\t<picker-view-column>",
|
417
|
+
"\t\t$2",
|
418
|
+
"\t</picker-view-column>",
|
419
|
+
"\t<picker-view-column>",
|
420
|
+
"\t\t",
|
421
|
+
"\t</picker-view-column>",
|
422
|
+
"</picker-view>"
|
423
|
+
],
|
424
|
+
"prefix": "upickerview",
|
425
|
+
"project": "uni-app",
|
426
|
+
"scope": "vue-html"
|
427
|
+
},
|
428
|
+
"uPopup": {
|
429
|
+
"body": [
|
430
|
+
"<uni-popup msg=\"$1\" :show=\"true$2\" type=\"middle$3\"></uni-popup>"
|
431
|
+
],
|
432
|
+
"prefix": "upopup",
|
433
|
+
"project": "uni-app",
|
434
|
+
"scope": "vue-html"
|
435
|
+
},
|
436
|
+
"uProductList": {
|
437
|
+
"body": [
|
438
|
+
"<view class=\"uni-product-list\">",
|
439
|
+
"\t<view class=\"uni-product\" v-for=\"(product,index) in productList$1\" :key=\"index\">",
|
440
|
+
"\t\t<view class=\"image-view\">",
|
441
|
+
"\t\t\t<image v-if=\"renderImage\" class=\"uni-product-image\" :src=\"product.image\"></image>",
|
442
|
+
"\t\t</view>",
|
443
|
+
"\t\t<view class=\"uni-product-title\">{{product.title}}</view>",
|
444
|
+
"\t\t<view class=\"uni-product-price\">",
|
445
|
+
"\t\t\t<text class=\"uni-product-price-favour\">¥{{product.originalPrice}}</text>",
|
446
|
+
"\t\t\t<text class=\"uni-product-price-original\">¥{{product.favourPrice}}</text>",
|
447
|
+
"\t\t\t<text class=\"uni-product-tip\">{{product.tip}}</text>",
|
448
|
+
"\t\t</view>",
|
449
|
+
"\t</view>",
|
450
|
+
"</view>"
|
451
|
+
],
|
452
|
+
"prefix": "uproductlist",
|
453
|
+
"project": "uni-app",
|
454
|
+
"scope": "vue-html"
|
455
|
+
},
|
456
|
+
"uProgress": {
|
457
|
+
"body": [" <progress percent=\"$1\" show-info$0 />"],
|
458
|
+
"prefix": "uprogress",
|
459
|
+
"project": "uni-app",
|
460
|
+
"scope": "vue-html"
|
461
|
+
},
|
462
|
+
"uRadio": {
|
463
|
+
"body": [
|
464
|
+
"<label class=\"radio\">",
|
465
|
+
"\t<radio value=\"$1\" checked= />$0",
|
466
|
+
"</label>"
|
467
|
+
],
|
468
|
+
"prefix": "uradio",
|
469
|
+
"project": "uni-app",
|
470
|
+
"scope": "vue-html"
|
471
|
+
},
|
472
|
+
"uRate": {
|
473
|
+
"body": ["<uni-rate value=\"$1\"></uni-rate>"],
|
474
|
+
"prefix": "uRate",
|
475
|
+
"project": "uni-app",
|
476
|
+
"scope": "vue-html"
|
477
|
+
},
|
478
|
+
"uRichText": {
|
479
|
+
"body": ["<rich-text :nodes=\"$1\"></rich-text>"],
|
480
|
+
"prefix": "urichtext",
|
481
|
+
"project": "uni-app",
|
482
|
+
"scope": "vue-html"
|
483
|
+
},
|
484
|
+
"uScrollView": {
|
485
|
+
"body": [
|
486
|
+
"<scroll-view scroll-y$1>",
|
487
|
+
"\t<view>$0</view>",
|
488
|
+
"\t<view></view>",
|
489
|
+
"\t<view></view>",
|
490
|
+
"\t<view></view>",
|
491
|
+
"</scroll-view>"
|
492
|
+
],
|
493
|
+
"prefix": "uscrollview",
|
494
|
+
"project": "uni-app",
|
495
|
+
"scope": "vue-html"
|
496
|
+
},
|
497
|
+
"uSegmentedControl": {
|
498
|
+
"body": [
|
499
|
+
"<uni-segmented-control :current=\"current$1\" :values=\"$0\" @clickItem=\"$2\"></uni-segmented-control>",
|
500
|
+
"<view class=\"content\">",
|
501
|
+
"\t<view v-show=\"current === 0\">",
|
502
|
+
"\t\t选项卡1的内容",
|
503
|
+
"\t</view>",
|
504
|
+
"\t<view v-show=\"current === 1\">",
|
505
|
+
"\t\t选项卡2的内容",
|
506
|
+
"\t</view>",
|
507
|
+
"\t<view v-show=\"current === 2\">",
|
508
|
+
"\t\t选项卡3的内容",
|
509
|
+
"\t</view>",
|
510
|
+
"</view>"
|
511
|
+
],
|
512
|
+
"prefix": "usegmentedcontrol",
|
513
|
+
"project": "uni-app",
|
514
|
+
"scope": "vue-html"
|
515
|
+
},
|
516
|
+
"uSlider": {
|
517
|
+
"body": ["<slider @change=\"$1\" show-value$0/>"],
|
518
|
+
"prefix": "uslider",
|
519
|
+
"project": "uni-app",
|
520
|
+
"scope": "vue-html"
|
521
|
+
},
|
522
|
+
"uSteps": {
|
523
|
+
"body": ["<uni-steps :options=\"$1\" :active=\"0$2\"></uni-steps>"],
|
524
|
+
"prefix": "usteps",
|
525
|
+
"project": "uni-app",
|
526
|
+
"scope": "vue-html"
|
527
|
+
},
|
528
|
+
"uSwipeAction": {
|
529
|
+
"body": [
|
530
|
+
"<uni-swipe-action :options=\"$1\">",
|
531
|
+
"\t$2",
|
532
|
+
"</uni-swipe-action>"
|
533
|
+
],
|
534
|
+
"prefix": "uSwipeAction",
|
535
|
+
"project": "uni-app",
|
536
|
+
"scope": "vue-html"
|
537
|
+
},
|
538
|
+
"uSwiper": {
|
539
|
+
"body": [
|
540
|
+
"<swiper :indicator-dots=\"true\" :autoplay=\"true\" :interval=\"3000\" :duration=\"1000\">",
|
541
|
+
"\t<swiper-item>",
|
542
|
+
"\t\t<view class=\"swiper-item\">$1</view>",
|
543
|
+
"\t</swiper-item>",
|
544
|
+
"\t<swiper-item>",
|
545
|
+
"\t\t<view class=\"swiper-item\">$2</view>",
|
546
|
+
"\t</swiper-item>",
|
547
|
+
"\t<swiper-item>",
|
548
|
+
"\t\t<view class=\"swiper-item\">$0</view>",
|
549
|
+
"\t</swiper-item>",
|
550
|
+
"</swiper>"
|
551
|
+
],
|
552
|
+
"prefix": "uswiper",
|
553
|
+
"project": "uni-app",
|
554
|
+
"scope": "vue-html"
|
555
|
+
},
|
556
|
+
"uSwipermsg": {
|
557
|
+
"body": [
|
558
|
+
"<view class=\"uni-swiper-msg\">",
|
559
|
+
"\t<view class=\"uni-swiper-msg-icon\">",
|
560
|
+
"\t\t<image src=\"$1\" mode=\"widthFix\"></image>",
|
561
|
+
"\t</view>",
|
562
|
+
"\t<swiper vertical=\"true\" autoplay=\"true\" circular=\"true\" interval=\"3000\">",
|
563
|
+
"\t\t<swiper-item>",
|
564
|
+
"\t\t\t<navigator>消息1</navigator>",
|
565
|
+
"\t\t</swiper-item>",
|
566
|
+
"\t\t<swiper-item>",
|
567
|
+
"\t\t\t<navigator>消息2</navigator>",
|
568
|
+
"\t\t</swiper-item>",
|
569
|
+
"\t\t<swiper-item>",
|
570
|
+
"\t\t\t<navigator>消息3</navigator>",
|
571
|
+
"\t\t</swiper-item>",
|
572
|
+
"\t</swiper>",
|
573
|
+
"</view>"
|
574
|
+
],
|
575
|
+
"prefix": "uswipermsg",
|
576
|
+
"project": "uni-app",
|
577
|
+
"scope": "vue-html"
|
578
|
+
},
|
579
|
+
"uSwitch": {
|
580
|
+
"body": ["<switch checked @change=\"$1\" />"],
|
581
|
+
"prefix": "uswitch",
|
582
|
+
"project": "uni-app",
|
583
|
+
"scope": "vue-html"
|
584
|
+
},
|
585
|
+
"uTag": {
|
586
|
+
"body": ["<uni-tag text=\"$1\" type=\"$2\"></uni-tag>"],
|
587
|
+
"prefix": "utag",
|
588
|
+
"project": "uni-app",
|
589
|
+
"scope": "vue-html"
|
590
|
+
},
|
591
|
+
"uTemplate": {
|
592
|
+
"body": ["<template>", "\t<view>$0</view>", "</template>"],
|
593
|
+
"prefix": "utemplate",
|
594
|
+
"project": "uni-app",
|
595
|
+
"scope": "vue-html"
|
596
|
+
},
|
597
|
+
"uText": {
|
598
|
+
"body": ["<text>$0</text>"],
|
599
|
+
"prefix": "utext",
|
600
|
+
"project": "uni-app",
|
601
|
+
"scope": "vue-html"
|
602
|
+
},
|
603
|
+
"uTextarea": {
|
604
|
+
"body": ["<textarea value=\"$1\" placeholder=\"$0\" />"],
|
605
|
+
"prefix": "utextarea",
|
606
|
+
"project": "uni-app",
|
607
|
+
"scope": "vue-html"
|
608
|
+
},
|
609
|
+
"uTimeline": {
|
610
|
+
"body": [
|
611
|
+
"<view class=\"uni-timeline\">",
|
612
|
+
"\t<view class=\"uni-timeline-item uni-timeline-first-item\">",
|
613
|
+
"\t\t<view class=\"uni-timeline-item-keynode\">日期1$1</view>",
|
614
|
+
"\t\t<view class=\"uni-timeline-item-divider\"></view>",
|
615
|
+
"\t\t<view class=\"uni-timeline-item-content\">事件1</view>",
|
616
|
+
"\t</view>",
|
617
|
+
"\t<view class=\"uni-timeline-item\">",
|
618
|
+
"\t\t<view class=\"uni-timeline-item-keynode\">日期2</view>",
|
619
|
+
"\t\t<view class=\"uni-timeline-item-divider\"></view>",
|
620
|
+
"\t\t<view class=\"uni-timeline-item-content\">事件2</view>",
|
621
|
+
"\t</view>",
|
622
|
+
"\t<view class=\"uni-timeline-item uni-timeline-last-item\">",
|
623
|
+
"\t\t<view class=\"uni-timeline-item-keynode\">日期3</view>",
|
624
|
+
"\t\t<view class=\"uni-timeline-item-divider\"></view>",
|
625
|
+
"\t\t<view class=\"uni-timeline-item-content\">事件3</view>",
|
626
|
+
"\t</view>",
|
627
|
+
"</view>"
|
628
|
+
],
|
629
|
+
"prefix": "utimeline",
|
630
|
+
"project": "uni-app",
|
631
|
+
"scope": "vue-html"
|
632
|
+
},
|
633
|
+
"uVideo": {
|
634
|
+
"body": ["<video src=\"$1\" controls></video>"],
|
635
|
+
"prefix": "uvideo",
|
636
|
+
"project": "uni-app",
|
637
|
+
"scope": "vue-html"
|
638
|
+
},
|
639
|
+
"uView": {
|
640
|
+
"body": ["<view class=\"$1\">$0</view>"],
|
641
|
+
"prefix": "uview",
|
642
|
+
"project": "uni-app",
|
643
|
+
"scope": "vue-html"
|
644
|
+
},
|
645
|
+
"uWebView": {
|
646
|
+
"body": ["<web-view src=\"$1\"></web-view>"],
|
647
|
+
"prefix": "uwebview",
|
648
|
+
"project": "uni-app",
|
649
|
+
"scope": "vue-html"
|
650
|
+
},
|
651
|
+
"view for": {
|
652
|
+
"body": [
|
653
|
+
"<view v-for=\"(item,index) in ${1:dataList}\" :key=\"index\">",
|
654
|
+
"\t$0",
|
655
|
+
"</view>"
|
656
|
+
],
|
657
|
+
"description": "view带for循环",
|
658
|
+
"prefix": "viewfor",
|
659
|
+
"project": "uni-app",
|
660
|
+
"scope": "vue-html"
|
661
|
+
},
|
662
|
+
"view_class": {
|
663
|
+
"body": ["<view class=\"$1\">", "\t$0", "</view>"],
|
664
|
+
"prefix": "viewclass",
|
665
|
+
"scope": "vue-html",
|
666
|
+
"triggerAssist": true
|
667
|
+
}
|
668
|
+
}
|