Commit 2444cdbc authored by zhangjianguo's avatar zhangjianguo

1

parent 1f0a8398
...@@ -216,7 +216,7 @@ export default { ...@@ -216,7 +216,7 @@ export default {
}, },
automatic() { automatic() {
this.$refs.uToast.show({ this.$refs.uToast.show({
title: "暂无开发此功能" title: "正在开发,敬请期待!"
}); });
}, },
ManualAdd() { ManualAdd() {
......
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
<view class="sku-box u-skeleton-rect" v-if="setting.is_express == '1'"> <view class="sku-box u-skeleton-rect" v-if="setting.is_express == '1'">
<view class="label">快递</view> <view class="label">快递</view>
<view class="content"> <view class="content">
¥{{ g.express == "" ? "免运费" : g.express }} {{ g.express == "" ? "免运费" :('¥'+ g.express) }}
</view> </view>
</view> </view>
<view <view
...@@ -285,7 +285,9 @@ export default { ...@@ -285,7 +285,9 @@ export default {
}, },
onLoad(option) { onLoad(option) {
this.opTionObj = option; this.opTionObj = option;
console.log(option)
if(option&&option.id){ if(option&&option.id){
this.id = option.id ? option.id : 29; //40887 59512 46942 this.id = option.id ? option.id : 29; //40887 59512 46942
}else{ }else{
this.id = option.GoodsId ? option.GoodsId : 29; //40887 59512 46942 this.id = option.GoodsId ? option.GoodsId : 29; //40887 59512 46942
...@@ -313,7 +315,7 @@ export default { ...@@ -313,7 +315,7 @@ export default {
onShareAppMessage(res) { onShareAppMessage(res) {
return { return {
title:this.g.app_share_title!=null? this.g.app_share_title: this.g.name, title:this.g.app_share_title!=null? this.g.app_share_title: this.g.name,
path: "/pages/goods/goods?id" + this.id, path: "/pages/goods/goods?id=" + this.id,
imageUrl: this.g.app_share_pic!=null? this.g.app_share_pic:this.g.pic_url[0].pic_url, imageUrl: this.g.app_share_pic!=null? this.g.app_share_pic:this.g.pic_url[0].pic_url,
}; };
}, },
...@@ -321,6 +323,7 @@ export default { ...@@ -321,6 +323,7 @@ export default {
reloadUserinfo() { reloadUserinfo() {
this.u = uni.getStorageSync('mall_UserInfo'); this.u = uni.getStorageSync('mall_UserInfo');
this.showAuth=false;
this.init(); this.init();
this.initPage(); this.initPage();
}, },
......
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