Commit 239dea40 by 李嘉林

feat: uid同步

parent 65506f5f
...@@ -28,13 +28,14 @@ export default { ...@@ -28,13 +28,14 @@ export default {
// development: { mixid: "ytVVdX", "shopid": 3812}, // 驿联科技uat // development: { mixid: "ytVVdX", "shopid": 3812}, // 驿联科技uat
// production: { "mixid":"xhyxshop", "shopid": 1095 }, // 小工蚁新零售 // production: { "mixid":"xhyxshop", "shopid": 1095 }, // 小工蚁新零售
// production: { "mixid":"AntTechnology", "shopid": 1095 }, // 小工蚁新零售 // production: { "mixid":"AntTechnology", "shopid": 1095 }, // 小工蚁新零售
production: { "mixid":"ZJRH", "shopid": 1706 }, // // production: { "mixid":"ZJRH", "shopid": 1706 }, //
// production: { "mixid":"LFX", "shopid": 1710 }, // 老凤祥
// production: { "mixid":"SWQ", "shopid": 1641 }, // 麦贝思 // production: { "mixid":"SWQ", "shopid": 1641 }, // 麦贝思
// production: { "mixid":"metasense_doctors", "shopid": 1238 }, // 册为医护端 // production: { "mixid":"metasense_doctors", "shopid": 1238 }, // 册为医护端
// production: { "mixid":"3QqsFT", "shopid": 1337 }, // production: { "mixid":"3QqsFT", "shopid": 1337 },
// production: { "mixid":"notSHOWROOM", "shopid": 1274 }, // 诸色 // production: { "mixid":"notSHOWROOM", "shopid": 1274 }, // 诸色
// production: { "mixid":"LLGW", "shopid": 981 }, // 贺砚堂 // production: { "mixid":"LLGW", "shopid": 981 }, // 贺砚堂
// production: { "mixid":"5I5Dyk", "shopid": 1306 }, // 星期八 production: { "mixid":"5I5Dyk", "shopid": 1306 }, // 星期八
// production: { "mixid":"RON", "shopid": 1503 }, // 荣恩 // production: { "mixid":"RON", "shopid": 1503 }, // 荣恩
// production: { "mixid":"ant", "shopid": 6 }, // 小工蚁 // production: { "mixid":"ant", "shopid": 6 }, // 小工蚁
// production: { "mixid":"MetaSense", "shopid": 1237 }, // 册为 // production: { "mixid":"MetaSense", "shopid": 1237 }, // 册为
......
...@@ -54,6 +54,10 @@ export default { ...@@ -54,6 +54,10 @@ export default {
if (offlineShopCode) { if (offlineShopCode) {
this.params+=`&offlineShopCode=${offlineShopCode}&offlineShopName=${offlineShopName}` this.params+=`&offlineShopCode=${offlineShopCode}&offlineShopName=${offlineShopName}`
} }
// 加_ma_uid
if (wx.getStorageSync("_ma_uid")) {
this.params += `&_ma_uid=${wx.getStorageSync("_ma_uid")}`;
}
let pageUrl1 = (this.page.startsWith('http://') || this.page.startsWith('https://'))? (this.page + this.params) : this.link+this.page+this.params let pageUrl1 = (this.page.startsWith('http://') || this.page.startsWith('https://'))? (this.page + this.params) : this.link+this.page+this.params
let pageUrl = forUrlAddKey(decodeURIComponent(pageUrl1)); let pageUrl = forUrlAddKey(decodeURIComponent(pageUrl1));
console.log(pageUrl,'--pageUrl') console.log(pageUrl,'--pageUrl')
......
...@@ -83,6 +83,10 @@ export default { ...@@ -83,6 +83,10 @@ export default {
let { latitude, longitude } = locationObj; let { latitude, longitude } = locationObj;
this.params+=`&latitude=${latitude}&longitude=${longitude}` this.params+=`&latitude=${latitude}&longitude=${longitude}`
} }
// 加_ma_uid
if (wx.getStorageSync("_ma_uid")) {
this.params += `&_ma_uid=${wx.getStorageSync("_ma_uid")}`;
}
// 判断当前是否为导购分享 // 判断当前是否为导购分享
const setGuideEmployeeId = wx.getStorageSync(this.$store.state.mixid + 'setGuideEmployeeId'); const setGuideEmployeeId = wx.getStorageSync(this.$store.state.mixid + 'setGuideEmployeeId');
if (setGuideEmployeeId && !this.params.includes("setGuideEmployeeId")) { if (setGuideEmployeeId && !this.params.includes("setGuideEmployeeId")) {
......
...@@ -204,6 +204,10 @@ export default { ...@@ -204,6 +204,10 @@ export default {
if ((!this.link.includes('sessionid')) && wx.getStorageSync("sessionid")) { if ((!this.link.includes('sessionid')) && wx.getStorageSync("sessionid")) {
this.link +=`${this.link.includes('?') && !this.link.includes('#/') || (this.link.split('?').length - 1 > 1) ?'&':'?'}sessionid=${wx.getStorageSync("sessionid")}` this.link +=`${this.link.includes('?') && !this.link.includes('#/') || (this.link.split('?').length - 1 > 1) ?'&':'?'}sessionid=${wx.getStorageSync("sessionid")}`
} }
// 加_ma_uid
if (wx.getStorageSync("_ma_uid")) {
this.link += `&_ma_uid=${wx.getStorageSync("_ma_uid")}`;
}
this.useLink = this.link; this.useLink = this.link;
console.log(this.useLink,'--this.useLink') console.log(this.useLink,'--this.useLink')
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment