在el-table-column中添加一个,重新把数据显示到div中,不然页面会没有数据显示
<el-table-column
prop="province"
label="代理单号"
width="150">
<template slot-scope="scope">
<div class="blue-font-color" @click="delProject(scope.row)">{{ scope.row.province }}</div>
</template>
</el-table-column>