send 7.28

This commit is contained in:
2020-07-28 20:47:31 +08:00
parent 208f27aa93
commit b12a3c1722
9 changed files with 743 additions and 345 deletions

View File

@@ -278,7 +278,8 @@ export default {
searchwordlist() {
return vm.$u.post('ShopSearch/searchwordlist')
},
saveGoodsTry({ member_name, member_mobile, area_info, address_detail, goods_id, num, store_id }) {
// 提交试穿订单
saveGoodsTry({ member_name, member_mobile, area_info, address_detail, goods_id, num, store_id, appointment_time }) {
return vm.$u.post('Order/saveGoodsTry', {
member_name: member_name,
member_mobile: member_mobile,
@@ -287,6 +288,7 @@ export default {
goods_id: goods_id,
num: num,
store_id: store_id,
appointment_time: appointment_time,
})
},
}

View File

@@ -244,6 +244,10 @@ export default {
goodsTryOrderList() {
return vm.$u.post('order/goodsTryOrderList');
},
// 试穿订单确认完成
goodsTryConfirm({ id }) {
return vm.$u.post('order/goodsTryConfirm', { id: id });
},
// 订单详情
getOrderInfo({ order_id }) {
return vm.$u.post('Order/orderInfo', { order_id: order_id });
@@ -330,6 +334,30 @@ export default {
code: code,
});
},
// 送洗列表-平台订单 实体店订单
sendLaundryOrderList({ type, page }) {
return vm.$u.post('member/sendLaundryOrderList', {
type: type,
page: page,
});
},
// 送洗-获取衣服类型
getClothesTypeList() {
return vm.$u.post('member/getClothesTypeList');
},
// 送洗评价
sendOrderComment({ id, comment }) {
return vm.$u.post('member/sendOrderComment', {
id: id,
comment: comment,
});
},
// 送洗确认完成
sendLaundryOrderConfirm({ id }) {
return vm.$u.post('member/sendOrderConfirm', {
id: id,
});
}
}
}
}