请问怎样在表格里加上外部链接?
在Online开发里可以配置字段href实现表格里加上外部链接。但是生成代码之后,表格里的链接没有了,请问怎样手动在代码里实现?
已解决
1.加一个slot<span slot="supplierPart" slot-scope="text">
<a @click="handleClickSupplierPart(text)">{{text}}</a>
</span>2.引用slot{
title:'Supplier Part #',
align:"center",
dataIndex: 'supplierPart',
scopedSlots: {customRender: 'supplierPart'}
},3.js实现handleClickSupplierPart(text) {
if (text) {
window.open('https://www.baidu.com?q=' + text, '_blank')
}
}
页:
[1]