/* * @Date: 2023-10-08 13:55:39 * @LastEditors: vann 984797170@qq.com * @LastEditTime: 2023-10-08 15:10:57 * @FilePath: /pengding/rlc-mal-web/src/controller/repaymentTrial.js */ /** * 认领还款金额计算 */ import ApiModel from '@/utils/core/apiModel' export default options => { // 接口地址: required const api = 'server/repaymentTrial' return new ApiModel({ api, request(body) { return this.post(body) } }) }