| 1234567891011121314151617181920212223242526 |
- export const columns = [
- { label: "政策编号", props: "businessNo" },
- { label: "状态", props: "status", width: "100" },
- { label: "政策名称", props: "name" },
- { label: "政策等级", props: "zcLevel", width: "100" },
- { label: "政策类别", props: "zcType", width: "100" },
- { label: "政策文号", props: "docNo" },
- { label: "填报人", props: "createName" },
- { label: "填报单位", props: "companyName" },
- { label: "填报时间", props: "createTime" },
- { label: "联系方式", props: "contactPhone" },
- { label: "考核评分", props: "score", width: "100" },
- { label: "是否入库", props: "isInWh", width: "100" },
- { label: "入库类别", props: "inWhType", width: "100" }
- ]
- export const levelDic = ["国家级", "省部级", "市区级"]
- export const typeDic = ["财税政策", "人才支持", "市场开拓", "智慧创新", "招商引资", "技术改造", "法律法规", "营商环境", "企业管理"]
- export const storageTypeDic = ["文件类", "解读类"]
- export const whetherDic = { 0: "否", 1: "是" }
- export const statusDic = {
- active: "保存",
- approve: "审核",
- done: "审核通过",
- inactive: "退回"
- }
|