diff --git a/frontend/src/views/shuJuTianBao/shengPiJiLu.vue b/frontend/src/views/shuJuTianBao/shengPiJiLu.vue index 044ae7e..11ae240 100644 --- a/frontend/src/views/shuJuTianBao/shengPiJiLu.vue +++ b/frontend/src/views/shuJuTianBao/shengPiJiLu.vue @@ -98,14 +98,15 @@ let columns = ref([ title: '审批批次号', dataIndex: 'approvalNo', key: 'approvalNo', - width: 180, + width: 160, fixed: 'left' }, { title: '业务类型', dataIndex: 'bizType', key: 'bizType', - width: 120 + width: 100, + align: 'center' }, { title: '数据条数', @@ -118,20 +119,22 @@ let columns = ref([ title: '提交人', dataIndex: 'applyUserId', key: 'applyUserId', - width: 120 + width: 120, + align: 'center' }, { title: '提交时间', dataIndex: 'applyTime', key: 'applyTime', - width: 180, + width: 160, + align: 'center' }, { title: '审批状态', dataIndex: 'status', key: 'status', - width: 100, + width: 80, align: 'center', }, @@ -145,7 +148,7 @@ let columns = ref([ title: '审批时间', dataIndex: 'approveTime', key: 'approveTime', - width: 180, + width: 160, }, { @@ -153,12 +156,12 @@ let columns = ref([ dataIndex: 'remark', key: 'remark', ellipsis: true, - width: 200 + }, { title: '操作', key: 'action', - width: 120, + width: 160, fixed: 'right', align: 'center' } @@ -215,20 +218,20 @@ const approvalLogColumns = ref([ dataIndex: 'operateTime', key: 'operateTime', width: 180 + }, + { + title: '创建时间', + dataIndex: 'createdAt', + key: 'createdAt', + width: 180 }, { title: '审批意见', dataIndex: 'commentInfo', key: 'commentInfo', ellipsis: true, - width: 300 }, - { - title: '创建时间', - dataIndex: 'createdAt', - key: 'createdAt', - width: 180 - } + ]); // 数据变更记录弹框相关 @@ -250,13 +253,6 @@ const changeLogColumns = ref([ width: 120, align: 'center' }, - { - title: '变更内容', - dataIndex: 'changeJson', - key: 'changeJson', - width: 400, - ellipsis: true - }, { title: '操作人', dataIndex: 'operatorId', @@ -274,7 +270,14 @@ const changeLogColumns = ref([ dataIndex: 'createdAt', key: 'createdAt', width: 180 - } + }, + { + title: '变更内容', + dataIndex: 'changeJson', + key: 'changeJson', + ellipsis: true + }, + ]); const currentApprovalId = ref('');