| | |
| | | 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); // 门店行李类型 |
| | | let pendingCount = (params = {}) => vm.$u.http.get('web/memberCoupon/pendingCount',{ params }); // 会员优惠券待使用数量 |
| | | let timeline = (orderId) => vm.$u.http.get(`web/order/timeline/${orderId}`); // 会员查询订单时间轴 |
| | | let shopTimeline = (orderId) => vm.$u.http.get(`web/order/shop/timeline/${orderId}`); // 门店查询订单时间轴 |
| | | |
| | | |
| | | vm.$u.api = { |
| | | printOrderLabel, |
| | |
| | | invoiceApply, |
| | | sendEmail, |
| | | driverKpi, |
| | | shopLuggageType |
| | | shopLuggageType, |
| | | pendingCount, |
| | | timeline, |
| | | shopTimeline |
| | | }; |
| | | } |
| | | |