|
@@ -14,7 +14,7 @@
|
|
|
<div class="tabbox">
|
|
|
<el-table
|
|
|
height="calc(100% - 40px)" class="com-table" ref="multipleTable" :data="tableData"
|
|
|
- tooltip-effect="dark" size="small" border style="width: 100%" v-loading="loading"
|
|
|
+ tooltip-effect="dark" size="small" border style="width: 100%" v-loading="loading" :key= Math.random()
|
|
|
>
|
|
|
<el-table-column width="150" v-for="item in tableHead" :prop=item.prop :label=item.label>
|
|
|
</el-table-column>
|
|
@@ -232,7 +232,7 @@ export default {
|
|
|
},
|
|
|
// 分页
|
|
|
currchange(v) {
|
|
|
- this.page = v;
|
|
|
+ this.page = v;
|
|
|
this.getTableHeadlist();
|
|
|
this.handleInit();
|
|
|
},
|