// 资产详情列名 export const assetColumn = [ { title: '申报单号', dataIndex: 'declarationNumber', }, { title: '处置方式', dataIndex: 'disposalWay', }, { title: '批复单号', dataIndex: 'approvalOrderNumber', }, { title: '批复数量', dataIndex: 'approvalQuantity', }, { title: '批复金额', dataIndex: 'approvalAmount', }, { title: '选择处置数量', dataIndex: 'choiceDisposedQuantity', }, { title: '选择处置金额', dataIndex: 'choiceDisposedAmount', }, { title: '评估价值', dataIndex: 'evaluateValue', }, { title: '业务操作', dataIndex: 'operation', }, ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 })); // 买受方列名 export const acceptorColumn = [ { title: '序号', dataIndex: 'index', key: 'index', width: 50, customRender: ({ text, record, index }) => `${index + 1}`, }, { title: '买受方名称', dataIndex: 'buyerName', width: 100, }, { title: '联系电话', dataIndex: 'phone', width: 100, }, { title: '联系人', dataIndex: 'contactPerson', width: 100, }, { title: '主营业务', dataIndex: 'mainBusiness', width: 100, }, { title: '地址', dataIndex: 'address', width: 100, }, { title: '好评率', dataIndex: 'positiveRating', width: 100, }, { title: '操作', dataIndex: 'operation', key: 'operation', width: 100, }, ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 })); // 买受方列名-新增 export const acceptorAddColumn = [ { title: '买受方名称', dataIndex: 'buyerName', }, { title: '联系电话', dataIndex: 'phone', }, { title: '联系人', dataIndex: 'contactPerson', }, { title: '主营业务', dataIndex: 'mainBusiness', }, { title: '地址', dataIndex: 'address', }, { title: '操作', dataIndex: 'operation', key: 'operation', }, ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 })); // 评价列名 export const evaluateColumn = [ { title: '维修时间', dataIndex: 'date', key: 'date', }, { title: '评价人', dataIndex: 'user', key: 'user', }, { title: '评价内容', dataIndex: 'content', key: 'content', }, ]; // 处置形式数据 export const disposalFormDatas = [ { value: 'Auction', label: '拍卖', }, { value: 'Bidding', label: '招投标', }, { value: 'Inquiry', label: '询价', }, { value: 'AgreementTransfer', label: '协议转让', }, { value: 'Other', label: '其他方式', }, ]; // 买受方报价 export const quoteColumn = [ { title: '序号', dataIndex: 'index', key: 'index', width: 50, customRender: ({ text, record, index }) => `${index + 1}`, }, { title: '买受方名称', dataIndex: 'buyerName', width: 200, }, { title: '联系电话', dataIndex: 'phone', width: 120, }, { title: '联系人', dataIndex: 'contactPerson', width: 100, }, { title: '地址', dataIndex: 'address', width: 150, }, { title: '主营业务', dataIndex: 'mainBusiness', width: 150, }, { title: '评价', dataIndex: 'positiveRating', width: 80, }, { title: '报价', dataIndex: 'quotation', width: 120, }, { title: '操作', dataIndex: 'operation', width: 120, }, ].map(item => ({ ...item, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 })); // 收益登记列名 export const earningsColumn = [ { title: '合同编号', dataIndex: 'contractNumber', isInput:true, }, { title: '预计收益', dataIndex: 'expectedRevenue', isInput:false, }, { title: '实收金额', dataIndex: 'actualRevenue', isInput:false, }, { title: '评估鉴证费用', dataIndex: 'appraisalFee', isInput:false, }, { title: '税金', dataIndex: 'taxAmount', isInput:false, }, { title: '拍卖佣金', dataIndex: 'auctionCommission', isInput:false, }, { title: '其他费用', dataIndex: 'otherExpenses', isInput:false, }, { title: '备注', dataIndex: 'description', isInput:true, }, ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 }));