Kaynağa Gözat

定时刷新值班列表

libushang 9 ay önce
ebeveyn
işleme
e92ba00009

+ 14 - 2
src/views/emergencyCommandMap/RightSection/JointDuty.vue

@@ -104,6 +104,16 @@ const handleDownLoad = () => {
     document.body.removeChild(a);
   };
 };
+
+const nextFetchData = ()=> {
+  setTimeout(()=>{
+    getCheckinList(eventId.value).then((res) => {
+      listData.value = res.data;
+      nextFetchData();
+    });
+  }, 1500)
+};
+
 onMounted(() => {
   eventId.value = route.query.event_id as string;
   /*
@@ -145,11 +155,13 @@ onMounted(() => {
       duties: '职务'
     }
   ];
-  */
+  
   getCheckinList(eventId.value).then((res) => {
     listData.value = res.data;
-  });
+  });*/
   qrCodeUrl.value = import.meta.env.VITE_APP_BASE_API2 + 'api/event_management/checkin/qrcode?event_id=' + eventId.value;
+
+  nextFetchData();
 });
 </script>