/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-11-04 11:44:39 */ /** * 根据银行流水号查询退款申请信息详情 */ import ApiModel from '@/utils/core/apiModel' export default options => { // 接口地址: required const api = 'server/claimRefundApplyInfo' return new ApiModel({ api, request(body) { return this.post(body) } }) }