Procházet zdrojové kódy

人员管理-个代管理-区域业绩管理

lihongxiao před 2 roky
rodič
revize
bf183b07b0

+ 2 - 2
config/dev.env.js

@@ -11,9 +11,9 @@ module.exports = merge(prodEnv, {
   // BASE_URL: '"http://192.168.0.115:8080/"' //凯森
   // BASE_URL: '"http:///192.168.0.106:8080/"',//屈晨
   // BASE_URL: '"http:///192.168.0.253:8080/"',//田智
-  // BASE_URL: '"http:///192.168.0.42:8080/"',//武鸿鹏
+  BASE_URL: '"http:///192.168.0.42:8080/"',//武鸿鹏
   // BASE_URL: '"http://192.168.1.101:8080/"',
-  BASE_URL: '"http:///192.168.0.22:8080/"',//郝宇
+  // BASE_URL: '"http:///192.168.0.22:8080/"',//郝宇
   // BASE_URL: '"http:///192.168.0.103:8080/"',//
 })
 

+ 0 - 1
src/views/PeopleManage/Generations/RegionalPerformance.vue

@@ -173,7 +173,6 @@
           <el-table-column type="index" label="序号" align="center" width="50"></el-table-column>
           <el-table-column v-if="isPersonnel" prop="userName" label="人员姓名" align="center" ></el-table-column>
           <el-table-column
-             v-else
               prop="insCompany"
               label="保险名称"
               align="center"

+ 3 - 5
src/views/PeopleManage/Player/RegionPerformanceManage.vue

@@ -207,7 +207,6 @@
           <el-table-column type="index" label="序号" align="center" width="50"></el-table-column>
           <el-table-column v-if="isPersonnel" prop="userName" label="人员姓名" align="center" ></el-table-column>
           <el-table-column
-             v-else
               prop="insCompany"
               label="保险名称"
               align="center"
@@ -328,8 +327,7 @@
         }, //表格参数
         formData: {
           // 列表查询条件
-          pageNum: 1,
-          pageSize: 20,
+         
           date: [], //日期区间数组
           createTimeStart: "", //日期开始时间
           createTimeEnd: "", //日期结束时间
@@ -512,7 +510,7 @@
             this.formData.level='1'
           }
         this.loading = true;
-        let res=await this.$api.user.quUserNumList({...this.formData,userId: this.userId,areaCode })
+        let res=await this.$api.user.quUserNumList({...this.formData,userId: this.userId,areaCode,pageNum:this.pageRequest.pageNum,pageSize:this.pageRequest.pageSize })
         if (res.code == 200) {
             this.pageRequest = {
                 content: res.data.records,
@@ -527,7 +525,7 @@
       },
       // 查询
       queryStaffInfo() {
-        this.formData.pageNum = 1;
+        this.pageRequest.pageNum = 1;
         this.findPage();
       },
     },