[Update] Remove debug msg

This commit is contained in:
ibuler
2020-04-23 20:53:34 +08:00
parent 6ed5123d21
commit a6b3410ff6
2 changed files with 1 additions and 7 deletions

View File

@@ -7,7 +7,7 @@
<div class="table-action-right-side">
<!-- <el-input v-if="hasSearch" v-model="keyword" suffix-icon="el-icon-search" :placeholder="$tc('Search')" class="right-side-item action-search" size="small" clearable @change="handleSearch" @input="handleSearch" />-->
<TagSearch v-if="hasSearch" class="right-side-item action-search" :tag-search="tagSearch" @tagSearch="handleTagSearch" />
<ActionsGroup :is-fa="true" :actions="defaultRightSideActions" class="right-side-actions right-side-item" />
<ActionsGroup :is-fa="true" :actions="rightSideActions" class="right-side-actions right-side-item" />
</div>
</slot>
</div>
@@ -187,11 +187,9 @@ export default {
handleBulkUpdate(rows) {
},
handleExport(row) {
console.log(row)
this.$eventBus.$emit('showExportDialog', row)
},
handleImport(row) {
console.log(row)
this.$eventBus.$emit('showImportDialog', row)
},
handleRefresh() {

View File

@@ -110,10 +110,6 @@ export default {
return this.cleanedActions.slice(2, this.cleanedActions.length)
}
},
mounted() {
this.$log.debug('actions', this.actions)
this.$log.debug('moreActions', this.moreActions)
},
methods: {
cleanAction(item, attr) {
const ok = item[attr]