diff --git a/jero-web/src/views/documentTools/virtualList/index.vue b/jero-web/src/views/documentTools/virtualList/index.vue index f52fd2748..8273419d4 100644 --- a/jero-web/src/views/documentTools/virtualList/index.vue +++ b/jero-web/src/views/documentTools/virtualList/index.vue @@ -194,19 +194,22 @@ title: this.$t('VirtualListName'), align: 'center', dataIndex: 'name', - width: 640, + width: '25%', + ellipsis: true, scopedSlots: { customRender: 'VirtualListName' } }, { title: this.$t('listStatus'), align: 'center', - width: 180, + width: '25%', + ellipsis: true, dataIndex: 'state_dictText' }, { title: this.$t('creater'), align: 'center', - width: 180, + width: '25%', + ellipsis: true, dataIndex: 'createBy' }, { diff --git a/jero-web/src/views/projectManagement/components/listEditModel.vue b/jero-web/src/views/projectManagement/components/listEditModel.vue index ac6b55142..1026690d9 100644 --- a/jero-web/src/views/projectManagement/components/listEditModel.vue +++ b/jero-web/src/views/projectManagement/components/listEditModel.vue @@ -962,6 +962,8 @@ this.designInitiatorList = res.result.certificationEngineerList || [] } else if (row.designInitiator == 3) { this.designInitiatorList = res.result.engineeringInterfacePersonList || [] + } else if (row.designInitiator == 0) { + this.designInitiatorList = res.result.studioPersonList || [] } else if (!row.designInitiator || row.designInitiator == '') { this.designInitiatorList = res.result.allPersonList || [] } @@ -972,6 +974,8 @@ this.designDutyList = res.result.certificationEngineerList || [] } else if (row.designDuty == 3) { this.designDutyList = res.result.engineeringInterfacePersonList || [] + } else if (row.designInitiator == 0) { + this.designDutyList = res.result.studioPersonList || [] } else if (!row.designDuty || row.designDuty == '') { this.designDutyList = res.result.allPersonList || [] } @@ -982,6 +986,8 @@ this.prehomoInitiatorList = res.result.certificationEngineerList || [] } else if (row.prehomoInitiator == 3) { this.prehomoInitiatorList = res.result.engineeringInterfacePersonList || [] + } else if (row.designInitiator == 0) { + this.prehomoInitiatorList = res.result.studioPersonList || [] } else if (!row.prehomoInitiator || row.prehomoInitiator == '') { this.prehomoInitiatorList = res.result.allPersonList || [] } @@ -992,6 +998,8 @@ this.prehomoDutyList = res.result.certificationEngineerList || [] } else if (row.prehomoDuty == 3) { this.prehomoDutyList = res.result.engineeringInterfacePersonList || [] + } else if (row.designInitiator == 0) { + this.prehomoDutyList = res.result.studioPersonList || [] } else if (!row.prehomoDuty || row.prehomoDuty == '') { this.prehomoDutyList = res.result.allPersonList || [] } @@ -1002,6 +1010,8 @@ this.verifyInitiatorList = res.result.certificationEngineerList || [] } else if (row.verifyInitiator == 3) { this.verifyInitiatorList = res.result.engineeringInterfacePersonList || [] + } else if (row.designInitiator == 0) { + this.verifyInitiatorList = res.result.studioPersonList || [] } else if (!row.verifyInitiator || row.verifyInitiator == '') { this.verifyInitiatorList = res.result.allPersonList || [] } @@ -1012,6 +1022,8 @@ this.verifyDutyList = res.result.certificationEngineerList || [] } else if (row.verifyDuty == 3) { this.verifyDutyList = res.result.engineeringInterfacePersonList || [] + } else if (row.designInitiator == 0) { + this.verifyDutyList = res.result.studioPersonList || [] } else if (!row.verifyDuty || row.verifyDuty == '') { this.verifyDutyList = res.result.allPersonList || [] }