/** * 交易申请记录接口-非转账还款认领 */ import ApiModel from '@/utils/core/apiModel' export default options => { // 接口地址,required const api = 'server/transApplyInfo' return new ApiModel({ api, request(params) { return this.post(params) } }) }