| | |
| | | let printOrderLabel = (params = {}) => vm.$u.http.get('web/shopInfo/printOrderLabel/'+params.orderId,{ params }); //门店订单打印 |
| | | let checkOperationRadius = (data = {}) => vm.$u.http.post('web/config/checkOperationRadius',data); // 检查门店操作半径 |
| | | let checkShopOperationRadius = (data = {}) => vm.$u.http.post('web/config/checkShopOperationRadius',data); // 检查门店操作半径 |
| | | let locationTagShopCount = (params = {}) => vm.$u.http.get('web/shopInfo/locationTagShopCount',{ params }); // 门店标签统计数量 |
| | | let findPage = (data = {}) => vm.$u.http.post('web/memberCoupon/findPage',data); // 会员优惠券分页查询 |
| | | let claimCoupon = (data = {}) => vm.$u.http.post('web/memberCoupon/claim',data); // 会员优惠券领取使用 |
| | | |
| | | vm.$u.api = { |
| | | printOrderLabel, |
| | |
| | | updateUserPhone, |
| | | getContactInfo, |
| | | checkOperationRadius, |
| | | checkShopOperationRadius |
| | | checkShopOperationRadius, |
| | | locationTagShopCount, |
| | | findPage, |
| | | claimCoupon |
| | | }; |
| | | } |
| | | |