表格代碼:黃色部分為序號列關鍵代碼
上圖:
<el-table
:data="tableData"
border
height="480"
style="width: 100%">
<el-table-column
label="序號"
width="70px">
<template slot-scope="scope">
{{scope.$index+1}}
</template>
</el-table-column>
<el-table-column
prop="name"
label="項目編號">
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button
size="mini"
type="info"
@click="handleDelete(scope.$index, scope.row)">查看</el-button>
</template>
</el-table-column>
</el-table>