main.js 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. export const progressTab = {
  2. policy_share: "政策分享",
  3. policy_strive: "政策争取"
  4. }
  5. export const deptTypeDic = ["部门", "单位"];
  6. export const dept_columns = [
  7. { label: "部门名称", props: "name" },
  8. { label: "部门代码", props: "code", width: "120" },
  9. { label: "类型", props: "deptType", width: "100" },
  10. { label: "应填报日期", props: "ytbDate", width: "120" },
  11. { label: "政策数量", props: "count", width: "100" }
  12. ]
  13. export const share_columns = [
  14. { label: "填报单位", props: "companyName" },
  15. { label: "填报部门", props: "deptName" },
  16. { label: "填报人", props: "createName" },
  17. { label: "应填报日期", props: "ytbDate", width: "120" },
  18. { label: "是否上报", props: "isReport", width: "100" },
  19. { label: "是否迟报", props: "isDelay", width: "100" }
  20. ]
  21. export const strive_columns = [
  22. { label: "填报单位", props: "companyName" },
  23. { label: "填报部门", props: "deptName" },
  24. { label: "填报人", props: "createName" },
  25. { label: "项目名称", props: "name" },
  26. { label: "预计争取金额", props: "yjStriveAmount", width: "120" },
  27. { label: "应填报日期", props: "ytbDate", width: "120" },
  28. { label: "是否上报", props: "isReport", width: "100" },
  29. { label: "是否迟报", props: "isDelay", width: "100" }
  30. ]