From 9ea5ff67655241271bdf04bb50ca3a8d60c4e22a Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期二, 11 八月 2026 15:07:02 +0800
Subject: [PATCH] fix: 用河南鹤壁代码覆盖山西长治

---
 src/views/personnelManagement/attendanceCheckin/checkinRules/index.vue |   31 +++++++------------------------
 1 files changed, 7 insertions(+), 24 deletions(-)

diff --git a/src/views/personnelManagement/attendanceCheckin/checkinRules/index.vue b/src/views/personnelManagement/attendanceCheckin/checkinRules/index.vue
index d09329b..c47dd2e 100644
--- a/src/views/personnelManagement/attendanceCheckin/checkinRules/index.vue
+++ b/src/views/personnelManagement/attendanceCheckin/checkinRules/index.vue
@@ -74,39 +74,23 @@
           </template>
         </el-table-column>
         <el-table-column prop="locationName"
-                         label="鍦扮偣鍚嶇О">
-          <template #default="scope">
-            {{ scope.row.locationName || "-" }}
-          </template>
-        </el-table-column>
+                         label="鍦扮偣鍚嶇О" />
         <el-table-column prop="longitude"
-                         label="缁忓害">
-          <template #default="scope">
-            {{ scope.row.longitude ?? "-" }}
-          </template>
-        </el-table-column>
+                         label="缁忓害" />
         <el-table-column prop="latitude"
-                         label="绾害">
-          <template #default="scope">
-            {{ scope.row.latitude ?? "-" }}
-          </template>
-        </el-table-column>
+                         label="绾害" />
         <el-table-column prop="radius"
-                         label="鎵撳崱鑼冨洿(m)">
-          <template #default="scope">
-            {{ scope.row.radius ?? "-" }}
-          </template>
-        </el-table-column>
+                         label="鎵撳崱鑼冨洿(m)" />
         <el-table-column prop="startAt"
                          label="涓婄彮鏃堕棿">
           <template #default="scope">
-            {{ scope.row.startAt || "-" }}
+            {{ scope.row.startAt }}
           </template>
         </el-table-column>
         <el-table-column prop="endAt"
                          label="涓嬬彮鏃堕棿">
           <template #default="scope">
-            {{ scope.row.endAt || "-" }}
+            {{ scope.row.endAt }}
           </template>
         </el-table-column>
         <el-table-column label="鎿嶄綔"
@@ -248,8 +232,7 @@
     tableLoading.value = true;
     getAttendanceRules({ ...page, ...searchForm })
       .then(res => {
-        const records = Array.isArray(res?.data?.records) ? res.data.records : [];
-        tableData.value = records.filter(r => String(r?.id) !== "999");
+        tableData.value = res.data.records;
         page.total = res.data.total;
       })
       .finally(() => {

--
Gitblit v1.9.3