Commit 31d2e3ec authored by Xuguangxing's avatar Xuguangxing

fix

parent c9da01dd
......@@ -98,9 +98,11 @@ export default {
this.init();
},
created() {
localStorage.remove('groupBuyGroupId');
if (isApp) this.nativeBridge = new Bridge();
else if (isWxMp) this.nativeBridge = new MpBridge();
const groupId = this.$route.query.groupBuyGroupId;
alert('groupId----' + groupId);
if (this.$route.query.groupBuyGroupId) {
localStorage.set('groupBuyGroupId', groupId);
}
......@@ -203,6 +205,7 @@ export default {
return { skuNo, count };
})
};
alert(JSON.stringify(params));
this.orderSubmit(params);
},
async orderSubmit(params) {
......
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