现在想给途中的申请单号字段加上跳转,可以查看该申请单号对应的申请单
首先要给申请单号加上
scopedSlots: { customRender: 'idlist' }
然后在table里加
<span slot="idlist" slot-scope="text, record">
<a @click="handleView(record)">{{text}}</a>
</span>
再写一个handleView方法就ok啦
2024-02-20 19:36:22
现在想给途中的申请单号字段加上跳转,可以查看该申请单号对应的申请单
首先要给申请单号加上
scopedSlots: { customRender: 'idlist' }
然后在table里加
<span slot="idlist" slot-scope="text, record">
<a @click="handleView(record)">{{text}}</a>
</span>
再写一个handleView方法就ok啦