Browse Source

修改海报分享

cr 4 years ago
parent
commit
b507e2ba1e
5 changed files with 220 additions and 27 deletions
  1. 0 1
      src/App.vue
  2. 1 1
      src/pages.json
  3. 210 17
      src/pages/bd/nav.vue
  4. 1 1
      src/pages/manage/index.vue
  5. 8 7
      src/pages/youxuan/order/detail.vue

+ 0 - 1
src/App.vue

@@ -20,7 +20,6 @@ export default {
20
 
20
 
21
 
21
 
22
         let user = this.$store.state.user.user;
22
         let user = this.$store.state.user.user;
23
-        console.log(user);
24
 
23
 
25
         // 判断用户是否验证团长号
24
         // 判断用户是否验证团长号
26
         // if (user.roleId && user.bundleId !== 0) {
25
         // if (user.roleId && user.bundleId !== 0) {

+ 1 - 1
src/pages.json

@@ -563,7 +563,7 @@
563
         {
563
         {
564
             "path": "pages/bd/nav",
564
             "path": "pages/bd/nav",
565
             "style": {
565
             "style": {
566
-                "navigationBarTitleText": "bd管理"
566
+                "navigationBarTitleText": "BD管理"
567
             }
567
             }
568
         },
568
         },
569
         {
569
         {

+ 210 - 17
src/pages/bd/nav.vue

@@ -46,6 +46,40 @@
46
                 ></canvas>
46
                 ></canvas>
47
             </div>
47
             </div>
48
         </div>
48
         </div>
49
+
50
+        <div class="c-share" v-if="show" @click="close">
51
+            <div class="c-share__content" @click.stop="">
52
+                <div class="qr-img">
53
+                    <div class="qr-name">{{ user.userName }}的邀请码</div>
54
+                    <img :src="canvasImgPath" mode="widthFix" alt="" />
55
+                </div>
56
+                <div class="c-share__division">邀请好友一起推广</div>
57
+                <ul class="c-list">
58
+                    <li class="c-list__item">
59
+                        <button class="button" open-type="share">
60
+                            <div class="c-list__content">
61
+                                <img
62
+                                    class="c-list__icon"
63
+                                    src="/static/share/icon_2.jpg"
64
+                                    alt=""
65
+                                />
66
+                                <div class="c-list__text">发送给微信好友</div>
67
+                            </div>
68
+                        </button>
69
+                    </li>
70
+                    <li class="c-list__item" @click="saveQrCode()">
71
+                        <div class="c-list__content">
72
+                            <img
73
+                                class="c-list__icon"
74
+                                src="/static/share/icon_3.jpg"
75
+                                alt=""
76
+                            />
77
+                            <div class="c-list__text">保存图片到相册</div>
78
+                        </div>
79
+                    </li>
80
+                </ul>
81
+            </div>
82
+        </div>
49
     </div>
83
     </div>
50
 </template>
84
 </template>
51
 
85
 
@@ -60,7 +94,14 @@ export default {
60
         return {
94
         return {
61
             curShop: {},
95
             curShop: {},
62
             canvasShow: false,
96
             canvasShow: false,
97
+            show: false,
63
             canvasImgPath: "",
98
             canvasImgPath: "",
99
+            share: {
100
+                title: "手机管理端",
101
+                path: "/pages/index/register",
102
+                imageUrl:
103
+                    "https://oss.ixiaokejia.com/images/common/share_login.jpg",
104
+            },
64
         };
105
         };
65
     },
106
     },
66
 
107
 
@@ -80,8 +121,8 @@ export default {
80
             });
121
             });
81
         },
122
         },
82
         qrCode() {
123
         qrCode() {
83
-            if(!this.user.inviteCode){
84
-                return this.fn.showToast('当前账号无邀请码');
124
+            if (!this.user.inviteCode) {
125
+                return this.fn.showToast("当前账号无邀请码");
85
             }
126
             }
86
             uni.showLoading({
127
             uni.showLoading({
87
                 title: "加载中...",
128
                 title: "加载中...",
@@ -113,9 +154,6 @@ export default {
113
                     ctx.drawImage(resList[0][1].path, 0, 0, 350, 350);
154
                     ctx.drawImage(resList[0][1].path, 0, 0, 350, 350);
114
                 }
155
                 }
115
 
156
 
116
-
117
-
118
-
119
                 ctx.stroke();
157
                 ctx.stroke();
120
 
158
 
121
                 ctx.draw();
159
                 ctx.draw();
@@ -129,19 +167,19 @@ export default {
129
                             self.canvasShow = false;
167
                             self.canvasShow = false;
130
                             uni.hideLoading();
168
                             uni.hideLoading();
131
                             self.canvasImgPath = res.tempFilePath;
169
                             self.canvasImgPath = res.tempFilePath;
132
-                            uni.previewImage({
133
-                                urls: [self.canvasImgPath],
134
-                                longPressActions: true,
135
-                            });
170
+                            // uni.previewImage({
171
+                            //     urls: [self.canvasImgPath],
172
+                            //     longPressActions: true,
173
+                            // });
136
                             // 保存到相册
174
                             // 保存到相册
137
-                            uni.saveImageToPhotosAlbum({
138
-                                filePath: self.canvasImgPath,
139
-                                success: function () {
140
-                                    self.fn.showToast("海报保存成功");
141
-                                },
142
-                                complete: function () {
143
-                                },
144
-                            });
175
+                            // uni.saveImageToPhotosAlbum({
176
+                            //     filePath: self.canvasImgPath,
177
+                            //     success: function () {
178
+                            //         self.fn.showToast("海报保存成功");
179
+                            //     },
180
+                            //     complete: function () {},
181
+                            // });
182
+                            self.open();
145
                         },
183
                         },
146
                     });
184
                     });
147
                 }, 100);
185
                 }, 100);
@@ -161,6 +199,31 @@ export default {
161
                 longPressActions: true,
199
                 longPressActions: true,
162
             });
200
             });
163
         },
201
         },
202
+        // 打开
203
+        open() {
204
+            const self = this;
205
+
206
+            self.show = true;
207
+        },
208
+
209
+        // 关闭
210
+        close() {
211
+            const self = this;
212
+
213
+            self.show = false;
214
+        },
215
+
216
+        // 分享处理
217
+        saveQrCode() {
218
+            const self = this;
219
+            uni.saveImageToPhotosAlbum({
220
+                filePath: self.canvasImgPath,
221
+                success: function () {
222
+                    self.fn.showToast("保存成功");
223
+                },
224
+                complete: function () {},
225
+            });
226
+        },
164
     },
227
     },
165
 
228
 
166
     // 数据计算
229
     // 数据计算
@@ -268,4 +331,134 @@ export default {
268
         background-color: #fff;
331
         background-color: #fff;
269
     }
332
     }
270
 }
333
 }
334
+.c-share {
335
+    position: fixed;
336
+    top: 0;
337
+    left: 0;
338
+    z-index: 995;
339
+    width: 100%;
340
+    height: 100%;
341
+    background-color: rgba(0, 0, 0, 0.4);
342
+    .qr-img {
343
+        margin-bottom: px(60);
344
+        background-color: #fff;
345
+        padding-top: px(80);
346
+        img {
347
+            width: 60%;
348
+            height: auto;
349
+            display: block;
350
+            margin: 0 auto;
351
+        }
352
+    }
353
+    .qr-name {
354
+        font-size: px(48);
355
+        text-align: center;
356
+        margin-bottom: px(60);
357
+    }
358
+    &__content {
359
+        position: absolute;
360
+        bottom: 0;
361
+        left: 0;
362
+        z-index: 100;
363
+        width: 100%;
364
+        background-color: #fff;
365
+        border-radius: px(16) px(16) 0 0;
366
+    }
367
+
368
+    &__box {
369
+        display: flex;
370
+        flex-direction: column;
371
+        align-items: center;
372
+    }
373
+
374
+    &__top {
375
+        display: flex;
376
+        justify-content: center;
377
+        align-items: center;
378
+        width: px(230);
379
+        height: px(230);
380
+        margin-top: px(-115);
381
+        border-radius: 50%;
382
+        background-color: #ef4a37;
383
+    }
384
+
385
+    &__icon {
386
+        width: px(137);
387
+        height: px(134);
388
+    }
389
+
390
+    &__title {
391
+        margin-top: px(80);
392
+        font-size: px(42);
393
+        color: #333;
394
+    }
395
+
396
+    &__price {
397
+        margin-top: px(70);
398
+    }
399
+
400
+    &__division {
401
+        display: flex;
402
+        justify-content: space-between;
403
+        align-items: center;
404
+        margin-top: px(60);
405
+        font-size: px(34);
406
+        color: #999;
407
+
408
+        &:before,
409
+        &:after {
410
+            content: "";
411
+            display: block;
412
+            width: px(350);
413
+            height: px(3);
414
+            background-color: #e7e7e7;
415
+        }
416
+    }
417
+}
418
+
419
+.c-price {
420
+    display: flex;
421
+    align-items: baseline;
422
+
423
+    &__sign {
424
+        font-size: px(26);
425
+        color: #f8662a;
426
+    }
427
+
428
+    &__text {
429
+        font-size: px(54);
430
+        color: #f8662a;
431
+    }
432
+}
433
+
434
+.c-list {
435
+    display: flex;
436
+    justify-content: space-around;
437
+    height: px(345);
438
+    padding-top: px(70);
439
+
440
+    &__item {
441
+        flex: 1;
442
+    }
443
+
444
+    &__content {
445
+        display: flex;
446
+        flex-direction: column;
447
+        align-items: center;
448
+    }
449
+
450
+    &__icon {
451
+        width: px(100);
452
+        height: px(100);
453
+        margin-bottom: px(20);
454
+    }
455
+
456
+    &__text {
457
+        display: flex;
458
+        flex-direction: column;
459
+        align-items: center;
460
+        font-size: px(32);
461
+        color: #999;
462
+    }
463
+}
271
 </style>
464
 </style>

+ 1 - 1
src/pages/manage/index.vue

@@ -91,7 +91,7 @@
91
 
91
 
92
         <!-- <button class="btn" @click="layout">退出登录</button> -->
92
         <!-- <button class="btn" @click="layout">退出登录</button> -->
93
 
93
 
94
-        <div class="ver">0.5.47</div>
94
+        <div class="ver">0.5.48</div>
95
         <wyg-bottom-tab
95
         <wyg-bottom-tab
96
             ref="tabbar"
96
             ref="tabbar"
97
             :tabIndex="2"
97
             :tabIndex="2"

+ 8 - 7
src/pages/youxuan/order/detail.vue

@@ -76,7 +76,7 @@
76
                     <div class="key">合计:</div>
76
                     <div class="key">合计:</div>
77
                     <div class="value red">¥{{ data.amount / 100 }}</div>
77
                     <div class="value red">¥{{ data.amount / 100 }}</div>
78
                 </li>
78
                 </li>
79
-                <li v-if="dataType === 8">
79
+                <li >
80
                     <div class="key">团长佣金:</div>
80
                     <div class="key">团长佣金:</div>
81
                     <div class="value blod">
81
                     <div class="value blod">
82
                         ¥{{ data.commission / 100 }}(佣金)-¥{{
82
                         ¥{{ data.commission / 100 }}(佣金)-¥{{
@@ -87,7 +87,7 @@
87
                 <li v-if="dataType === 9">
87
                 <li v-if="dataType === 9">
88
                     <div class="key">佣金返还:</div>
88
                     <div class="key">佣金返还:</div>
89
                     <div class="value blod">
89
                     <div class="value blod">
90
-                        -¥{{ data.estimateComission / 100 }}
90
+                        -¥{{ data.estimateComission / 100 }}(已退还)
91
                     </div>
91
                     </div>
92
                 </li>
92
                 </li>
93
                 <li v-if="dataType === 10">
93
                 <li v-if="dataType === 10">
@@ -101,7 +101,7 @@
101
                 <li v-if="dataType === 11">
101
                 <li v-if="dataType === 11">
102
                     <div class="key">BD佣金返还:</div>
102
                     <div class="key">BD佣金返还:</div>
103
                     <div class="value blod">
103
                     <div class="value blod">
104
-                        -¥{{ (data.commission * 0.2) | minuteToRmb }}
104
+                        -¥{{ (data.commission * 0.2) | minuteToRmb }}(已退还)
105
                     </div>
105
                     </div>
106
                 </li>
106
                 </li>
107
                 <li v-if="dataType === 12">
107
                 <li v-if="dataType === 12">
@@ -115,7 +115,7 @@
115
                 <li v-if="dataType === 11">
115
                 <li v-if="dataType === 11">
116
                     <div class="key">BDM佣金返还:</div>
116
                     <div class="key">BDM佣金返还:</div>
117
                     <div class="value blod">
117
                     <div class="value blod">
118
-                        -¥{{ (data.commission * 0.05) | minuteToRmb }}
118
+                        -¥{{ (data.commission * 0.05) | minuteToRmb }}(已退还)
119
                     </div>
119
                     </div>
120
                 </li>
120
                 </li>
121
             </ul>
121
             </ul>
@@ -129,10 +129,10 @@
129
                     </div>
129
                     </div>
130
                 </li> -->
130
                 </li> -->
131
                 <li v-for="item of data.logs" :key="item.time">
131
                 <li v-for="item of data.logs" :key="item.time">
132
-                    <div class="key">{{ item.title }}:</div>
133
                     <div class="value">
132
                     <div class="value">
134
-                        {{ item.time | dateFormat("yyyy-MM-dd hh:mm") }}
133
+                        {{ item.time | dateFormat("yy-MM-dd hh:mm") }}
135
                     </div>
134
                     </div>
135
+                    <div class="key">{{ item.title }}</div>
136
                 </li>
136
                 </li>
137
             </ul>
137
             </ul>
138
         </section>
138
         </section>
@@ -344,6 +344,7 @@ export default {
344
     }
344
     }
345
     .key {
345
     .key {
346
         color: #666;
346
         color: #666;
347
+        margin-left: px(20);
347
     }
348
     }
348
     .red {
349
     .red {
349
         color: #ff4b26;
350
         color: #ff4b26;
@@ -353,7 +354,7 @@ export default {
353
     }
354
     }
354
     .value {
355
     .value {
355
         flex-shrink: 0;
356
         flex-shrink: 0;
356
-        margin-left: px(20);
357
+        margin-top: px(8);
357
     }
358
     }
358
 }
359
 }
359
 .blod {
360
 .blod {