update 国内标准、选择标准抽屉

This commit is contained in:
赵霄
2023-09-18 14:59:00 +08:00
parent 41b7cd15c6
commit b9d19e081b
6 changed files with 27 additions and 19 deletions
+1 -4
View File
@@ -180,10 +180,7 @@ export const JeroListMixin = {
if (this.selectedRowKeys.length <= 0) {
this.$message.warning(this.$t('selectARecord'))
} else {
let ids = ''
for (let a = 0; a < this.selectedRowKeys.length; a++) {
ids += this.selectedRowKeys[a] + ','
}
const ids = this.selectedRowKeys.join(',')
const that = this
this.$confirm({
title: this.$t('confirmBatchDeletion'),