Unverified Commit 427a4707 authored by Jingyu FENG's avatar Jingyu FENG Committed by GitHub
Browse files

Merge pull request #2004 from WeBankPartners/2000_bug_fix

2000 bug fix
Showing with 8 additions and 3 deletions
+8 -3
......@@ -985,6 +985,7 @@ export default {
this.filterTableParams = ''
this.searchParameters = []
this.userTableColumns = []
this.seletedRows = []
this.isShowSearchConditions = true
},
changeEntityType () {
......@@ -1318,6 +1319,12 @@ export default {
}
},
changeActiveExecuteHistory (keyIndex) {
if (this.executeHistory.length === 0) {
this.clearTableSelect()
this.clearPlugin()
this.clearComplementParams()
return
}
this.displaySearchZone = false
this.displayResultTableZone = false
this.activeExecuteHistoryKey = keyIndex
......@@ -1407,9 +1414,7 @@ export default {
},
closeModal () {
this.operaModal = false
if (this.activeExecuteHistoryKey) {
this.changeActiveExecuteHistory(this.activeExecuteHistoryKey)
}
this.changeActiveExecuteHistory(this.activeExecuteHistoryKey)
}
},
components: {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment