|
|
@@ -44,13 +44,13 @@ export const DRAW_LESSONS_TABLE_COLUMNS: TableColumnProps[] = [
|
|
|
minWidth: '140px',
|
|
|
showOverflowTooltip: true,
|
|
|
},
|
|
|
- {
|
|
|
- label: '部门负责人',
|
|
|
- prop: 'deptUserByName',
|
|
|
- align: 'left',
|
|
|
- minWidth: '140px',
|
|
|
- showOverflowTooltip: true,
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // label: '部门负责人',
|
|
|
+ // prop: 'deptUserByName',
|
|
|
+ // align: 'left',
|
|
|
+ // minWidth: '140px',
|
|
|
+ // showOverflowTooltip: true,
|
|
|
+ // },
|
|
|
{
|
|
|
label: '举一反三要求',
|
|
|
prop: 'associationOneThree',
|
|
|
@@ -94,3 +94,53 @@ export const DRAW_LESSONS_TABLE_COLUMNS: TableColumnProps[] = [
|
|
|
align: 'left',
|
|
|
},
|
|
|
];
|
|
|
+
|
|
|
+export const DRAW_LESSONS_TABLE_COLUMNS_TOW: TableColumnProps[] = [
|
|
|
+ {
|
|
|
+ label: '编号',
|
|
|
+ type: 'index',
|
|
|
+ align: 'center',
|
|
|
+ width: '80px',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '隐患问题',
|
|
|
+ prop: 'problem',
|
|
|
+ align: 'left',
|
|
|
+ minWidth: '200px',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '状态',
|
|
|
+ prop: 'statusName',
|
|
|
+ slot: 'status',
|
|
|
+ align: 'center',
|
|
|
+ minWidth: '100px',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '部门名称',
|
|
|
+ prop: 'associationOtObligationDeptName',
|
|
|
+ align: 'left',
|
|
|
+ minWidth: '140px',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '举一反三要求',
|
|
|
+ prop: 'associationOneThree',
|
|
|
+ align: 'left',
|
|
|
+ minWidth: '140px',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '计划完成时间',
|
|
|
+ prop: 'associationOtTimeLimit',
|
|
|
+ align: 'left',
|
|
|
+ minWidth: '160px',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '操作',
|
|
|
+ prop: 'action',
|
|
|
+ slot: 'action',
|
|
|
+ fixed: 'right',
|
|
|
+ width: '320px',
|
|
|
+ align: 'left',
|
|
|
+ },
|
|
|
+];
|