| 1234567891011121314151617181920212223242526272829303132333435363738 |
- export const column = [
- { label: "计划状态", prop: "status", width: "140", align: "center" },
- { label: "采购名称", prop: "planName", width: "200", align: "center", showOverflowTooltip: true },
- { label: "流水编号", prop: "businessNo", width: "200", align: "center", hide: true },
- { label: "采购类别", prop: "type", width: "120", align: "center" },
- { label: "合约规划", prop: "contractPlanName", width: "200", align: "center", showOverflowTooltip: true },
- { label: "预算金额 (元)", prop: "budgetAmount", width: "140", align: "center" },
- { label: "计划开始日期", prop: "beginDate", width: "140", align: "center" },
- { label: "计划完成日期", prop: "endDate", width: "140", align: "center" },
- { label: "进场日期", prop: "enterDate", width: "140", align: "center", hide: true },
- { label: "采购公司/部门", prop: "deptName", width: "200", align: "center", showOverflowTooltip: true },
- { label: "业务所属公司", prop: "belongDeptName", width: "200", align: "center", hide: true, showOverflowTooltip: true },
- { label: "采购所属项目", prop: "projectName", width: "200", align: "center", hide: true, showOverflowTooltip: true }
- ]
- export const statusDic = {
- active: {
- label: "已驳回",
- type: "danger"
- },
- approve: {
- label: "待审核",
- type: "warning"
- },
- done: {
- label: "已审核",
- type: "success"
- }
- }
- export const useStateDic = {
- No_Use: "未占⽤",
- Pre_Use: "预占⽤",
- In_Use: "已占⽤"
- }
|