|
|
@@ -397,11 +397,10 @@ Page({
|
|
|
},
|
|
|
/* 查看合作商直播 */
|
|
|
toLive(e) {
|
|
|
- const {
|
|
|
- fliveshowurl
|
|
|
- } = e.currentTarget.dataset;
|
|
|
+ let str = e.currentTarget.dataset.fliveshowurl;
|
|
|
+ const url = str.slice(0, 8) + '04de51d4c1.' + str.slice(8);
|
|
|
wx.navigateTo({
|
|
|
- url: '/pages/webView/index?url=' + fliveshowurl,
|
|
|
+ url: '/pages/webView/index?url=' + url,
|
|
|
})
|
|
|
},
|
|
|
/**
|
|
|
@@ -440,9 +439,11 @@ Page({
|
|
|
* 用户点击右上角分享
|
|
|
*/
|
|
|
onShareAppMessage: function () {
|
|
|
+ let str = this.data.accountMsg.fliveshowurl;
|
|
|
+ const url = str.slice(0, 8) + '04de51d4c1.' + str.slice(8)
|
|
|
return {
|
|
|
title: this.data.accountMsg.channelname,
|
|
|
- path: "/pages/webView/index?url=" + this.data.accountMsg.fliveshowurl,
|
|
|
+ path: "/pages/webView/index?url=" + url,
|
|
|
imageUrl: this.data.accountMsg.channelcoverimageurl
|
|
|
}
|
|
|
}
|