import {BasicColumn} from '/@/components/Table'; import {FormSchema} from '/@/components/Table'; import { rules} from '/@/utils/helper/validator'; import { render } from '/@/utils/common/renderUtils'; import { getWeekMonthQuarterYear } from '/@/utils'; //列表数据 export const columns: BasicColumn[] = [ { title: '创新券编码', align: "center", dataIndex: 'cxqCode' }, { title: '申报项目名称', align: "center", dataIndex: 'proName' }, { title: '申报类别', align: "center", dataIndex: 'proType_dictText' }, { title: '申领金额', align: "center", dataIndex: 'proMoney' }, { title: '附件', align: "center", dataIndex: 'attachment', }, { title: '申领单位', align: "center", dataIndex: 'proDept_dictText' }, { title: '服务单位', align: "center", dataIndex: 'applyDept_dictText' }, { title: '是否同意', align: "center", dataIndex: 'sfState_dictText' }, { title: '审核状态', align: "center", dataIndex: 'state_dictText' }, { title: '使用状态', align: "center", dataIndex: 'useState_dictText' }, { title: '驳回原因', align: "center", dataIndex: 'reject' }, { title: '是否申请兑现', align: "center", dataIndex: 'sfSqdxSta_dictText' }, { title: '兑现审核状态', align: "center", dataIndex: 'dxshSta_dictText' }, { title: '兑现驳回原因', align: "center", dataIndex: 'dxReject' }, ]; // 高级查询数据 export const superQuerySchema = { cxqCode: {title: '创新券编码',order: 0,view: 'text', type: 'string',}, proName: {title: '申报项目名称',order: 1,view: 'text', type: 'string',}, proType: {title: '申报类别',order: 2,view: 'list', type: 'string',dictCode: 'cxq_type',}, proMoney: {title: '申领金额',order: 3,view: 'number', type: 'number',}, attachment: {title: '附件',order: 4,view: 'file', type: 'string',}, proDept: {title: '申领单位',order: 5,view: 'sel_depart', type: 'string',}, applyDept: {title: '服务单位',order: 6,view: 'sel_depart', type: 'string',}, sfState: {title: '是否同意',order: 7,view: 'list', type: 'string',dictCode: 'cxq_sf_sta',}, state: {title: '审核状态',order: 8,view: 'list', type: 'string',dictCode: 'in_exam_status',}, useState: {title: '使用状态',order: 9,view: 'list', type: 'string',dictCode: 'cxq_use_sta',}, reject: {title: '驳回原因',order: 10,view: 'textarea', type: 'string',}, sfSqdxSta: {title: '是否申请兑现',order: 11,view: 'list', type: 'string',dictCode: 'sqdx_sf',}, dxshSta: {title: '兑现审核状态',order: 12,view: 'list', type: 'string',dictCode: 'in_exam_status',}, dxReject: {title: '兑现驳回原因',order: 13,view: 'textarea', type: 'string',}, };