| | |
| | | let updateBikeStatus = (params = {}) => uni.$u.http.get('web/manger/updateBikeStatus/batch', { params }) // 电车批量上下架 |
| | | let updateLockStatus = (params = {}) => uni.$u.http.get('web/manger/updateLockStatus/batch', { params }) // 电车批量开关锁 |
| | | |
| | | let scanVerify = (data = {}) => uni.$u.http.post('web/douyin/scanVerify', data) // 扫码核销 |
| | | let operationCenter = (params = {}) => uni.$u.http.get('web/report/operationCenter', { params }) // 运营中心数据 |
| | | let operationOrderPage = (data = {}) => uni.$u.http.post('web/report/operationOrderPage', data) // 订单列表 |
| | | let forceBack = (data = {}) => uni.$u.http.post('web/business/forceBack', data) // 强制还车 |
| | | let getGoodsorderCanBanlanceDTO = (params = {}) => uni.$u.http.get('web/manger/getGoodsorderCanBanlanceDTO', { params }) // 获取可退款信息 |
| | | let backGoodsorder = (data = {}) => uni.$u.http.post('web/manger/backGoodsorder', data) // 退款 |
| | | let overview = (params = {}) => uni.$u.http.get('web/report/overview', { params }) // 概览统计:总注册用户-今日新增-自行车-电动车数量 |
| | | let incomeStat = (data = {}) => uni.$u.http.post('web/report/incomeStat', data) // 收入统计 |
| | | let bikeIncome = (data = {}) => uni.$u.http.post('web/report/bikeIncome', data) // 收入车型分析 |
| | | let accountLogout = (data = {}) => uni.$u.http.post('web/account/logout', data) // 会员退出登录 |
| | | let orderRides = (params = {}) => uni.$u.http.get('web/report/orderRides', { params }) // 订单骑行记录 |
| | | |
| | | vm.$u.api = { |
| | | getUserInfo, |
| | |
| | | logout, |
| | | pageBikes, |
| | | updateBikeStatus, |
| | | updateLockStatus |
| | | updateLockStatus, |
| | | scanVerify, |
| | | operationCenter, |
| | | operationOrderPage, |
| | | forceBack, |
| | | getGoodsorderCanBanlanceDTO, |
| | | backGoodsorder, |
| | | overview, |
| | | incomeStat, |
| | | bikeIncome, |
| | | accountLogout, |
| | | orderRides |
| | | }; |
| | | } |
| | | |