jufubao-base 1.0.242-beta7 → 1.0.242-beta8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
//todo
|
|
67
67
|
shareImage: "",
|
|
68
68
|
savaImage: "",
|
|
69
|
+
shareData: {},
|
|
69
70
|
}
|
|
70
71
|
},
|
|
71
72
|
computed: {
|
|
@@ -119,6 +120,7 @@
|
|
|
119
120
|
item.wx_mini_share_image = getServiceUrl(item.wx_mini_share_image);
|
|
120
121
|
return item;
|
|
121
122
|
});
|
|
123
|
+
this.shareData = res;
|
|
122
124
|
})
|
|
123
125
|
},
|
|
124
126
|
handleSwitch(e){
|
|
@@ -128,9 +130,9 @@
|
|
|
128
130
|
let shareIndex = this.shareIndex;
|
|
129
131
|
let curShare = this.shareList[shareIndex];
|
|
130
132
|
this.setShareInfo({
|
|
131
|
-
title:
|
|
133
|
+
title: this.shareData.wx_mini_title,
|
|
132
134
|
imageUrl: curShare.wx_mini_share_image,
|
|
133
|
-
path:
|
|
135
|
+
path: this.shareData.wx_mini_path,
|
|
134
136
|
});
|
|
135
137
|
},
|
|
136
138
|
toSaveImg(){
|