修改已知bug1

This commit is contained in:
qq787203167
2022-06-02 16:56:03 +08:00
parent ecdb169318
commit 461247891c
2 changed files with 18 additions and 3 deletions
@@ -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'
},
{
@@ -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 || []
}