main.js 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. export const columns = [
  2. { label: "政策编号", props: "businessNo" },
  3. { label: "状态", props: "status", width: "100" },
  4. { label: "是否落地", props: "isLand", width: "100" },
  5. { label: "项目名称", props: "name" },
  6. { label: "项目概要", props: "abstractContent" },
  7. { label: "项目等级", props: "zcLevel", width: "100" },
  8. { label: "项目类别", props: "zcType", width: "100" },
  9. { label: "政策文号", props: "docNo" },
  10. { label: "预计争取金额", props: "yjStriveAmount", width: "120" },
  11. { label: "预计完成日期", props: "yjFinishTime", width: "120" },
  12. { label: "责任人", props: "directorName" },
  13. { label: "填报人", props: "createName" },
  14. { label: "填报部门", props: "deptName" },
  15. { label: "填报单位", props: "companyName" },
  16. { label: "联系方式", props: "contactPhone" },
  17. { label: "填报日期", props: "createTime", width: "120" }
  18. ]
  19. export const rewardTypeDic = {
  20. 1: "依据国家法律法规享受的财税政策优惠及人力资源政策",
  21. 2: "向各级政府争取的个性化财税政策及人力资源政策",
  22. 3: "向各级政府及有关部门、行业协会及其他非政府组织(机构)争取的鼓励创新类资金",
  23. 4: "其他个性化政策支持"
  24. }
  25. export const statusDic = {
  26. active: "待上报",
  27. approve: "审核中",
  28. done: "争取中",
  29. inactive: "退回"
  30. }