|
@@ -618,11 +618,10 @@ export default {
|
618
|
618
|
creationShare2() {
|
619
|
619
|
const self = this;
|
620
|
620
|
const ctx = uni.createCanvasContext("canvas2", self);
|
621
|
|
-
|
622
|
|
- return new Promise((resolve) => {
|
623
|
|
- let logoUrl =
|
624
|
|
- "https://youxuan.ixiaokejia.com/home/forwardimg?url=" +
|
625
|
|
- encodeURI(self.activityData.brandLogo);
|
|
621
|
+ let logoUrl =
|
|
622
|
+ "https://youxuan.ixiaokejia.com/home/forwardimg?url=" +
|
|
623
|
+ encodeURI(self.activityData.brandLogo);
|
|
624
|
+ this.api.get(logoUrl).then((logoRes) => {
|
626
|
625
|
self.router.getScene(self.$mp.query).then((res) => {
|
627
|
626
|
res.uid = self.user.id;
|
628
|
627
|
res.shopId = self.activeShop.id;
|
|
@@ -637,7 +636,7 @@ export default {
|
637
|
636
|
"https://oss.ixiaokejia.com/images/common/share_bg_box.png",
|
638
|
637
|
}),
|
639
|
638
|
uni.getImageInfo({
|
640
|
|
- src: logoUrl,
|
|
639
|
+ src: logoRes.data,
|
641
|
640
|
}),
|
642
|
641
|
uni.getImageInfo({
|
643
|
642
|
src:
|