loadmore 7.27

This commit is contained in:
2020-07-27 17:59:47 +08:00
parent 100f31c6f9
commit 6eabd3a575
17 changed files with 421 additions and 58 deletions

View File

@@ -278,6 +278,17 @@ export default {
searchwordlist() {
return vm.$u.post('ShopSearch/searchwordlist')
},
saveGoodsTry({ member_name, member_mobile, area_info, address_detail, goods_id, num, store_id }) {
return vm.$u.post('Order/saveGoodsTry', {
member_name: member_name,
member_mobile: member_mobile,
area_info: area_info,
address_detail: address_detail,
goods_id: goods_id,
num: num,
store_id: store_id,
})
},
}
}

View File

@@ -240,6 +240,10 @@ export default {
getAfterSaleList({ page }) {
return vm.$u.post('order/afterSaleList', { page: page });
},
// 试穿列表
goodsTryOrderList() {
return vm.$u.post('order/goodsTryOrderList');
},
// 订单详情
getOrderInfo({ order_id }) {
return vm.$u.post('Order/orderInfo', { order_id: order_id });