前端在表格内编号处加上超链接,显示详情:
<el-table-column prop="id" label="名称" align="center" width="100">
<template slot-scope="props">
<el-link type="primary" @click="handle(props.row)" :underline="false">{{props.row.id}}</el-link>
</template>
</el-table-column>
前端在表格内编号处加上超链接,显示详情:
<el-table-column prop="id" label="名称" align="center" width="100">
<template slot-scope="props">
<el-link type="primary" @click="handle(props.row)" :underline="false">{{props.row.id}}</el-link>
</template>
</el-table-column>