diff --git a/src/components/jero/JTable.vue b/src/components/jero/JTable.vue index 97bac347..05b490a8 100644 --- a/src/components/jero/JTable.vue +++ b/src/components/jero/JTable.vue @@ -269,7 +269,6 @@ export default { ...midArr, ...endArr ] - console.log(this.resultColumns) return this.resultColumns }, // 初始化表格拖拽 diff --git a/src/components/menu/index.js b/src/components/menu/index.js index 6a42d0d8..61558db3 100644 --- a/src/components/menu/index.js +++ b/src/components/menu/index.js @@ -180,7 +180,6 @@ export default { return null } if (icon && icon.split('-')[0] === 'icon') { - console.log(icon.split('-')[0]) return ( ) diff --git a/src/mixins/ConfigurableTableMixin.js b/src/mixins/ConfigurableTableMixin.js index ac6831d9..7731842d 100644 --- a/src/mixins/ConfigurableTableMixin.js +++ b/src/mixins/ConfigurableTableMixin.js @@ -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'),