diff --git a/jero-web/src/components/tableDate/index.vue b/jero-web/src/components/tableDate/index.vue index 11cecda6c..b81c4e23a 100644 --- a/jero-web/src/components/tableDate/index.vue +++ b/jero-web/src/components/tableDate/index.vue @@ -26,8 +26,8 @@ - - {{text}} + + {{text}} @@ -98,10 +98,12 @@ } }) this.searchParmes = search + this.getData() this.getTableList() }) eventBUs.$on('searchReset', target => { this.searchParmes = {} + this.getData() this.getTableList() }) this.getData() @@ -129,9 +131,11 @@ } } }) - let width + let width = 0 if (this.OperationList.length > 0) { - width = this.OperationList.length * 55 + this.OperationList.forEach((res) => { + width += res.text.length * 8 + width + }) } if (this.showAction) { this.columns.push({ @@ -184,11 +188,9 @@ OperationClick(ol, item) { this.$emit(ol.ClickEvent, item) }, - detailClick(item,index){ - console.log(item) - console.log(index) - // this.$emit('detailClick',item) - }, + detailClick(item, index) { + this.$emit('detailClick',item) + } } }