|
@@ -96,7 +96,7 @@
|
|
|
|
|
|
<!-- 底部购物车 -->
|
|
<!-- 底部购物车 -->
|
|
<view class="bottom-box">
|
|
<view class="bottom-box">
|
|
- <settleBottomBtn :goodsCateList.sync='goodsCateList'/>
|
|
|
|
|
|
+ <settleBottomBtn :goodsCateList.sync='goodsCateList' :ids='ids'/>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<!-- 弹窗 -->
|
|
<!-- 弹窗 -->
|
|
@@ -160,9 +160,11 @@
|
|
appointTime: '',
|
|
appointTime: '',
|
|
},
|
|
},
|
|
template_time: '',
|
|
template_time: '',
|
|
|
|
+ ids:null // 商家id
|
|
};
|
|
};
|
|
},
|
|
},
|
|
onLoad(option) {
|
|
onLoad(option) {
|
|
|
|
+ this.ids = option.id
|
|
this.queryParams.id = option.id;
|
|
this.queryParams.id = option.id;
|
|
this.handlerInitLocation();
|
|
this.handlerInitLocation();
|
|
},
|
|
},
|
|
@@ -236,7 +238,7 @@
|
|
handlerSkipBuy(item, index) {
|
|
handlerSkipBuy(item, index) {
|
|
this.$store.commit('order/GET_ORDER_LIST', item);
|
|
this.$store.commit('order/GET_ORDER_LIST', item);
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: `/pages/client/clientPackage/uptickOrder?id=${item.id}`,
|
|
|
|
|
|
+ url: `/pages/client/clientPackage/uptickOrder?ids=${this.ids}`,
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
|