Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
yanyizhou
2021-11-28 11:12:04 +08:00
@@ -1142,7 +1142,8 @@ export default {
this.selectedList = [] this.selectedList = []
this.selectedAllList = data this.selectedAllList = data
for (let i = 0; i < data.length; i++) { for (let i = 0; i < data.length; i++) {
this.selectedList.push(data[i].id,data[i].editFlag) this.selectedList.push(data[i].id)
this.selectedList1.push(data[i].editFlag)
} }
}, },
// 分页点击后方法 // 分页点击后方法
@@ -1407,6 +1408,7 @@ export default {
confirmButtonClass: 'common-button-primary', confirmButtonClass: 'common-button-primary',
roundButton: false roundButton: false
}).then(() => { }).then(() => {
this.loading = true
this.deleteItemsModal = false this.deleteItemsModal = false
this.$http.post('lawss/sarFileSplitItems/batchDeleteItems', { this.$http.post('lawss/sarFileSplitItems/batchDeleteItems', {
ids: this.selectedList.join(','), ids: this.selectedList.join(','),
@@ -1427,6 +1429,7 @@ export default {
nodeId = currentNode.id nodeId = currentNode.id
} }
this.selectSarMenu.id = nodeId this.selectSarMenu.id = nodeId
this.loading = false
}, e => { }, e => {
}) })
}).catch(() => {}) }).catch(() => {})