Browse Source

【值班系统】后台管理删除日志,值班人员-工作台日志周报列表切换的时候列表数据没有更新,F5刷新整个页面才会重新请求接口

CzRger 1 year ago
parent
commit
4c69109a7d

+ 23 - 10
src/views/staging/zby/right/daily-weekly-com.vue

@@ -96,8 +96,9 @@ export default defineComponent({
         state.showWeekly = true
       }
     }
-    const initDaily = async () => {
-      await that.$api.getDailyReportList({
+    const initDaily = () => {
+      state.loading = true
+      that.$api.getDailyReportList({
         pageNum: 1,
         pageSize: 11,
       }).then((res: any) => {
@@ -106,11 +107,14 @@ export default defineComponent({
         } else {
           ElMessage.error(res.message)
         }
+        state.loading = false
       }).catch(() => {
+        state.loading = false
       })
     }
-    const initWeekly = async () => {
-      await that.$api.getWeekReportList({
+    const initWeekly = () => {
+      state.loading = true
+      that.$api.getWeekReportList({
         pageNum: 1,
         pageSize: 11,
       }).then((res: any) => {
@@ -119,17 +123,26 @@ export default defineComponent({
         } else {
           ElMessage.error(res.message)
         }
+        state.loading = false
       }).catch(() => {
+        state.loading = false
       })
     }
+    watch(() => state.sourceType, (n) => {
+      if (n === '1') {
+        initDaily()
+      } else {
+        initWeekly()
+      }
+    }, {
+      immediate: true
+    })
     onActivated(() => {
-      state.loading = true
-      Promise.all([
-        initDaily(),
+      if (state.sourceType === '1') {
+        initDaily()
+      } else {
         initWeekly()
-      ]).then(() => {
-        state.loading = false
-      })
+      }
     })
     return {
       ...toRefs(state),

+ 1 - 1
src/views/system/public-configuration/index.vue

@@ -175,7 +175,7 @@ export default defineComponent({
         'week.submit.time': false,
         'week.remind.time': false,
       },
-      updateHour: '01'
+      updateHour: '20'
     })
     const initDictionary = () => {
       store.dispatch('dictionary/LOAD_DICT_LIST', 'config_sign_remind_time')