|
@@ -19,7 +19,7 @@
|
|
<el-input v-model="search.managerName" style="width: 250px" placeholder="业务经理/风控经理" clearable />
|
|
<el-input v-model="search.managerName" style="width: 250px" placeholder="业务经理/风控经理" clearable />
|
|
</div>
|
|
</div>
|
|
<div class="leftBtn">
|
|
<div class="leftBtn">
|
|
- <el-button type="primary" @click="fetchData">查询</el-button>
|
|
|
|
|
|
+ <el-button type="primary" @click="searchData">查询</el-button>
|
|
</div>
|
|
</div>
|
|
<div class="leftBtn">
|
|
<div class="leftBtn">
|
|
<el-button v-power="'batch_change_projectManager'" type="primary" @click="batchHandoverPM">批量移交业务经理</el-button>
|
|
<el-button v-power="'batch_change_projectManager'" type="primary" @click="batchHandoverPM">批量移交业务经理</el-button>
|
|
@@ -137,7 +137,7 @@ export default {
|
|
this.loading = true
|
|
this.loading = true
|
|
const params = {
|
|
const params = {
|
|
...this.search,
|
|
...this.search,
|
|
- page: 1,
|
|
|
|
|
|
+ page: this.page,
|
|
rows: this.size
|
|
rows: this.size
|
|
}
|
|
}
|
|
getUserList(params).then(({ rows, records }) => {
|
|
getUserList(params).then(({ rows, records }) => {
|
|
@@ -151,6 +151,10 @@ export default {
|
|
this.loading = false
|
|
this.loading = false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ searchData() {
|
|
|
|
+ this.page = 1
|
|
|
|
+ this.fetchData()
|
|
|
|
+ },
|
|
|
|
|
|
handlerOperate(type, row) {
|
|
handlerOperate(type, row) {
|
|
if (type === 'receive') { // 认领
|
|
if (type === 'receive') { // 认领
|