瀏覽代碼

修改海报分享

cr 4 年之前
父節點
當前提交
b507e2ba1e
共有 5 個文件被更改,包括 220 次插入27 次删除
  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 22
         let user = this.$store.state.user.user;
23
-        console.log(user);
24 23
 
25 24
         // 判断用户是否验证团长号
26 25
         // if (user.roleId && user.bundleId !== 0) {

+ 1 - 1
src/pages.json

@@ -563,7 +563,7 @@
563 563
         {
564 564
             "path": "pages/bd/nav",
565 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 46
                 ></canvas>
47 47
             </div>
48 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 83
     </div>
50 84
 </template>
51 85
 
@@ -60,7 +94,14 @@ export default {
60 94
         return {
61 95
             curShop: {},
62 96
             canvasShow: false,
97
+            show: false,
63 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 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 127
             uni.showLoading({
87 128
                 title: "加载中...",
@@ -113,9 +154,6 @@ export default {
113 154
                     ctx.drawImage(resList[0][1].path, 0, 0, 350, 350);
114 155
                 }
115 156
 
116
-
117
-
118
-
119 157
                 ctx.stroke();
120 158
 
121 159
                 ctx.draw();
@@ -129,19 +167,19 @@ export default {
129 167
                             self.canvasShow = false;
130 168
                             uni.hideLoading();
131 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 185
                 }, 100);
@@ -161,6 +199,31 @@ export default {
161 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 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 464
 </style>

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

@@ -91,7 +91,7 @@
91 91
 
92 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 95
         <wyg-bottom-tab
96 96
             ref="tabbar"
97 97
             :tabIndex="2"

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

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