修改文档详情

This commit is contained in:
qq787203167
2022-02-24 10:35:59 +08:00
parent cc8ba8a2b7
commit c6e525aaf0
+11 -9
View File
@@ -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>