Browse Source

群助理

cr 4 years ago
parent
commit
a094966768
3 changed files with 513 additions and 15 deletions
  1. 6 0
      src/pages.json
  2. 114 15
      src/pages/assistant/index.vue
  3. 393 0
      src/pages/index/register.vue

+ 6 - 0
src/pages.json

@@ -316,6 +316,12 @@
316 316
             "style": {
317 317
                 "navigationBarTitleText": "群助理"
318 318
             }
319
+        },
320
+        {
321
+            "path": "pages/index/register",
322
+            "style": {
323
+                "navigationBarTitleText": "注册"
324
+            }
319 325
         }
320 326
     ]
321 327
 }

+ 114 - 15
src/pages/assistant/index.vue

@@ -1,30 +1,65 @@
1 1
 <template>
2 2
     <div class="page tabbar-page">
3
-11111
4
-        <wyg-bottom-tab ref="tabbar" :tabIndex="3" :tabListParent="tabList"></wyg-bottom-tab>
3
+        <div class="filter">
4
+            <ul class="date-list">
5
+                <li @click="tabClick(0)" :class="{ on: tabIndex === 0 }">
6
+                    我的群
7
+                </li>
8
+                <li @click="tabClick(1)" :class="{ on: tabIndex === 1 }">
9
+                    我的平台
10
+                </li>
11
+            </ul>
12
+        </div>
13
+        <ul class="group-list" v-if="tabIndex === 0">
14
+            <li class="item" @click="jump('')">
15
+                <div class="name">{{'群名称' | maxTit}}</div>
16
+                <my-image
17
+                    class="arrow"
18
+                    src="/static/common/arrows_left.png"
19
+                ></my-image>
20
+            </li>
21
+            <li class="item" @click="jump('')">
22
+                <div class="name">{{'群名称最多16字,大于16字隐藏.123456798' | maxTit}}</div>
23
+                <my-image
24
+                    class="arrow"
25
+                    src="/static/common/arrows_left.png"
26
+                ></my-image>
27
+            </li>
28
+        </ul>
29
+        <button class="add-group"  v-if="tabIndex === 0" @click="addGroup">添加群</button>
30
+        <wyg-bottom-tab
31
+            ref="tabbar"
32
+            :tabIndex="3"
33
+            :tabListParent="tabList"
34
+        ></wyg-bottom-tab>
5 35
     </div>
6 36
 </template>
7 37
 
8 38
 <script>
9 39
 import MyImage from "../../components/image/index";
10
-import wygBottomTab  from "../../components/wyg-bottom-tab/wyg-bottom-tab";
11
-import TAB_LIST from '../../static/wyg-bottom-tab/js/botoom-list.js'
40
+import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
41
+import TAB_LIST from "../../static/wyg-bottom-tab/js/botoom-list.js";
12 42
 
13 43
 export default {
14 44
     name: "",
15
-    components: { MyImage,wygBottomTab },
45
+    components: { MyImage, wygBottomTab },
16 46
     // 数据
17 47
     data() {
18 48
         return {
19
-            tabList:TAB_LIST
49
+            tabList: TAB_LIST,
50
+            tabIndex: 0, // 0 1
20 51
         };
21 52
     },
22 53
     filters: {
23
-
24
-    },
25
-    onLoad() {
26
-      
54
+        maxTit(v){
55
+            if(v && v.length>16){
56
+                return v.substr(0,16)+'...';
57
+            }else{
58
+                return v;
59
+            }
60
+        }
27 61
     },
62
+    onLoad() {},
28 63
     async onShow() {
29 64
         this.$refs.tabbar.setIndex(3);
30 65
     },
@@ -35,13 +70,16 @@ export default {
35 70
 
36 71
     // 函数
37 72
     methods: {
38
-     
73
+        tabClick(index) {
74
+            this.tabIndex = index;
75
+        },
76
+        addGroup(){
77
+
78
+        }
39 79
     },
40 80
 
41 81
     // 数据计算
42
-    computed: {
43
-      
44
-    },
82
+    computed: {},
45 83
 
46 84
     // 数据监听
47 85
     watch: {},
@@ -50,5 +88,66 @@ export default {
50 88
 
51 89
 
52 90
 <style lang="scss" scoped>
53
-
91
+.filter {
92
+    padding: px(30);
93
+}
94
+.date-list {
95
+    display: flex;
96
+    justify-content: space-between;
97
+    font-size: px(44);
98
+    text-align: center;
99
+    background-color: #fff;
100
+    li {
101
+        border: 1px solid #f1f1f1;
102
+        padding: px(20) 0;
103
+        width: 50%;
104
+        flex-shrink: 0;
105
+        &.on {
106
+            border-color: rgb(0, 188, 38);
107
+            color: rgb(0, 188, 38);
108
+        }
109
+        &:first-child {
110
+            border-radius: px(20) 0 0 px(20);
111
+        }
112
+        &:last-child {
113
+            border-radius: 0 px(20) px(20) 0;
114
+        }
115
+    }
116
+}
117
+.group-list {
118
+    border-top: 1px solid #f1f1f1;
119
+    background-color: #fff;
120
+    .item {
121
+        height: px(120);
122
+        padding: 0 px(35);
123
+        font-size: px(44);
124
+        display: flex;
125
+        justify-content: space-between;
126
+        align-items: center;
127
+        border-bottom: 1px solid #f1f1f1;
128
+    }
129
+    .arrow {
130
+        width: px(40);
131
+        height: px(40);
132
+        flex-shrink: 0;
133
+        transform: rotate(180deg);
134
+        /deep/ img {
135
+            width: px(40);
136
+            height: px(40);
137
+        }
138
+    }
139
+}
140
+.add-group {
141
+    position: fixed;
142
+    bottom: 3.5rem;
143
+    left: px(30);
144
+    right: px(30);
145
+    z-index: 10;
146
+    color: #fff;
147
+    background-color: rgb(0, 188, 38);
148
+    font-size: px(44);
149
+}
150
+.page{
151
+    padding-bottom: 6rem;
152
+}
54 153
 </style>

+ 393 - 0
src/pages/index/register.vue

@@ -0,0 +1,393 @@
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="phone"
9
+                    v-model="form.phone"
10
+                    placeholder="手机号码"
11
+                />
12
+            </div>
13
+
14
+            <div class="inp-box code-box">
15
+                <input
16
+                    type="text"
17
+                    name="code"
18
+                    v-model="form.code"
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="phone"
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
+                phone: "",
129
+                code: "",
130
+                password: "",
131
+                password2: "",
132
+                teamNum: "",
133
+            },
134
+            timeing: false,
135
+            codeStr: "发送验证码",
136
+        };
137
+    },
138
+
139
+    onLoad() {
140
+        uni.hideLoading();
141
+    },
142
+
143
+    onShow() {},
144
+
145
+    // 函数
146
+    methods: {
147
+        getCode() {
148
+            if (this.timeing) {
149
+                return;
150
+            }
151
+            let phoneReg = /^[1][1-9][0-9]{9}$/;
152
+            if (!this.form.phone) {
153
+                return this.fn.showToast("请输入手机号");
154
+            }
155
+            if (!phoneReg.test(this.form.phone)) {
156
+                return this.fn.showToast("手机号格式不正确");
157
+            }
158
+            // this.sendCode();
159
+            this.downTime();
160
+        },
161
+        sendCode() {
162
+            this.api.get("").then((res) => {});
163
+        },
164
+        downTime() {
165
+            this.timeing = true;
166
+            let t = 60;
167
+            this.codeStr = t + "s重新获取";
168
+            let timer = setInterval(() => {
169
+                t--;
170
+                if (t === 0) {
171
+                    clearInterval(timer);
172
+                    this.codeStr = "发送验证码";
173
+                    this.timeing = false;
174
+                } else {
175
+                    this.codeStr = t + "s重新获取";
176
+                }
177
+            }, 1000);
178
+        },
179
+
180
+        submit() {
181
+            console.log(this.mobile);
182
+            if (!this.form.phone) {
183
+                this.fn.showToast(`请输入手机号码`);
184
+                return;
185
+            }
186
+            if (!this.form.code) {
187
+                this.fn.showToast(`请输入验证码`);
188
+                return;
189
+            }
190
+
191
+            if (!this.form.password) {
192
+                this.fn.showToast(`请输入密码`);
193
+                return;
194
+            }
195
+
196
+            if (this.form.password.length < 6) {
197
+                this.fn.showToast(`密码最少6位`);
198
+                return;
199
+            }
200
+
201
+            if (!this.form.password2) {
202
+                this.fn.showToast(`请输入确认密码`);
203
+                return;
204
+            }
205
+
206
+            if (this.form.password2 !== this.form.password) {
207
+                this.fn.showToast(`两次密码不一致`);
208
+                return;
209
+            }
210
+
211
+            // uni.showLoading({
212
+            //     title: "提交中",
213
+            // });
214
+            this.step = 2;
215
+            console.log(this.form);
216
+        },
217
+
218
+        saveTeamNum() {
219
+            if (!this.form.teamNum) {
220
+                return this.fn.showToast(`请输入团长号`);
221
+            }
222
+            this.step = 3;
223
+        },
224
+
225
+        viewImg(url) {
226
+            uni.previewImage({
227
+                urls: [url],
228
+            });
229
+        },
230
+
231
+        copy(val) {
232
+            const self = this;
233
+
234
+            uni.setClipboardData({
235
+                data: val,
236
+                success: () => {
237
+                    self.fn.showToast("复制成功");
238
+                },
239
+            });
240
+        },
241
+
242
+        saveOk() {
243
+            // self.fn.showToast("注册成功");
244
+            this.fn.showModal({
245
+                title: "失败",
246
+                content:
247
+                    "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
248
+                showCancel: false,
249
+            });
250
+        },
251
+    },
252
+
253
+    // 数据计算
254
+    computed: {},
255
+
256
+    // 数据监听
257
+    watch: {},
258
+};
259
+</script>
260
+
261
+
262
+<style lang="scss" scoped>
263
+.page {
264
+    height: 100%;
265
+    background-color: #fff;
266
+}
267
+.main {
268
+    padding-top: px(120);
269
+    padding-left: px(40);
270
+    padding-right: px(40);
271
+}
272
+.tit {
273
+    font-size: px(50);
274
+    padding-bottom: px(100);
275
+    text-align: center;
276
+    padding-bottom: px(60);
277
+}
278
+.inp-box {
279
+    display: flex;
280
+    justify-content: space-between;
281
+    align-items: center;
282
+    border-bottom: 1px solid #c3c1c2;
283
+    padding: px(30) 0;
284
+    margin-bottom: px(30);
285
+}
286
+.inp-box span {
287
+    font-size: px(32);
288
+    color: #e92e25;
289
+    border-radius: px(15);
290
+    border: 1px solid #e92e25;
291
+    width: px(230);
292
+    height: px(80);
293
+    text-align: center;
294
+    line-height: px(80);
295
+    flex-shrink: 0;
296
+    margin-left: px(30);
297
+}
298
+.inp-box input {
299
+    width: 100%;
300
+}
301
+.inp-box .dis {
302
+    color: #999;
303
+    border-color: #999;
304
+    pointer-events: none;
305
+}
306
+.btn {
307
+    margin-top: px(120);
308
+    color: #fff;
309
+    background-color: #e92e25;
310
+    font-size: px(44);
311
+}
312
+.code-box {
313
+    display: flex;
314
+    justify-content: space-between;
315
+    align-items: center;
316
+    .code-btn {
317
+        width: px(220);
318
+        flex-shrink: 0;
319
+        font-size: px(40);
320
+        padding: 0 px(10);
321
+        border: none;
322
+        &.dis {
323
+            border-color: #f1f1f1;
324
+            color: #999;
325
+        }
326
+    }
327
+}
328
+.team-num-des {
329
+    padding: px(80) px(30);
330
+    text-align: center;
331
+    line-height: 1.5;
332
+    .tit {
333
+        font-size: px(48);
334
+        padding: px(10) 0;
335
+    }
336
+    .text {
337
+        font-size: px(44);
338
+        padding: px(15) 0;
339
+    }
340
+    video {
341
+        width: 80%;
342
+        display: block;
343
+        margin: 0 auto;
344
+    }
345
+    .img,
346
+    .video {
347
+        padding: px(20) 0;
348
+    }
349
+    /deep/ img {
350
+        width: 80%;
351
+        display: block;
352
+        margin: 0 auto;
353
+    }
354
+}
355
+.add-assistant {
356
+    border-top: 1px solid #f1f1f1;
357
+    li {
358
+        display: flex;
359
+        justify-content: space-between;
360
+        font-size: px(44);
361
+        padding: px(30);
362
+        border-bottom: 1px solid #f1f1f1;
363
+        .step {
364
+            width: px(200);
365
+            flex-shrink: 0;
366
+        }
367
+        .con {
368
+            width: 100%;
369
+        }
370
+        .wechat-img {
371
+            padding: px(10);
372
+            /deep/ img {
373
+                width: px(600);
374
+            }
375
+        }
376
+    }
377
+}
378
+.copy {
379
+    display: inline-block;
380
+    font-size: px(32);
381
+    line-height: px(44);
382
+    padding: 0 px(10);
383
+    border: 1px solid #d9d9d9;
384
+    color: #333;
385
+    background-color: #fafafa;
386
+    margin-left: px(20);
387
+    border-radius: px(5);
388
+    transform: translate(0, -1px);
389
+}
390
+.wechat {
391
+    color: #4395ff;
392
+}
393
+</style>