Ver Fonte

web-岗位统计调整

liao-sea há 3 meses atrás
pai
commit
856ec2e833

+ 17 - 2
vue/src/views/statistics/MonthSystemApplyCount.vue

@@ -147,6 +147,7 @@ const originalColumns = ref<Array<any>>([
       {title: '驿站人员数量', dataIndex: 'siteUserCount', key: 'siteUserCount', width: 120, align: "center"},
       {title: '录入企业数量', dataIndex: 'companyCount', key: 'companyCount', width: 120, align: "center"},
       {title: '收集岗位条数', dataIndex: 'postCount', key: 'postCount', width: 120, align: "center"},
+      {title: '收集岗位个数', dataIndex: 'postRecruitCount', key: 'postRecruitCount', width: 120, align: "center"},
       {title: '登记求职人数', dataIndex: 'jobUserCount', key: 'jobUserCount', width: 120, align: "center"},
     ]
   },
@@ -155,6 +156,7 @@ const originalColumns = ref<Array<any>>([
     children: [
       {title: '录入企业数量', dataIndex: 'companyCount', key: 'companyCount', width: 120, align: "center"},
       {title: '收集岗位条数', dataIndex: 'postCount', key: 'postCount', width: 120, align: "center"},
+      {title: '收集岗位个数', dataIndex: 'postRecruitCount', key: 'postRecruitCount', width: 120, align: "center"},
       {title: '登记求职人数', dataIndex: 'jobUserCount', key: 'jobUserCount', width: 120, align: "center"},
     ]
   }
@@ -242,6 +244,11 @@ function analysisByImageTable() {
       type: 'line',
       data: new Array<any>()
     },
+    {
+      name: '收集岗位个数',
+      type: 'line',
+      data: new Array<any>()
+    },
     {
       name: '登记求职人数',
       type: 'line',
@@ -260,7 +267,8 @@ function analysisByImageTable() {
         weekLineData[0].data.push(hjData.siteUserCount);
         weekLineData[1].data.push(hjData.companyCount);
         weekLineData[2].data.push(hjData.postCount);
-        weekLineData[3].data.push(hjData.jobUserCount);
+        weekLineData[3].data.push(hjData.postRecruitCount);
+        weekLineData[4].data.push(hjData.jobUserCount);
       }
     }
   }
@@ -281,7 +289,7 @@ function analysisByImageTable() {
   initBarImageTable(regionNameList, companyImageTableData, [], "companyImageTable", '录入企业数量');
   initBarImageTable(regionNameList, postImageTableData, [], "postImageTable", "收集岗位条数");
   initBarImageTable(regionNameList, jobUserImageTableData, [], "jobUserImageTable", "登记求职人数");
-  initLineImageTable(weekNameList, weekLineData, ["驿站人员数量", "录入企业数量", "收集岗位条数", "登记求职人数"], "weekCountImageTable", "全市就业驿站运行概括");
+  initLineImageTable(weekNameList, weekLineData, ["驿站人员数量", "录入企业数量", "收集岗位条数","收集岗位个数", "登记求职人数"], "weekCountImageTable", "全市就业驿站运行概括");
 }
 
 // 查询重置
@@ -335,6 +343,13 @@ function initTableData(result: any, resultKey: any, arr: any, arrNewKey: any, is
         width: 120,
         align: "center"
       },
+      {
+        title: '收集岗位个数',
+        dataIndex: 'postRecruitCount' + arrNewKey,
+        key: 'postRecruitCount' + arrNewKey,
+        width: 120,
+        align: "center"
+      },
       {
         title: '登记求职人数',
         dataIndex: 'jobUserCount' + arrNewKey,

+ 17 - 2
vue/src/views/statistics/YearSystemApplyCount.vue

@@ -147,6 +147,7 @@ const originalColumns = ref<Array<any>>([
       {title: '驿站人员数量', dataIndex: 'siteUserCount', key: 'siteUserCount', width: 120, align: "center"},
       {title: '录入企业数量', dataIndex: 'companyCount', key: 'companyCount', width: 120, align: "center"},
       {title: '收集岗位条数', dataIndex: 'postCount', key: 'postCount', width: 120, align: "center"},
+      {title: '收集岗位个数', dataIndex: 'postRecruitCount', key: 'postRecruitCount', width: 120, align: "center"},
       {title: '登记求职人数', dataIndex: 'jobUserCount', key: 'jobUserCount', width: 120, align: "center"},
     ]
   },
@@ -155,6 +156,7 @@ const originalColumns = ref<Array<any>>([
     children: [
       {title: '录入企业数量', dataIndex: 'companyCount', key: 'companyCount', width: 120, align: "center"},
       {title: '收集岗位条数', dataIndex: 'postCount', key: 'postCount', width: 120, align: "center"},
+      {title: '收集岗位个数', dataIndex: 'postRecruitCount', key: 'postRecruitCount', width: 120, align: "center"},
       {title: '登记求职人数', dataIndex: 'jobUserCount', key: 'jobUserCount', width: 120, align: "center"},
     ]
   }
@@ -242,6 +244,11 @@ function analysisByImageTable() {
       type: 'line',
       data: new Array<any>()
     },
+    {
+      name: '收集岗位个数',
+      type: 'line',
+      data: new Array<any>()
+    },
     {
       name: '登记求职人数',
       type: 'line',
@@ -260,7 +267,8 @@ function analysisByImageTable() {
         yearLineData[0].data.push(hjData.siteUserCount);
         yearLineData[1].data.push(hjData.companyCount);
         yearLineData[2].data.push(hjData.postCount);
-        yearLineData[3].data.push(hjData.jobUserCount);
+        yearLineData[3].data.push(hjData.postRecruitCount);
+        yearLineData[4].data.push(hjData.jobUserCount);
       }
     }
   }
@@ -281,7 +289,7 @@ function analysisByImageTable() {
   initBarImageTable(regionNameList, companyImageTableData, [], "companyImageTable", '录入企业数量');
   initBarImageTable(regionNameList, postImageTableData, [], "postImageTable", "收集岗位条数");
   initBarImageTable(regionNameList, jobUserImageTableData, [], "jobUserImageTable", "登记求职人数");
-  initLineImageTable(yearNameList, yearLineData, ["驿站人员数量", "录入企业数量", "收集岗位条数", "登记求职人数"], "yearCountImageTable", "全市就业驿站运行概括");
+  initLineImageTable(yearNameList, yearLineData, ["驿站人员数量", "录入企业数量", "收集岗位条数", "收集岗位个数", "登记求职人数"], "yearCountImageTable", "全市就业驿站运行概括");
 }
 
 // 查询重置
@@ -335,6 +343,13 @@ function initTableData(result: any, resultKey: any, arr: any, arrNewKey: any, is
         width: 120,
         align: "center"
       },
+      {
+        title: '收集岗位个数',
+        dataIndex: 'postRecruitCount' + arrNewKey,
+        key: 'postRecruitCount' + arrNewKey,
+        width: 120,
+        align: "center"
+      },
       {
         title: '登记求职人数',
         dataIndex: 'jobUserCount' + arrNewKey,