修改文档详情
This commit is contained in:
@@ -26,8 +26,8 @@
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
<span slot="detailClick" slot-scope="text,record,ol">
|
||||
<a class="text" @click="detailClick(record,ol)">{{text}}</a>
|
||||
<span slot="detailClick" slot-scope="text,record">
|
||||
<a class="text" @click="detailClick(record)">{{text}}</a>
|
||||
</span>
|
||||
</a-table>
|
||||
</div>
|
||||
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user