소스 검색

fix: 1111111

刘洋 8 달 전
부모
커밋
8787fdff4d
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      src/views/order/reservation-set/index.vue

+ 5 - 3
src/views/order/reservation-set/index.vue

@@ -150,9 +150,11 @@
   onMounted(() => {});
   const search = () => {
     getTimeSilce();
-    getDateAndTimeList({ examSiteId: searchModel.examSiteId }).then((res) => {
-      tableData.value = res || [];
-    });
+    getDateAndTimeList({ examSiteId: searchModel.examSiteId || null }).then(
+      (res) => {
+        tableData.value = res || [];
+      }
+    );
   };
   watch(
     () => searchModel.examSiteId,