...
|
...
|
@@ -232,7 +232,27 @@ const packageData = (id, isApp, isWeixin, channel, isShare) => { |
|
|
});
|
|
|
}
|
|
|
|
|
|
if (isShare) {
|
|
|
if (isShare && datas[5]) {
|
|
|
|
|
|
if (datas[5].wechatShareImgUrl) {
|
|
|
datas[5].wechatShareImgUrl = datas[5].wechatShareImgUrl.substring(datas[5].wechatShareImgUrl.indexOf('//img'));
|
|
|
|
|
|
if (datas[5].wechatShareImgUrl.indexOf('?') === -1) {
|
|
|
datas[5].wechatShareImgUrl = datas[5].wechatShareImgUrl + '?imageView2/2/interlace/1/q/75';
|
|
|
}
|
|
|
} else if (datas[5].qqShareImgUrl) {
|
|
|
datas[5].qqShareImgUrl = datas[5].qqShareImgUrl.substring(datas[5].qqShareImgUrl.indexOf('//img'));
|
|
|
|
|
|
if (datas[5].qqShareImgUrl.indexOf('?') === -1) {
|
|
|
datas[5].qqShareImgUrl = datas[5].wechatShareImgUrl + '?imageView2/2/interlace/1/q/75';
|
|
|
}
|
|
|
} else if (datas[5].showShareImgUrl) {
|
|
|
datas[5].showShareImgUrl = datas[5].showShareImgUrl.substring(datas[5].showShareImgUrl.indexOf('//img'));
|
|
|
|
|
|
if (datas[5].showShareImgUrl.indexOf('?') === -1) {
|
|
|
datas[5].showShareImgUrl = datas[5].showShareImgUrl + '?imageView2/2/interlace/1/q/75';
|
|
|
}
|
|
|
}
|
|
|
|
|
|
let preCount = 0;
|
|
|
let i;
|
...
|
...
|
|