CzRger 1 year ago
parent
commit
f57d787480

+ 4 - 1
src/views/staging/zbgly/center/card.vue

@@ -71,7 +71,7 @@ import {
   getCurrentInstance,
   ComponentInternalInstance,
   toRefs,
-  nextTick
+  nextTick, onActivated
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
@@ -179,6 +179,9 @@ export default defineComponent({
         })
       }).catch(() => {})
     }
+    onActivated(() => {
+      initData()
+    })
     onMounted(() => {
       initData()
       store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_status')

+ 33 - 30
src/views/staging/zbgly/center/index.vue

@@ -205,7 +205,7 @@ import {
   getCurrentInstance,
   ComponentInternalInstance,
   toRefs,
-  nextTick
+  nextTick, onActivated
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
@@ -260,6 +260,35 @@ export default defineComponent({
     })
     const initStatisticData = () => {
       state.loading = true
+      if (state.dateType === '1' || state.dateType === '4') {
+        state.statisticData.day = {
+          cqs: {num: 0, total: 0},
+          qqs: {num: 0, total: 0},
+          cds: {num: 0, total: 0},
+          zts: {num: 0, total: 0},
+          cql: 0,
+          rztjl: 0,
+          zbtjl: 0,
+        }
+      } else if (state.dateType === '2' || state.dateType === '5') {
+        state.statisticData.week = {
+          ycqts: 0,
+          qqqk: 0,
+          rztjqk: 0,
+          cql: 0,
+          rztjl: 0,
+          zbtjl: 0
+        }
+      } else if (state.dateType === '3' || state.dateType === '6') {
+        state.statisticData.month = {
+          ycqts: 0,
+          qqqk: 0,
+          rztjqk: 0,
+          cql: 0,
+          rztjl: 0,
+          zbtjl: 0
+        }
+      }
       state.statisticTime = new Date()
       that.$api.zbglyWorkbenchAdminStatistics({
         type: state.dateType
@@ -301,37 +330,11 @@ export default defineComponent({
       })
     }
     watch(() => state.dateType, (n) => {
-      if (n === '1' || n === '4') {
-        state.statisticData.day = {
-          cqs: {num: 0, total: 0},
-          qqs: {num: 0, total: 0},
-          cds: {num: 0, total: 0},
-          zts: {num: 0, total: 0},
-          cql: 0,
-          rztjl: 0,
-          zbtjl: 0,
-        }
-      } else if (n === '2' || n === '5') {
-        state.statisticData.week = {
-          ycqts: 0,
-          qqqk: 0,
-          rztjqk: 0,
-          cql: 0,
-          rztjl: 0,
-          zbtjl: 0
-        }
-      } else if (n === '3' || n === '6') {
-        state.statisticData.month = {
-          ycqts: 0,
-          qqqk: 0,
-          rztjqk: 0,
-          cql: 0,
-          rztjl: 0,
-          zbtjl: 0
-        }
-      }
       initStatisticData()
     }, {immediate: true})
+    onActivated(() => {
+      initStatisticData()
+    })
     return {
       ...toRefs(state),
     }

+ 4 - 1
src/views/staging/zbgly/center/seat.vue

@@ -53,7 +53,7 @@ import {
   getCurrentInstance,
   ComponentInternalInstance,
   toRefs,
-  nextTick
+  nextTick, onActivated
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
@@ -107,6 +107,9 @@ export default defineComponent({
         state.loading = false
       })
     }
+    onActivated(() => {
+      initData()
+    })
     onMounted(() => {
       initData()
     })

+ 5 - 2
src/views/staging/zbgly/left/analysis-com.vue

@@ -7,7 +7,7 @@
           {label: '周报', value: '3'},
       ]" padding="6px 20px" type="type2" v-model:active="sourceType"/>
     </template>
-    <div class="content">
+    <div class="content" v-loading="loading">
       <template v-if="sourceType === '3'">
         <ButtonSwitchCom class="buttons" :options="[
           {label: '按周', value: '2'},
@@ -37,7 +37,7 @@ import {
   getCurrentInstance,
   ComponentInternalInstance,
   toRefs,
-  nextTick
+  nextTick, onActivated
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
@@ -107,6 +107,9 @@ export default defineComponent({
     }, {
       immediate: true
     })
+    onActivated(() => {
+      initAnalysisData()
+    })
     return {
       ...toRefs(state),
       chartDataCpt

+ 6 - 1
src/views/staging/zbgly/left/calendar-com.vue

@@ -99,7 +99,7 @@ import {
   getCurrentInstance,
   ComponentInternalInstance,
   toRefs,
-  nextTick
+  nextTick, onActivated
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
@@ -251,6 +251,11 @@ export default defineComponent({
     watch(() => state.deptId, (n) => {
       getCalendarInfo()
     })
+    onActivated(() => {
+      if (state.selectMonth) {
+        getCalendarInfo()
+      }
+    })
     onMounted(() => {
       initDictionary()
     })

+ 4 - 1
src/views/staging/zbgly/right/attendance-com.vue

@@ -61,7 +61,7 @@ import {
   getCurrentInstance,
   ComponentInternalInstance,
   toRefs,
-  nextTick
+  nextTick, onActivated
 } from 'vue'
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
@@ -115,6 +115,9 @@ export default defineComponent({
     }, {
       immediate: true
     })
+    onActivated(() => {
+      initStatisticData()
+    })
     return {
       ...toRefs(state),
       handleButtonClick