/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-10-12 17:51:19 */ /** * 人工解挂确认 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const formList = [ { type: 'input', label: '贷款申请编号', value: '', name: 'applySerialno', attrs: ['readonly'] }, { type: 'input', label: '借据编号', value: '', name: 'loanSerialno', attrs: ['readonly'] }, { type: 'input', label: '客户名称', value: '', name: 'customerName', attrs: ['readonly'] }, { type: 'input', label: '产品名称', value: '', name: 'productName', attrs: ['readonly'] } ] export default options => { // 接口地址,required const api = 'server/labourUp' return new ApiModel({ api, formList, request(params) { return this.post(params) } }) }