vue如何给form的一列加上超链接跳转
作者:互联网
现在想给途中的申请单号字段加上跳转,可以查看该申请单号对应的申请单
首先要给申请单号加上
scopedSlots: { customRender: 'idlist' }
然后在table里加
<span slot="idlist" slot-scope="text, record">
<a @click="handleView(record)">{{text}}</a>
</span>
再写一个handleView方法就ok啦
标签:vue,scopedSlots,form,加上,text,跳转,customRender,申请单 来源: https://www.cnblogs.com/feifeismile/p/14763012.html