审批记录完善
This commit is contained in:
parent
875f674f60
commit
054adf7672
@ -98,14 +98,15 @@ let columns = ref([
|
|||||||
title: '审批批次号',
|
title: '审批批次号',
|
||||||
dataIndex: 'approvalNo',
|
dataIndex: 'approvalNo',
|
||||||
key: 'approvalNo',
|
key: 'approvalNo',
|
||||||
width: 180,
|
width: 160,
|
||||||
fixed: 'left'
|
fixed: 'left'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '业务类型',
|
title: '业务类型',
|
||||||
dataIndex: 'bizType',
|
dataIndex: 'bizType',
|
||||||
key: 'bizType',
|
key: 'bizType',
|
||||||
width: 120
|
width: 100,
|
||||||
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '数据条数',
|
title: '数据条数',
|
||||||
@ -118,20 +119,22 @@ let columns = ref([
|
|||||||
title: '提交人',
|
title: '提交人',
|
||||||
dataIndex: 'applyUserId',
|
dataIndex: 'applyUserId',
|
||||||
key: 'applyUserId',
|
key: 'applyUserId',
|
||||||
width: 120
|
width: 120,
|
||||||
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '提交时间',
|
title: '提交时间',
|
||||||
dataIndex: 'applyTime',
|
dataIndex: 'applyTime',
|
||||||
key: 'applyTime',
|
key: 'applyTime',
|
||||||
width: 180,
|
width: 160,
|
||||||
|
align: 'center'
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '审批状态',
|
title: '审批状态',
|
||||||
dataIndex: 'status',
|
dataIndex: 'status',
|
||||||
key: 'status',
|
key: 'status',
|
||||||
width: 100,
|
width: 80,
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|
||||||
},
|
},
|
||||||
@ -145,7 +148,7 @@ let columns = ref([
|
|||||||
title: '审批时间',
|
title: '审批时间',
|
||||||
dataIndex: 'approveTime',
|
dataIndex: 'approveTime',
|
||||||
key: 'approveTime',
|
key: 'approveTime',
|
||||||
width: 180,
|
width: 160,
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -153,12 +156,12 @@ let columns = ref([
|
|||||||
dataIndex: 'remark',
|
dataIndex: 'remark',
|
||||||
key: 'remark',
|
key: 'remark',
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
width: 200
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
width: 120,
|
width: 160,
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
@ -215,20 +218,20 @@ const approvalLogColumns = ref([
|
|||||||
dataIndex: 'operateTime',
|
dataIndex: 'operateTime',
|
||||||
key: 'operateTime',
|
key: 'operateTime',
|
||||||
width: 180
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '创建时间',
|
||||||
|
dataIndex: 'createdAt',
|
||||||
|
key: 'createdAt',
|
||||||
|
width: 180
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '审批意见',
|
title: '审批意见',
|
||||||
dataIndex: 'commentInfo',
|
dataIndex: 'commentInfo',
|
||||||
key: 'commentInfo',
|
key: 'commentInfo',
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
width: 300
|
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '创建时间',
|
|
||||||
dataIndex: 'createdAt',
|
|
||||||
key: 'createdAt',
|
|
||||||
width: 180
|
|
||||||
}
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// 数据变更记录弹框相关
|
// 数据变更记录弹框相关
|
||||||
@ -250,13 +253,6 @@ const changeLogColumns = ref([
|
|||||||
width: 120,
|
width: 120,
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '变更内容',
|
|
||||||
dataIndex: 'changeJson',
|
|
||||||
key: 'changeJson',
|
|
||||||
width: 400,
|
|
||||||
ellipsis: true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: '操作人',
|
title: '操作人',
|
||||||
dataIndex: 'operatorId',
|
dataIndex: 'operatorId',
|
||||||
@ -274,7 +270,14 @@ const changeLogColumns = ref([
|
|||||||
dataIndex: 'createdAt',
|
dataIndex: 'createdAt',
|
||||||
key: 'createdAt',
|
key: 'createdAt',
|
||||||
width: 180
|
width: 180
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
title: '变更内容',
|
||||||
|
dataIndex: 'changeJson',
|
||||||
|
key: 'changeJson',
|
||||||
|
ellipsis: true
|
||||||
|
},
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const currentApprovalId = ref('');
|
const currentApprovalId = ref('');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user