main.js 1.2 KB

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