|
@@ -76,21 +76,20 @@
|
|
|
align="center"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <template v-for="(item, index) in tableSet">
|
|
|
- <el-table-column
|
|
|
- :width="item.width"
|
|
|
- :key="index"
|
|
|
- :label="item.label"
|
|
|
- align="center"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
- header-align="center"
|
|
|
- :prop="item.prop"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{ scope.row[item.prop] }}</span></template
|
|
|
- >
|
|
|
- </el-table-column></template
|
|
|
+ <el-table-column
|
|
|
+ v-for="(items, indexs) in tableSet"
|
|
|
+ :width="items.width"
|
|
|
+ :key="indexs"
|
|
|
+ :label="items.label"
|
|
|
+ align="center"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ header-align="center"
|
|
|
+ :prop="items.prop"
|
|
|
>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row[items.prop] }}</span></template
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<el-select
|