cr 4 years ago
parent
commit
01548b5eb6
4 changed files with 158 additions and 442 deletions
  1. 54 15
      src/pages/assistant/index.vue
  2. 48 20
      src/pages/index/login.vue
  3. 0 394
      src/pages/index/register copy.vue
  4. 56 13
      src/pages/index/register.vue

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

@@ -12,21 +12,25 @@
12 12
         </div>
13 13
         <ul class="group-list" v-if="tabIndex === 0">
14 14
             <li class="item" @click="jump('')">
15
-                <div class="name">{{'群名称' | maxTit}}</div>
15
+                <div class="name">{{ "群名称" | maxTit }}</div>
16 16
                 <my-image
17 17
                     class="arrow"
18 18
                     src="/static/common/arrows_left.png"
19 19
                 ></my-image>
20 20
             </li>
21
-            <li class="item" @click="jump('')">
22
-                <div class="name">{{'群名称最多16字,大于16字隐藏.123456798' | maxTit}}</div>
21
+            <li class="item" @click="jump('')" v-for="item of dataList" :key="item.id">
22
+                <div class="name">
23
+                    {{ item.name | maxTit }}
24
+                </div>
23 25
                 <my-image
24 26
                     class="arrow"
25 27
                     src="/static/common/arrows_left.png"
26 28
                 ></my-image>
27 29
             </li>
28 30
         </ul>
29
-        <button class="add-group"  v-if="tabIndex === 0" @click="addGroup">添加群</button>
31
+        <button class="add-group" v-if="tabIndex === 0" @click="addGroup">
32
+            添加群
33
+        </button>
30 34
         <wyg-bottom-tab
31 35
             ref="tabbar"
32 36
             :tabIndex="3"
@@ -48,20 +52,24 @@ export default {
48 52
         return {
49 53
             tabList: TAB_LIST,
50 54
             tabIndex: 0, // 0 1
55
+            pageIndex: 1,
56
+            dataList: [],
57
+            dataEnd:false,
51 58
         };
52 59
     },
53 60
     filters: {
54
-        maxTit(v){
55
-            if(v && v.length>16){
56
-                return v.substr(0,16)+'...';
57
-            }else{
61
+        maxTit(v) {
62
+            if (v && v.length > 16) {
63
+                return v.substr(0, 16) + "...";
64
+            } else {
58 65
                 return v;
59 66
             }
60
-        }
67
+        },
61 68
     },
62 69
     onLoad() {},
63 70
     async onShow() {
64 71
         this.$refs.tabbar.setIndex(3);
72
+        this.getList();
65 73
     },
66 74
 
67 75
     // onPullDownRefresh() {
@@ -70,12 +78,43 @@ export default {
70 78
 
71 79
     // 函数
72 80
     methods: {
81
+        getList() {
82
+            this.pageIndex = 1;
83
+            let sendData = {
84
+                pageIndex: this.pageIndex,
85
+                pageSize: 20,
86
+            };
87
+            uni.showLoading({
88
+                title: "加载中...",
89
+            });
90
+            this.api.get("/Group/GetList", sendData).then((res) => {
91
+                uni.hideLoading();
92
+                this.dataList = res.data.data;
93
+            });
94
+        },
95
+
96
+        getListMore() {
97
+            if (this.dataEnd) {
98
+                return;
99
+            }
100
+            this.pageIndex++;
101
+            let sendData = {
102
+                pageIndex: this.pageIndex,
103
+                pageSize: 20,
104
+            };
105
+            this.api.get("/Group/GetList", sendData).then((res) => {
106
+                uni.hideLoading();
107
+                this.dataList = [...this.dataList, ...res.data.data];
108
+                if (res.data.data.length === 0) {
109
+                    this.dataEnd = true;
110
+                }
111
+            });
112
+        },
113
+
73 114
         tabClick(index) {
74 115
             this.tabIndex = index;
75 116
         },
76
-        addGroup(){
77
-
78
-        }
117
+        addGroup() {},
79 118
     },
80 119
 
81 120
     // 数据计算
@@ -94,12 +133,12 @@ export default {
94 133
 .date-list {
95 134
     display: flex;
96 135
     justify-content: space-between;
97
-    font-size: px(44);
136
+    font-size: px(46);
98 137
     text-align: center;
99 138
     background-color: #fff;
100 139
     li {
101 140
         border: 1px solid #f1f1f1;
102
-        padding: px(20) 0;
141
+        padding: px(25) 0;
103 142
         width: 50%;
104 143
         flex-shrink: 0;
105 144
         &.on {
@@ -147,7 +186,7 @@ export default {
147 186
     background-color: rgb(0, 188, 38);
148 187
     font-size: px(44);
149 188
 }
150
-.page{
189
+.page {
151 190
     padding-bottom: 6rem;
152 191
 }
153 192
 </style>

+ 48 - 20
src/pages/index/login.vue

@@ -20,7 +20,9 @@
20 20
             </div>
21 21
             <button class="btn" @click="submit">确定</button>
22 22
             <div class="login-other">
23
-                <a class="go-register" @click="jump('/pages/index/register')">去注册</a>
23
+                <a class="go-register" @click="jump('/pages/index/register')"
24
+                    >去注册</a
25
+                >
24 26
                 <a
25 27
                     class="find-password"
26 28
                     @click="jump('/pages/index/find-password')"
@@ -70,16 +72,42 @@ export default {
70 72
             uni.login({
71 73
                 provider: "weixin",
72 74
                 success: (result) => {
73
-                    this.api
74
-                        .post("/Login/LoginByAccount", {
75
-                            userName: this.userName,
76
-                            password: this.password,
77
-                            code: result.code,
78
-                        })
79
-                        .then((res) => {
80
-                            uni.hideLoading();
75
+                    // 判断团长号 验证
76
+                    this.login(result.code);
77
+                },
78
+            });
79
+        },
81 80
 
82
-                            if (res.success) {
81
+        checkcode(data, callback) {
82
+            this.api.get("/Group/CheckCode", data).then((res) => {
83
+                if (res.success) {
84
+                    if (res.data) {
85
+                        callback();
86
+                    } else {
87
+                        this.router.push("/index/register?step=3");
88
+                    }
89
+                } else {
90
+                    this.router.push("/index/register?step=2");
91
+                }
92
+            });
93
+        },
94
+
95
+        login(code) {
96
+            this.api
97
+                .post("/Login/LoginByAccount", {
98
+                    userName: this.userName,
99
+                    password: this.password,
100
+                    code: code,
101
+                })
102
+                .then((res) => {
103
+                    uni.hideLoading();
104
+                    if (res.success) {
105
+                        this.checkcode(
106
+                            {
107
+                                code: "hht2120201",
108
+                                platform: res.fromPlatform,
109
+                            },
110
+                            () => {
83 111
                                 // 判断权限
84 112
                                 if (res.data.authStatus === 0) {
85 113
                                     // 未注册
@@ -103,16 +131,16 @@ export default {
103 131
                                     });
104 132
                                     this.fn.roleHandle();
105 133
                                 }
106
-                            } else {
107
-                                this.fn.showModal({
108
-                                    title: "提交失败",
109
-                                    content: res.message,
110
-                                    showCancel: false,
111
-                                });
112 134
                             }
135
+                        );
136
+                    } else {
137
+                        this.fn.showModal({
138
+                            title: "提交失败",
139
+                            content: res.message,
140
+                            showCancel: false,
113 141
                         });
114
-                },
115
-            });
142
+                    }
143
+                });
116 144
         },
117 145
     },
118 146
 
@@ -178,13 +206,13 @@ export default {
178 206
 .find-password {
179 207
     color: #666;
180 208
 }
181
-.login-other{
209
+.login-other {
182 210
     margin-top: px(50);
183 211
     font-size: px(40);
184 212
     display: flex;
185 213
     justify-content: space-between;
186 214
     align-items: center;
187
-    .go-register{
215
+    .go-register {
188 216
         color: #4395ff;
189 217
     }
190 218
 }

+ 0 - 394
src/pages/index/register copy.vue

@@ -1,394 +0,0 @@
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>

+ 56 - 13
src/pages/index/register.vue

@@ -4,7 +4,7 @@
4 4
             <div class="tit">注册</div>
5 5
             <div class="inp-box">
6 6
                 <input
7
-                    type="text"
7
+                    type="number"
8 8
                     name="mobile"
9 9
                     v-model="form.mobile"
10 10
                     placeholder="手机号码"
@@ -13,7 +13,7 @@
13 13
 
14 14
             <div class="inp-box code-box">
15 15
                 <input
16
-                    type="text"
16
+                    type="number"
17 17
                     name="smsCode"
18 18
                     v-model="form.smsCode"
19 19
                     placeholder="验证码"
@@ -61,7 +61,10 @@
61 61
                     在京东店长版后台,个人中心,点击头像进去就可以看到
62 62
                 </p>
63 63
                 <div class="video">
64
-                    <video src="" poster=""></video>
64
+                    <video
65
+                        src="https://oss.ixiaokejia.com/videos/get-pid.mp4"
66
+                        poster=""
67
+                    ></video>
65 68
                 </div>
66 69
 
67 70
                 <p class="text">
@@ -137,7 +140,13 @@ export default {
137 140
         };
138 141
     },
139 142
 
140
-    onLoad() {
143
+    onLoad(opts) {
144
+        if (opts.step) {
145
+            this.step = opts.step;
146
+        }
147
+        if (opts.fromPlatform) {
148
+            this.form.fromPlatform = opts.fromPlatform;
149
+        }
141 150
         uni.hideLoading();
142 151
     },
143 152
 
@@ -181,7 +190,6 @@ export default {
181 190
         },
182 191
 
183 192
         submit() {
184
-            console.log(this.mobile);
185 193
             if (!this.form.mobile) {
186 194
                 this.fn.showToast(`请输入手机号码`);
187 195
                 return;
@@ -220,7 +228,7 @@ export default {
220 228
                 mobile: this.form.mobile,
221 229
                 smsCode: this.form.smsCode,
222 230
                 password: this.form.password,
223
-                fromPlatform: null,
231
+                fromPlatform: 0,
224 232
             };
225 233
             uni.login({
226 234
                 provider: "weixin",
@@ -250,7 +258,26 @@ export default {
250 258
             uni.showLoading({
251 259
                 title: "提交中",
252 260
             });
253
-            this.step = 3;
261
+            // this.step = 2;
262
+            let sendData = {
263
+                pid: this.form.teamNum,
264
+                fromPlatform: 0,
265
+            };
266
+            this.api
267
+                .post("/Group/CommitPid", sendData, { pass: true })
268
+                .then((res) => {
269
+                    uni.hideLoading();
270
+                    if (res.success) {
271
+                        this.fn.showToast(`团长号提交成功`);
272
+                        this.step = 3;
273
+                    } else {
274
+                        this.fn.showModal({
275
+                            title: "团长号提交失败",
276
+                            content: res.message,
277
+                            showCancel: false,
278
+                        });
279
+                    }
280
+                });
254 281
         },
255 282
 
256 283
         viewImg(url) {
@@ -272,11 +299,26 @@ export default {
272 299
 
273 300
         saveOk() {
274 301
             // self.fn.showToast("注册成功");
275
-            this.fn.showModal({
276
-                title: "失败",
277
-                content:
278
-                    "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
279
-                showCancel: false,
302
+            this.api.get("/Group/CheckCode", {
303
+                platform:this.form.fromPlatform
304
+            }).then((res) => {
305
+                if (res.success) {
306
+                    if (res.data) {
307
+                        this.router.push({
308
+                            path:'/page/assistant',
309
+                            isTabBer:true
310
+                        })
311
+                    } else {
312
+                        this.fn.showModal({
313
+                            title: "失败",
314
+                            content:
315
+                                "助理没有收到您发送在群里的团长号,请确认1、2、3步全部完成后再试",
316
+                            showCancel: false,
317
+                        });
318
+                    }
319
+                } else {
320
+                    this.router.push("/index/register?step=2");
321
+                }
280 322
             });
281 323
         },
282 324
     },
@@ -369,7 +411,8 @@ export default {
369 411
         padding: px(15) 0;
370 412
     }
371 413
     video {
372
-        width: 80%;
414
+        width: 80vw;
415
+        height: calc(80vw / 0.466666);
373 416
         display: block;
374 417
         margin: 0 auto;
375 418
     }