|
@@ -9,6 +9,7 @@
|
|
|
:page.sync="page"
|
|
|
:search.sync="search"
|
|
|
:table-loading="loading"
|
|
|
+ :key="key"
|
|
|
:cell-style="cellStyle"
|
|
|
@selection-change="selectionChange"
|
|
|
@search-change="searchChange"
|
|
@@ -67,6 +68,9 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</template>
|
|
|
+ <template slot="belongToCorpNameSearch">
|
|
|
+ <crop-select v-model="search.belongToCorpId" :refresh="false" corpType="GS" style="width: 100%" ref="KHSelect"></crop-select>
|
|
|
+ </template>
|
|
|
<template slot-scope="scope" slot="userName">
|
|
|
<span style="color: #409EFF;cursor: pointer" @click.stop="beforeOpenPage(scope.row,scope.index)">{{ scope.row.userName }}</span>
|
|
|
</template>
|
|
@@ -106,6 +110,7 @@ export default {
|
|
|
total: 0,
|
|
|
pageSizes: [10, 50, 100, 200, 300, 400, 500]
|
|
|
},
|
|
|
+ key:0,
|
|
|
search: {},
|
|
|
show: true,
|
|
|
loading: false,
|
|
@@ -119,6 +124,7 @@ export default {
|
|
|
gainUser().then(res => {
|
|
|
this.userOption = res.data.data;
|
|
|
})
|
|
|
+ this.key++
|
|
|
let i = 0;
|
|
|
this.option.column.forEach(item => {
|
|
|
if (item.search) i++
|