| 123456789101112131415161718192021222324252627282930313233 |
- export const progressTab = {
- policy_share: "政策分享",
- policy_strive: "政策争取"
- }
- export const deptTypeDic = ["部门", "单位"];
- export const dept_columns = [
- { label: "部门名称", props: "name" },
- { label: "部门代码", props: "code", width: "120" },
- { label: "类型", props: "deptType", width: "100" },
- { label: "应填报日期", props: "ytbDate", width: "120" },
- { label: "政策数量", props: "count", width: "100" }
- ]
- export const share_columns = [
- { label: "填报单位", props: "companyName" },
- { label: "填报部门", props: "deptName" },
- { label: "填报人", props: "createName" },
- { label: "应填报日期", props: "ytbDate", width: "120" },
- { label: "是否上报", props: "isReport", width: "100" },
- { label: "是否迟报", props: "isDelay", width: "100" }
- ]
- export const strive_columns = [
- { label: "填报单位", props: "companyName" },
- { label: "填报部门", props: "deptName" },
- { label: "填报人", props: "createName" },
- { label: "项目名称", props: "name" },
- { label: "预计争取金额", props: "yjStriveAmount", width: "120" },
- { label: "应填报日期", props: "ytbDate", width: "120" },
- { label: "是否上报", props: "isReport", width: "100" },
- { label: "是否迟报", props: "isDelay", width: "100" }
- ]
|