diff --git a/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue b/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue index dccd60c8..1b40c368 100644 --- a/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue +++ b/src/views/workCenter/projectComplianceEvaluationProcess/ProjectComplianceEvaluationProcess.vue @@ -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' } } ])