update 批量删除修改

This commit is contained in:
赵霄
2023-09-13 13:32:23 +08:00
parent dc9a8efcab
commit 495dfe5863
3 changed files with 1 additions and 10 deletions
+1 -8
View File
@@ -133,7 +133,6 @@ export const ConfigurableTableMixin = {
customRender: item.dbFieldName
}
}
console.log(item)
tempColumns.push(item)
})
if (this.showAction && this.operateColumn) {
@@ -145,7 +144,6 @@ export const ConfigurableTableMixin = {
operateColumn.width = width || 100
tempColumns.push(operateColumn)
}
console.log(tempColumns)
return tempColumns
},
/**
@@ -291,7 +289,6 @@ export const ConfigurableTableMixin = {
if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
param.selections = this.selectedRowKeys.join(',')
}
console.log('导出参数', param)
// 加一个大的提示
const modalLoading = this.$info({
title: this.$t('tips'),
@@ -338,7 +335,6 @@ export const ConfigurableTableMixin = {
if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
param.selections = this.selectedRowKeys.join(',')
}
console.log('导出参数', param)
// 加一个大的提示
const modalLoading = this.$info({
title: this.$t('tips'),
@@ -377,10 +373,7 @@ export const ConfigurableTableMixin = {
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] + ','
}
let ids = this.selectedRowKeys.join(',')
const that = this
this.$confirm({
title: this.$t('confirmBatchDeletion'),