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