fix 80025

This commit is contained in:
赵霄
2023-12-27 10:45:02 +08:00
parent 04d95ee1dd
commit ef56ba9be7
@@ -200,6 +200,7 @@
:all-disabled="expandTableDisabled"
form-is-depend="evaluationFeedback"
:extra-form="extraForm"
:scroll="{x: '100%'}"
@change="handleTableChange">
<!--条文内容-->
@@ -452,7 +453,7 @@ export default {
{
dataIndex: 'termNumber',
title: this.$t('projectLibrary.vehicleItemLibrary.standardNumberClauseNumber'),
width: 150,
width: 300,
align: 'center',
scopedSlots: { customRender: 'text' }
},
@@ -460,7 +461,7 @@ export default {
{
dataIndex: 'termName',
title: this.$t('workCenter.projectComplianceEvaluationProcess.standardNameClauseName'),
width: 160,
width: 300,
align: 'center',
scopedSlots: { customRender: 'text' }
},
@@ -468,7 +469,7 @@ export default {
{
dataIndex: 'termText',
title: this.$t('workCenter.projectComplianceEvaluationProcess.terms'),
width: 150,
width: 300,
align: 'center',
scopedSlots: { customRender: 'clauseContent' }
}
@@ -683,18 +684,11 @@ export default {
// 法规工程师发起
if (this.currentNode === ProjectComplianceEvaluationProcessNode.initiate.value) {
return this.basicColumns.concat([
// // 责任单位
// {
// title: this.$t('workCenter.projectComplianceEvaluationProcess.accountabilityUnit'),
// dataIndex: 'responsibleUnits',
// width: 150,
// scopedSlots: { customRender: 'depart' }
// },
// 责任单位负责人
{
title: this.$t('workCenter.projectComplianceEvaluationProcess.responsibleUnitHead'),
dataIndex: 'responsibleUnitLeaders',
width: 150,
width: 350,
scopedSlots: { customRender: 'user' }
},
// 操作
@@ -713,13 +707,13 @@ export default {
{
title: this.$t('workCenter.processCenter.initiator'),
dataIndex: 'depart',
width: 150
width: 200
},
// 模块负责人
{
title: this.$t('workCenter.standardConsultationProcess.moduleOwner'),
dataIndex: 'moduleOwners',
width: 150,
width: 200,
scopedSlots: { customRender: 'moduleOwner' }
},
// 操作
@@ -738,14 +732,14 @@ export default {
{
title: this.$t('workCenter.standardConsultationProcess.designEngineer'),
dataIndex: 'designEngineers',
width: 150,
width: 350,
scopedSlots: { customRender: 'designEngineers' }
},
// 操作
{
title: this.$t('operation'),
fixed: 'right',
width: 120,
width: 150,
scopedSlots: { customRender: 'notInvolved' }
}
])