1 <el-table :data="tableData" style="width: 100%;margin-top:10px;" highlight-current-row height="400" border row-key="id" :tree-props="{children: ‘children‘}"> 2 <el-table-column prop="date" label="零件号" width="325"></el-table-column> 3 <el-table-column prop="name" label="名称" width="220"></el-table-column> 4 <el-table-column label="进度"> 5 <template slot-scope="scope"> 6 <span>{{scope.row.date}}/{{scope.row.name}}</span> 7 </template> 8 </el-table-column> 9 <!-- <el-table-column prop="name" label="状态"></el-table-column> --> 10 </el-table>
原文:https://www.cnblogs.com/mjpblog/p/12172230.html