| | |
| | | let confirmFee = (id) => vm.$u.http.get(`business/settleRisk/confirmFee?id=${id}`); // 确认金额 |
| | | let insuranceFile = (id, type) => vm.$u.http.get(`business/insurance/${id}?type=${type}`); // 根据ID查询 |
| | | let updReceiveInfo = (data = {}) => vm.$u.http.post('business/settleRisk/updReceiveInfo', data); // 修改收款信息 |
| | | |
| | | let switchCompany = (id, type) => vm.$u.http.get(`system/switchCompany`, {params}); // 切换企业 |
| | | |
| | | vm.$u.api = { |
| | | loginByWxMini, |
| | |
| | | saveSupplementFile, |
| | | confirmFee, |
| | | insuranceFile, |
| | | updReceiveInfo |
| | | updReceiveInfo, |
| | | switchCompany |
| | | }; |
| | | } |
| | | |