|
@@ -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>
|