|
@@ -0,0 +1,394 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page">
|
|
3
|
+ <div class="main" v-if="step === 1">
|
|
4
|
+ <div class="tit">注册</div>
|
|
5
|
+ <div class="inp-box">
|
|
6
|
+ <input
|
|
7
|
+ type="text"
|
|
8
|
+ name="mobile"
|
|
9
|
+ v-model="form.mobile"
|
|
10
|
+ placeholder="手机号码"
|
|
11
|
+ />
|
|
12
|
+ </div>
|
|
13
|
+
|
|
14
|
+ <div class="inp-box code-box">
|
|
15
|
+ <input
|
|
16
|
+ type="text"
|
|
17
|
+ name="smsCode"
|
|
18
|
+ v-model="form.smsCode"
|
|
19
|
+ placeholder="验证码"
|
|
20
|
+ />
|
|
21
|
+ <span
|
|
22
|
+ class="code-btn"
|
|
23
|
+ :class="{ dis: timeing }"
|
|
24
|
+ @click="getCode()"
|
|
25
|
+ >{{ codeStr }}</span
|
|
26
|
+ >
|
|
27
|
+ </div>
|
|
28
|
+
|
|
29
|
+ <div class="inp-box">
|
|
30
|
+ <input
|
|
31
|
+ type="password"
|
|
32
|
+ name="password"
|
|
33
|
+ v-model="form.password"
|
|
34
|
+ placeholder="请输入密码"
|
|
35
|
+ />
|
|
36
|
+ </div>
|
|
37
|
+ <div class="inp-box">
|
|
38
|
+ <input
|
|
39
|
+ type="password"
|
|
40
|
+ name="password2"
|
|
41
|
+ v-model="form.password2"
|
|
42
|
+ placeholder="确认密码"
|
|
43
|
+ />
|
|
44
|
+ </div>
|
|
45
|
+ <button class="btn" @click="submit">注册</button>
|
|
46
|
+ </div>
|
|
47
|
+ <div class="main" v-if="step === 2">
|
|
48
|
+ <div class="tit">填写区区团购团长号</div>
|
|
49
|
+ <div class="inp-box">
|
|
50
|
+ <input
|
|
51
|
+ type="text"
|
|
52
|
+ name="teamNum"
|
|
53
|
+ v-model="form.teamNum"
|
|
54
|
+ placeholder="团长号:9000xxxxxx"
|
|
55
|
+ />
|
|
56
|
+ </div>
|
|
57
|
+ <button class="btn" @click="saveTeamNum">下一步</button>
|
|
58
|
+ <div class="team-num-des">
|
|
59
|
+ <h1 class="tit">在哪里看京东团长号?</h1>
|
|
60
|
+ <p class="text">
|
|
61
|
+ 在京东店长版后台,个人中心,点击头像进去就可以看到
|
|
62
|
+ </p>
|
|
63
|
+ <div class="video">
|
|
64
|
+ <video src="" poster=""></video>
|
|
65
|
+ </div>
|
|
66
|
+
|
|
67
|
+ <p class="text">
|
|
68
|
+ 如有问题,添加客服微信:jingzhunwlyx,或长按下方二维码添加客服咨询
|
|
69
|
+ </p>
|
|
70
|
+ <div class="img">
|
|
71
|
+ <my-image
|
|
72
|
+ mode="widthFix"
|
|
73
|
+ @click="viewImg('/static/icon/select2.png')"
|
|
74
|
+ src="/static/icon/select2.png"
|
|
75
|
+ ></my-image>
|
|
76
|
+ </div>
|
|
77
|
+ </div>
|
|
78
|
+ </div>
|
|
79
|
+ <div class="main" v-if="step === 3">
|
|
80
|
+ <div class="tit">添加助理微信</div>
|
|
81
|
+ <ul class="add-assistant">
|
|
82
|
+ <li>
|
|
83
|
+ <div class="step">第一步:</div>
|
|
84
|
+ <div class="con">
|
|
85
|
+ <div>
|
|
86
|
+ 助理微信:<span class="wechat">wx150123156</span>
|
|
87
|
+ <span class="copy" @click="copy('xxx')"
|
|
88
|
+ >点击复制</span
|
|
89
|
+ >
|
|
90
|
+ </div>
|
|
91
|
+ <my-image
|
|
92
|
+ class="wechat-img"
|
|
93
|
+ mode="widthFix"
|
|
94
|
+ @click="viewImg('/static/icon/select2.png')"
|
|
95
|
+ src="/static/icon/select2.png"
|
|
96
|
+ ></my-image>
|
|
97
|
+ </div>
|
|
98
|
+ </li>
|
|
99
|
+ <li>
|
|
100
|
+ <div class="step">第二步:</div>
|
|
101
|
+ <div class="con">
|
|
102
|
+ <div>在群里发一条消息@群主里消息</div>
|
|
103
|
+ </div>
|
|
104
|
+ </li>
|
|
105
|
+ <li>
|
|
106
|
+ <div class="step">第三步:</div>
|
|
107
|
+ <div class="con">
|
|
108
|
+ <div>发送团长好到群内</div>
|
|
109
|
+ </div>
|
|
110
|
+ </li>
|
|
111
|
+ </ul>
|
|
112
|
+ <button class="btn" @click="saveOk">完成</button>
|
|
113
|
+ </div>
|
|
114
|
+ </div>
|
|
115
|
+</template>
|
|
116
|
+
|
|
117
|
+<script>
|
|
118
|
+import MyImage from "../../components/image/index";
|
|
119
|
+
|
|
120
|
+export default {
|
|
121
|
+ name: "",
|
|
122
|
+ components: { MyImage },
|
|
123
|
+ // 数据
|
|
124
|
+ data() {
|
|
125
|
+ return {
|
|
126
|
+ step: 1,
|
|
127
|
+ form: {
|
|
128
|
+ mobile: "",
|
|
129
|
+ smsCode: "",
|
|
130
|
+ password: "",
|
|
131
|
+ password2: "",
|
|
132
|
+ teamNum: "",
|
|
133
|
+ fromPlatform:0
|
|
134
|
+ },
|
|
135
|
+ timeing: false,
|
|
136
|
+ codeStr: "发送验证码",
|
|
137
|
+ };
|
|
138
|
+ },
|
|
139
|
+
|
|
140
|
+ onLoad() {
|
|
141
|
+ uni.hideLoading();
|
|
142
|
+ },
|
|
143
|
+
|
|
144
|
+ onShow() {},
|
|
145
|
+
|
|
146
|
+ // 函数
|
|
147
|
+ methods: {
|
|
148
|
+ getCode() {
|
|
149
|
+ if (this.timeing) {
|
|
150
|
+ return;
|
|
151
|
+ }
|
|
152
|
+ let phoneReg = /^[1][1-9][0-9]{9}$/;
|
|
153
|
+ if (!this.form.mobile) {
|
|
154
|
+ return this.fn.showToast("请输入手机号");
|
|
155
|
+ }
|
|
156
|
+ if (!phoneReg.test(this.form.mobile)) {
|
|
157
|
+ return this.fn.showToast("手机号格式不正确");
|
|
158
|
+ }
|
|
159
|
+ // this.sendCode();
|
|
160
|
+ this.downTime();
|
|
161
|
+ },
|
|
162
|
+ sendCode() {
|
|
163
|
+ this.api.get("").then((res) => {});
|
|
164
|
+ },
|
|
165
|
+ downTime() {
|
|
166
|
+ this.timeing = true;
|
|
167
|
+ let t = 60;
|
|
168
|
+ this.codeStr = t + "s重新获取";
|
|
169
|
+ let timer = setInterval(() => {
|
|
170
|
+ t--;
|
|
171
|
+ if (t === 0) {
|
|
172
|
+ clearInterval(timer);
|
|
173
|
+ this.codeStr = "发送验证码";
|
|
174
|
+ this.timeing = false;
|
|
175
|
+ } else {
|
|
176
|
+ this.codeStr = t + "s重新获取";
|
|
177
|
+ }
|
|
178
|
+ }, 1000);
|
|
179
|
+ },
|
|
180
|
+
|
|
181
|
+ submit() {
|
|
182
|
+ console.log(this.mobile);
|
|
183
|
+ if (!this.form.mobile) {
|
|
184
|
+ this.fn.showToast(`请输入手机号码`);
|
|
185
|
+ return;
|
|
186
|
+ }
|
|
187
|
+ if (!this.form.code) {
|
|
188
|
+ this.fn.showToast(`请输入验证码`);
|
|
189
|
+ return;
|
|
190
|
+ }
|
|
191
|
+
|
|
192
|
+ if (!this.form.password) {
|
|
193
|
+ this.fn.showToast(`请输入密码`);
|
|
194
|
+ return;
|
|
195
|
+ }
|
|
196
|
+
|
|
197
|
+ if (this.form.password.length < 6) {
|
|
198
|
+ this.fn.showToast(`密码最少6位`);
|
|
199
|
+ return;
|
|
200
|
+ }
|
|
201
|
+
|
|
202
|
+ if (!this.form.password2) {
|
|
203
|
+ this.fn.showToast(`请输入确认密码`);
|
|
204
|
+ return;
|
|
205
|
+ }
|
|
206
|
+
|
|
207
|
+ if (this.form.password2 !== this.form.password) {
|
|
208
|
+ this.fn.showToast(`两次密码不一致`);
|
|
209
|
+ return;
|
|
210
|
+ }
|
|
211
|
+
|
|
212
|
+ // uni.showLoading({
|
|
213
|
+ // title: "提交中",
|
|
214
|
+ // });
|
|
215
|
+ this.step = 2;
|
|
216
|
+ console.log(this.form);
|
|
217
|
+ },
|
|
218
|
+
|
|
219
|
+ saveTeamNum() {
|
|
220
|
+ if (!this.form.teamNum) {
|
|
221
|
+ return this.fn.showToast(`请输入团长号`);
|
|
222
|
+ }
|
|
223
|
+ this.step = 3;
|
|
224
|
+ },
|
|
225
|
+
|
|
226
|
+ viewImg(url) {
|
|
227
|
+ uni.previewImage({
|
|
228
|
+ urls: [url],
|
|
229
|
+ });
|
|
230
|
+ },
|
|
231
|
+
|
|
232
|
+ copy(val) {
|
|
233
|
+ const self = this;
|
|
234
|
+
|
|
235
|
+ uni.setClipboardData({
|
|
236
|
+ data: val,
|
|
237
|
+ success: () => {
|
|
238
|
+ self.fn.showToast("复制成功");
|
|
239
|
+ },
|
|
240
|
+ });
|
|
241
|
+ },
|
|
242
|
+
|
|
243
|
+ saveOk() {
|
|
244
|
+ // self.fn.showToast("注册成功");
|
|
245
|
+ this.fn.showModal({
|
|
246
|
+ title: "失败",
|
|
247
|
+ content:
|
|
248
|
+ "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
|
|
249
|
+ showCancel: false,
|
|
250
|
+ });
|
|
251
|
+ },
|
|
252
|
+ },
|
|
253
|
+
|
|
254
|
+ // 数据计算
|
|
255
|
+ computed: {},
|
|
256
|
+
|
|
257
|
+ // 数据监听
|
|
258
|
+ watch: {},
|
|
259
|
+};
|
|
260
|
+</script>
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+<style lang="scss" scoped>
|
|
264
|
+.page {
|
|
265
|
+ height: 100%;
|
|
266
|
+ background-color: #fff;
|
|
267
|
+}
|
|
268
|
+.main {
|
|
269
|
+ padding-top: px(120);
|
|
270
|
+ padding-left: px(40);
|
|
271
|
+ padding-right: px(40);
|
|
272
|
+}
|
|
273
|
+.tit {
|
|
274
|
+ font-size: px(50);
|
|
275
|
+ padding-bottom: px(100);
|
|
276
|
+ text-align: center;
|
|
277
|
+ padding-bottom: px(60);
|
|
278
|
+}
|
|
279
|
+.inp-box {
|
|
280
|
+ display: flex;
|
|
281
|
+ justify-content: space-between;
|
|
282
|
+ align-items: center;
|
|
283
|
+ border-bottom: 1px solid #c3c1c2;
|
|
284
|
+ padding: px(30) 0;
|
|
285
|
+ margin-bottom: px(30);
|
|
286
|
+}
|
|
287
|
+.inp-box span {
|
|
288
|
+ font-size: px(32);
|
|
289
|
+ color: rgb(0, 188, 38);
|
|
290
|
+ border-radius: px(15);
|
|
291
|
+ border: 1px solid rgb(0, 188, 38);
|
|
292
|
+ width: px(230);
|
|
293
|
+ height: px(80);
|
|
294
|
+ text-align: center;
|
|
295
|
+ line-height: px(80);
|
|
296
|
+ flex-shrink: 0;
|
|
297
|
+ margin-left: px(30);
|
|
298
|
+}
|
|
299
|
+.inp-box input {
|
|
300
|
+ width: 100%;
|
|
301
|
+}
|
|
302
|
+.inp-box .dis {
|
|
303
|
+ color: #999;
|
|
304
|
+ border-color: #999;
|
|
305
|
+ pointer-events: none;
|
|
306
|
+}
|
|
307
|
+.btn {
|
|
308
|
+ margin-top: px(120);
|
|
309
|
+ color: #fff;
|
|
310
|
+ background-color: rgb(0, 188, 38);
|
|
311
|
+ font-size: px(44);
|
|
312
|
+}
|
|
313
|
+.code-box {
|
|
314
|
+ display: flex;
|
|
315
|
+ justify-content: space-between;
|
|
316
|
+ align-items: center;
|
|
317
|
+ .code-btn {
|
|
318
|
+ width: px(220);
|
|
319
|
+ flex-shrink: 0;
|
|
320
|
+ font-size: px(40);
|
|
321
|
+ padding: 0 px(10);
|
|
322
|
+ border: none;
|
|
323
|
+ &.dis {
|
|
324
|
+ border-color: #f1f1f1;
|
|
325
|
+ color: #999;
|
|
326
|
+ }
|
|
327
|
+ }
|
|
328
|
+}
|
|
329
|
+.team-num-des {
|
|
330
|
+ padding: px(80) px(30);
|
|
331
|
+ text-align: center;
|
|
332
|
+ line-height: 1.5;
|
|
333
|
+ .tit {
|
|
334
|
+ font-size: px(48);
|
|
335
|
+ padding: px(10) 0;
|
|
336
|
+ }
|
|
337
|
+ .text {
|
|
338
|
+ font-size: px(44);
|
|
339
|
+ padding: px(15) 0;
|
|
340
|
+ }
|
|
341
|
+ video {
|
|
342
|
+ width: 80%;
|
|
343
|
+ display: block;
|
|
344
|
+ margin: 0 auto;
|
|
345
|
+ }
|
|
346
|
+ .img,
|
|
347
|
+ .video {
|
|
348
|
+ padding: px(20) 0;
|
|
349
|
+ }
|
|
350
|
+ /deep/ img {
|
|
351
|
+ width: 80%;
|
|
352
|
+ display: block;
|
|
353
|
+ margin: 0 auto;
|
|
354
|
+ }
|
|
355
|
+}
|
|
356
|
+.add-assistant {
|
|
357
|
+ border-top: 1px solid #f1f1f1;
|
|
358
|
+ li {
|
|
359
|
+ display: flex;
|
|
360
|
+ justify-content: space-between;
|
|
361
|
+ font-size: px(44);
|
|
362
|
+ padding: px(30);
|
|
363
|
+ border-bottom: 1px solid #f1f1f1;
|
|
364
|
+ .step {
|
|
365
|
+ width: px(200);
|
|
366
|
+ flex-shrink: 0;
|
|
367
|
+ }
|
|
368
|
+ .con {
|
|
369
|
+ width: 100%;
|
|
370
|
+ }
|
|
371
|
+ .wechat-img {
|
|
372
|
+ padding: px(10);
|
|
373
|
+ /deep/ img {
|
|
374
|
+ width: px(600);
|
|
375
|
+ }
|
|
376
|
+ }
|
|
377
|
+ }
|
|
378
|
+}
|
|
379
|
+.copy {
|
|
380
|
+ display: inline-block;
|
|
381
|
+ font-size: px(32);
|
|
382
|
+ line-height: px(44);
|
|
383
|
+ padding: 0 px(10);
|
|
384
|
+ border: 1px solid #d9d9d9;
|
|
385
|
+ color: #333;
|
|
386
|
+ background-color: #fafafa;
|
|
387
|
+ margin-left: px(20);
|
|
388
|
+ border-radius: px(5);
|
|
389
|
+ transform: translate(0, -1px);
|
|
390
|
+}
|
|
391
|
+.wechat {
|
|
392
|
+ color: #4395ff;
|
|
393
|
+}
|
|
394
|
+</style>
|