Commit d0efeaee by 张卓

Merge branch 'nativehome_tst' of http://code.mayi888.com/chengmo/mayi-mp-shop into nativehome_tst

parents d90a256f d4e34f51
...@@ -386,6 +386,9 @@ export default { ...@@ -386,6 +386,9 @@ export default {
link:linkVal, link:linkVal,
}); });
} }
if(res &&
res.id
){
app.fenxiaoModel.getDistributorHomepage(res).then(ele=>{ app.fenxiaoModel.getDistributorHomepage(res).then(ele=>{
if(ele.id) { if(ele.id) {
this.getDistributorHomepageName = '我的小店'; this.getDistributorHomepageName = '我的小店';
...@@ -393,6 +396,7 @@ export default { ...@@ -393,6 +396,7 @@ export default {
this.getDistributorHomepageName = '一键开店'; this.getDistributorHomepageName = '一键开店';
} }
}); });
}
if( if(
res&& res&&
res.parentSpokesmanDistributionModel == '1'&& res.parentSpokesmanDistributionModel == '1'&&
......
...@@ -29,7 +29,7 @@ export default { ...@@ -29,7 +29,7 @@ export default {
}; };
}, },
async onLoad(options) { async onLoad(options) {
console.log(options, '第三方页面'); console.log(options, "第三方页面");
/** /**
* scene=sso 第三方需要登录的页面 * scene=sso 第三方需要登录的页面
* login=1 jwt需要登录(临时方案) * login=1 jwt需要登录(临时方案)
...@@ -56,13 +56,15 @@ export default { ...@@ -56,13 +56,15 @@ export default {
this.getSsoBcakUrl(decodeURIComponent(options.link)); this.getSsoBcakUrl(decodeURIComponent(options.link));
} }
} else if (getUrlKey(decodeURIComponent(options.link), "login") != "1") { } else if (getUrlKey(decodeURIComponent(options.link), "login") != "1") {
this.link = decodeURIComponent(options.link); this.setLink(decodeURIComponent(options.link));
} else { } else {
if (wx.getStorageSync("sessionid")) { if (wx.getStorageSync("sessionid")) {
this.link = forUrlAddKey(decodeURIComponent(options.link), { this.setLink(
forUrlAddKey(decodeURIComponent(options.link), {
token: wx.getStorageSync("sessionid"), token: wx.getStorageSync("sessionid"),
jwt: 1, jwt: 1,
}); })
);
} else { } else {
let url = `/pages/login/main?scene=sso&back=${options.link}`; let url = `/pages/login/main?scene=sso&back=${options.link}`;
wx.navigateTo({ wx.navigateTo({
...@@ -119,6 +121,9 @@ export default { ...@@ -119,6 +121,9 @@ export default {
}; };
}, },
methods: { methods: {
setLink(data) {
this.link = data;
},
getSsoBcakUrl(link) { getSsoBcakUrl(link) {
let op = { let op = {
callbackUrl: link, callbackUrl: link,
...@@ -130,9 +135,8 @@ export default { ...@@ -130,9 +135,8 @@ export default {
wxAvatarUrl: this.$store.state.userInfo.avatarUrl, wxAvatarUrl: this.$store.state.userInfo.avatarUrl,
}; };
login.getSsoBcakUrl(op).then((res) => { login.getSsoBcakUrl(op).then((res) => {
console.log(res, this.link, 555444);
if (res.data.code == "200") { if (res.data.code == "200") {
this.link = res.data.data; this.setLink(res.data.data);
} else { } else {
wx.showToast({ title: res.data.msg, icon: "none" }); wx.showToast({ title: res.data.msg, icon: "none" });
} }
......
...@@ -158,9 +158,11 @@ export default { ...@@ -158,9 +158,11 @@ export default {
} }
// sso场景(跳转第三方url) // sso场景(跳转第三方url)
if (_this.scene == "sso") { if (_this.scene == "sso") {
setTimeout(() => {
wx.redirectTo({ wx.redirectTo({
url: `../wxArticle/main?from=sso&link=${_this.backUrl}`, url: `../wxArticle/main?from=sso&link=${_this.backUrl}`,
}); });
}, 500);
return; return;
} }
......
...@@ -351,9 +351,9 @@ const componentOptions = { ...@@ -351,9 +351,9 @@ const componentOptions = {
let linkVal = ""; let linkVal = "";
if (goodsType != 1) { if (goodsType != 1) {
if (style == "list") { if (style == "list") {
linkVal = `/goodsSearch/goodsSearch?categoryName=${categoryName}&categoryId=${categoryId}`; linkVal = `/goods/commodityMenu?categoryName=${categoryName}&categoryId=${categoryId}`;
} else { } else {
linkVal = `/goodsSearch/goodsSearch`; linkVal = `/goods/commodityMenu`;
} }
} else { } else {
linkVal = `/pointShop/productList?categoryName=${categoryName}&categoryId=${categoryId}`; linkVal = `/pointShop/productList?categoryName=${categoryName}&categoryId=${categoryId}`;
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
> >
<goods-item <goods-item
datas="{{datas}}" datas="{{datas}}"
items="{{datas.componentData.goodsList[index]}}" items="{{goodsList[index]}}"
indexs="{{index}}" indexs="{{index}}"
></goods-item> ></goods-item>
</view> </view>
......
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