|
|
@@ -35,7 +35,7 @@
|
|
|
<el-col :span="9" class="zw-page-main">
|
|
|
<el-card>
|
|
|
<div class="zw-card-header" slot="header">
|
|
|
- <span class="zw-header-title details-title">员工明细</span>
|
|
|
+ <span class="zw-header-title details-title">员工明细 </span>
|
|
|
</div>
|
|
|
<div class="zw-page-main-list">
|
|
|
<el-container class="zw-container">
|
|
|
@@ -204,13 +204,13 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
this.staffList = [...this.staffList, ...list];
|
|
|
- this.pageNum = res.pageNum;
|
|
|
+ // this.pageNum = res.pageNum;
|
|
|
},
|
|
|
//查询更多员工
|
|
|
async getMore() {
|
|
|
- this.pageNum += 1;
|
|
|
+ this.pageNum = this.pageNum + 1;
|
|
|
let params = {
|
|
|
- pageNum: 1,
|
|
|
+ pageNum:this.pageNum,
|
|
|
size: this.size,
|
|
|
groupId: this.form.groupId
|
|
|
};
|