diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue index efaaec888..9a37a87be 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue @@ -1540,17 +1540,17 @@ export default { } if (this.editRowData.ssrq === "-") { this.editRowData.ssrq = ""; - } else if (this.editRowData.ssrq !== null && this.editRowData.ssrq !== "-" && this.editRowData.ssrq !== "") { + } else if (this.editRowData.ssrq&& this.editRowData.ssrq !== "-" ) { this.editRowData.ssrq = this.editRowData.ssrq.split(","); } if (this.editRowData.zccssrqgj === "-") { this.editRowData.zccssrqgj = ""; - } else if (this.editRowData.zccssrqgj !== null && this.editRowData.zccssrqgj !== "-" && this.editRowData.zccssrqgj !== "") { + } else if (this.editRowData.zccssrqgj && this.editRowData.zccssrqgj !== "-") { this.editRowData.zccssrqgj = this.editRowData.zccssrqgj.split(","); } if (this.editRowData.xcxssrqgj === "-") { this.editRowData.xcxssrqgj = ""; - } else if (this.editRowData.xcxssrqgj !== null && this.editRowData.xcxssrqgj !== "-" && this.editRowData.xcxssrqgj !== " ") { + } else if (this.editRowData.xcxssrqgj && this.editRowData.xcxssrqgj !== "-") { this.editRowData.xcxssrqgj = this.editRowData.xcxssrqgj.split(","); } this.drawerEdit = true;