export const reconciliationMatchStatusOptions = [ { label: '全部', value: 'all' }, { label: '未匹配', value: 'unmatched' }, { label: '部分匹配', value: 'partial' }, { label: '已匹配', value: 'matched' }, ]; export const reconciliationStatusOptions = [ { label: '全部', value: 'all' }, { label: '未完成', value: 'unfinished' }, { label: '已完成', value: 'completed' }, ]; export const transportReconciliationSearchFields = [ { prop: 'reconciliationNo', label: '对账单号', type: 'input' }, { prop: 'preSettlementNos', label: '预结算单号', type: 'input' }, { prop: 'projectName', label: '项目', type: 'input' }, { prop: 'deptName', label: '所属组织', type: 'cascader' }, { prop: 'contractNo', label: '合同编号', type: 'input' }, { prop: 'payerName', label: '付款方', type: 'input' }, { prop: 'payeeName', label: '收款方', type: 'input' }, { prop: 'matchStatus', label: '匹配状态', type: 'select', options: reconciliationMatchStatusOptions, }, { prop: 'reconciliationStatus', label: '对账状态', type: 'select', options: reconciliationStatusOptions, }, ];