export const approvalStatusOptions = [ { label: '草稿', value: 'draft' }, { label: '审批中', value: 'reviewing' }, { label: '审批通过', value: 'approved' }, { label: '已驳回', value: 'returned' }, { label: '已作废', value: 'voided' }, ]; export const preSettlementSearchFields = [ { label: '预结算单号', prop: 'preSettlementNo', type: 'input' }, { label: '预付单号', prop: 'advanceNo', type: 'input' }, { label: '项目名称', prop: 'projectName', type: 'input' }, { label: '所属组织', prop: 'deptName', type: 'input' }, { label: '合同名称', prop: 'contractName', type: 'input' }, { label: '合同编号', prop: 'contractNo', type: 'input' }, { label: '收款方', prop: 'payeeName', type: 'input' }, { label: '付款方', prop: 'payerName', type: 'input' }, { label: '生成日期', prop: 'createDateRange', type: 'daterange' }, { label: '审核状态', prop: 'approvalStatus', type: 'select', options: approvalStatusOptions, }, ];