修改自提以及订阅逻辑

main
lenovo008\lenovo 2 months ago
parent fcee418cad
commit 7f2456c0f4

@ -1,5 +1,5 @@
# SHOPRO_DEV_BASE_URL = https://yanghaodong.51vip.biz
SHOPRO_DEV_BASE_URL = http://192.168.1.114:48080
# SHOPRO_DEV_BASE_URL = http://192.168.1.114:48080
# 线上地址
# SHOPRO_DEV_BASE_URL = https://zda.huamar.com
SHOPRO_DEV_BASE_URL = https://zda.huamar.com

@ -186,8 +186,8 @@
items: [], //
price: {}, //
},
deliType:2,
pickUpInfo:{},//
deliType:2,
pickUpInfo:{},//
addressInfo: {}, //
showCoupon: false, //
couponInfo: [], //
@ -230,9 +230,18 @@
//
function onConfirm() {
if (!state.addressInfo.id) {
sheep.$helper.toast('请选择收货地址');
return;
console.log(state.deliType, '11111111111111111');
if (state.deliType == 1) {
if (!state.addressInfo.id) {
sheep.$helper.toast('请选择收货地址');
return;
}
}else{
if (!state.pickUpInfo.id) {
sheep.$helper.toast('请选择自提门店');
return;
}
}
submitOrder();
}
@ -250,7 +259,7 @@
items: state.orderPayload.items,
couponId: state.orderPayload.couponId,
addressId: state.deliType === 1 ? state.addressInfo.id: null,
pickUpStoreId:state.deliType === 2 ? state.pickUpInfo.id : null,
pickUpStoreId:state.deliType === 2 ? state.pickUpInfo.id : null,
deliveryType: state.deliType, // TODO
pointStatus: false, // TODO
combinationActivityId: state.orderPayload.combinationActivityId,

@ -164,10 +164,11 @@ const checkUpdate = async (silence = true) => {
// 获取订阅消息模板
async function getSubscribeTemplate() {
const { error, data } = await third.wechat.subscribeTemplate();
if (error === 0) {
subscribeEventList = data;
}
// const { error, data } = await third.wechat.subscribeTemplate();
// if (error === 0) {
// subscribeEventList = data;
// }
console.log('获取订阅消息模板');
}
// 订阅消息

Loading…
Cancel
Save