let agreementStatus = [ { label: '已结算', value: 0 }, { label: '未结算', value: 1 }, ] export const formLabel = [ { f_label: '开始时间', f_model: 'startTime', f_type: 'date' }, { f_label: '结束时间', f_model: 'endTime', f_type: 'date' }, { f_label: '关键字', f_model: 'keyWord', f_type: 'ipt' }, { f_label: '状态', f_model: 'isBalance', f_type: 'sel', f_selList: agreementStatus }, ] export const columnsList = [ { t_props: 'signDate', t_label: '协议签订时间', }, { t_props: 'code', t_label: '协议编号' }, { t_props: 'contractNumber', t_label: '合同编号' }, { t_props: 'customer', t_label: '租赁单位', }, { t_props: 'project', t_label: '租赁工程', }, { t_props: 'startTime', t_label: '开始日期', }, // { t_props: 'itemType', t_label: '租赁期限(天)', }, { t_props: 'authorizingPerson', t_label: '授权人', }, { t_props: 'authorizingPhone', t_label: '授权人电话', }, // { t_props: 'itemType', t_label: '租赁单位类型', }, { t_props: 'url', t_label: '合同文件', }, { t_props: 'remark', t_label: '备注', }, ] export const dialogConfig = { outerWidth: '70%', outerTitle: '', outerVisible: false, }