Browse Source

值班员-按周统计

CzRger 1 year ago
parent
commit
2b30bbff1d
3 changed files with 84 additions and 23 deletions
  1. 6 0
      src/api/modules/workbench.ts
  2. 1 0
      src/store/modules/app.ts
  3. 77 23
      src/views/staging/zby/center/statistic.vue

+ 6 - 0
src/api/modules/workbench.ts

@@ -8,3 +8,9 @@ export const zbyWorkbenchCheckDay = (params: any) => handle({
   method: 'get',
   params
 })
+//  值班员 > 中间统计(周、月)
+export const zbyWorkbenchCheckWeek = (params: any) => handle({
+  url: `/${suffix}/workbench/check/week`,
+  method: 'get',
+  params
+})

+ 1 - 0
src/store/modules/app.ts

@@ -59,6 +59,7 @@ const getters = {
 					const obj = {
 						index: index,
 						date: [new Date(start), new Date(end)],
+						dateStr: [YMD(new Date(start)), YMD(new Date(end))],
 						yearWeekStr: `${year}年第${num}周`,
 						weekStr: `第${num}周`,
 						yearWeekSelectValue: `${year}年第${num}周(${YMD(start)}~${YMD(end)})`,

+ 77 - 23
src/views/staging/zby/center/statistic.vue

@@ -211,7 +211,7 @@
           </div>
         </template>
       </div>
-      <div class="content-item" :style="`opacity: ${new Date(dateValue.selectDay).getDay() === $store.state.app.weeklySubmitDay ? 1 : 0.3};`">
+      <div class="content-item" :style="`opacity: ${dateType !== 'day' || new Date(dateValue.selectDay).getDay() === $store.state.app.weeklySubmitDay ? 1 : 0.3};`">
         <div class="label">
           <img src="@/assets/images/business/center-statistics-icon.png"/>
           周报
@@ -305,6 +305,7 @@ import ButtonSwitchCom from '../../common/button-switch.vue'
 import * as Handle from '../../common/handle'
 import {ElMessage, ElMessageBox} from "element-plus";
 import {downLoadBlob} from "@/utils/downLoadUrl";
+import {zbyWorkbenchCheckWeek} from "@/api/modules/workbench";
 
 export default defineComponent({
   name: '',
@@ -333,40 +334,40 @@ export default defineComponent({
         },
         week: {
           sign: {
-            cqts: 20,
-            qqts: 2,
-            cdcs: 4,
-            ztcs: 1,
-            qkcs: 1
+            cqts: 0,
+            qqts: 0,
+            cdcs: 0,
+            ztcs: 0,
+            qkcs: 0
           },
           daily: {
-            ytjts: 20,
-            wtjts: 20,
-            ytjfs: 20
+            ytjts: 0,
+            wtjts: 0,
+            ytjfs: 0
           },
           weekly: {
-            ytjts: 20,
-            wtjts: 20,
-            ytjfs: 20
+            ytjts: 0,
+            wtjts: 0,
+            ytjfs: 0
           },
         },
         month: {
           sign: {
-            cqts: 120,
-            qqts: 12,
-            cdcs: 14,
-            ztcs: 11,
-            qkcs: 11
+            cqts: 0,
+            qqts: 0,
+            cdcs: 0,
+            ztcs: 0,
+            qkcs: 0
           },
           daily: {
-            ytjts: 120,
-            wtjts: 120,
-            ytjfs: 120
+            ytjts: 0,
+            wtjts: 0,
+            ytjfs: 0
           },
           weekly: {
-            ytjts: 120,
-            wtjts: 120,
-            ytjfs: 120
+            ytjts: 0,
+            wtjts: 0,
+            ytjfs: 0
           },
         },
       },
@@ -576,6 +577,53 @@ export default defineComponent({
         state.loading = false
       })
     }
+    const getWeekInfo = () => {
+      state.loading = true
+      state.dataInfo.week = {
+        sign: {
+          cqts: 0,
+          qqts: 0,
+          cdcs: 0,
+          ztcs: 0,
+          qkcs: 0
+        },
+        daily: {
+          ytjts: 0,
+          wtjts: 0,
+          ytjfs: 0
+        },
+        weekly: {
+          ytjts: 0,
+          wtjts: 0,
+          ytjfs: 0
+        },
+      }
+      that.$api.zbyWorkbenchCheckWeek({
+        deptId: store.state.app.userInfo.dept.id,
+        startTime: store.getters['app/yearWeeks'].map.get(state.dateValue.selectWeek).dateStr[0],
+        endTime: store.getters['app/yearWeeks'].map.get(state.dateValue.selectWeek).dateStr[1],
+      }).then(res => {
+        if (res.code === 200 && res.data) {
+          state.dataInfo.week.sign.cqts = res.data.days
+          state.dataInfo.week.sign.qqts = res.data.delDays
+          state.dataInfo.week.sign.cdcs = res.data.lateDays
+          state.dataInfo.week.sign.ztcs = res.data.earlyDays
+          state.dataInfo.week.sign.qkcs = res.data.lackDays
+          state.dataInfo.week.daily.ytjts = res.data.dailySubmit
+          state.dataInfo.week.daily.wtjts = res.data.dailyNotSubmit
+          state.dataInfo.week.daily.ytjfs = res.data.dailySubmit
+          state.dataInfo.week.weekly.ytjts = res.data.weekSubmit
+          state.dataInfo.week.weekly.wtjts = res.data.weekNotSubmit
+          state.dataInfo.week.weekly.ytjfs = res.data.weekSubmit
+        } else {
+          ElMessage.error(res.message)
+        }
+        state.loading = false
+      }).catch(() => {
+        state.loading = false
+      })
+    }
+    const getMonthInfo = () => {}
     const initDictionary = () => {
       store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_type')
       store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_status')
@@ -606,6 +654,12 @@ export default defineComponent({
     watch(() => state.dateValue.selectDay, () => {
       getDayInfo()
     })
+    watch(() => state.dateValue.selectWeek, () => {
+      getWeekInfo()
+    })
+    watch(() => state.dateValue.selectMonth, () => {
+      getMonthInfo()
+    })
     onMounted(() => {
       initDictionary()
       initStatic()