| | |
| | | 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); // 会员优惠券领取使用 |
| | | let claimCoupon = (params = {}) => vm.$u.http.get('web/memberCoupon/claim',{ params }); // 会员优惠券领取使用 |
| | | let invoicePage = (data = {}) => vm.$u.http.post('web/invoice/page',data); // 发票申请分页查询 |
| | | let invoiceApply = (data = {}) => vm.$u.http.post('web/invoice/apply',data); // 发票申请提交 |
| | | let sendEmail = (data = {}) => vm.$u.http.post('web/invoice/sendEmail',data); // 发送至邮箱 |
| | | let driverKpi = (data = {}) => vm.$u.http.post('web/revenue/shopKpi',data); // 司机KPI |
| | | let shopLuggageType = (data = {}) => vm.$u.http.post('web/revenue/shopLuggageType',data); // 门店行李类型 |
| | | |
| | | vm.$u.api = { |
| | | printOrderLabel, |
| | |
| | | checkShopOperationRadius, |
| | | locationTagShopCount, |
| | | findPage, |
| | | claimCoupon |
| | | claimCoupon, |
| | | invoicePage, |
| | | invoiceApply, |
| | | sendEmail, |
| | | driverKpi, |
| | | shopLuggageType |
| | | }; |
| | | } |
| | | |