whj há 11 meses atrás
pai
commit
31713c660f

+ 15 - 0
src/views/workplace/publish/Executed.vue

@@ -81,6 +81,8 @@ export default {
         {
           title: '序号',
           dataIndex: 'index',
+          checked: true,
+          width: 80,
           customRender: (text, record, index) => {
             return `${
               (this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1
@@ -89,32 +91,45 @@ export default {
         },
         {
           title: '标题',
+          checked: true,
+          width: 200,
           dataIndex: 'taskName',
         },
         {
           title: '发起人',
+          checked: true,
+          width: 140,
           dataIndex: 'applyUserName',
         },
         {
           title: '发起时间',
+          checked: true,
+          width: 140,
           dataIndex: 'applyTime',
         },
         {
           title: '上一处理人',
+          checked: true,
+          width: 140,
           dataIndex: 'lastUserName',
         },
         {
           title: '处理时间',
           dataIndex: 'handleTime',
+          checked: true,
+          width: 140,
         },
         {
           title: '当前处理人',
+          checked: true,
+          width: 140,
           dataIndex: 'currentUserName',
         },
         {
           title: '操作',
           key: 'action',
           width: '200px',
+          checked: true,
           align: 'center',
           scopedSlots: { customRender: 'action' },
         },

+ 19 - 0
src/views/workplace/publish/WaitWork.vue

@@ -81,6 +81,8 @@ export default {
         {
           title: '序号',
           dataIndex: 'index',
+          checked: true,
+          width: 80,
           customRender: (text, record, index) => {
             return `${
               (this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1
@@ -89,34 +91,50 @@ export default {
         },
         {
           title: '标题',
+          checked: true,
+          width: 200,
           dataIndex: 'taskName',
         },
         {
           title: '发起人',
+          checked: true,
+          width: 140,
           dataIndex: 'applyUserName',
         },
         {
           title: '发起时间',
+          checked: true,
+          width: 140,
           dataIndex: 'applyTime',
         },
         {
           title: '上一处理人',
+          checked: true,
+          width: 140,
           dataIndex: 'lastUserName',
         },
         {
           title: '接收时间',
+          checked: true,
+          width: 140,
           dataIndex: 'createdTime',
         },
         {
           title: '当前节点',
+          checked: true,
+          width: 140,
           dataIndex: 'nodeRemark',
         },
         {
           title: '催办次数',
+          checked: true,
+          width: 140,
           dataIndex: 'reminderNum',
         },
         {
           title: '已阅标识',
+          checked: true,
+          width: 140,
           dataIndex: 'readFlag',
           fixed: 'right',
         },
@@ -124,6 +142,7 @@ export default {
           title: '操作',
           key: 'action',
           width: '200px',
+          checked: true,
           fixed: 'right',
           align: 'center',
           scopedSlots: { customRender: 'action' },