Parcourir la source

docs(HomePageSystemStatus): 将"科长"修改为"大队长"以更新职位名称

更新界面显示和代码注释中的职位名称,从"科长"改为"大队长"以反映实际职位变更
huoyi il y a 4 semaines
Parent
commit
bebc50a46b

+ 5 - 5
src/views/dataBigScreen/dashboard/components/pageItems/HomePageSystemStatus.vue

@@ -24,9 +24,9 @@
24 24
       </div>
25 25
     </div>
26 26
 
27
-    <!-- 今日上岗长 -->
27
+    <!-- 今日上岗大队长 -->
28 28
     <div class="today-duty-section" v-if="dutySectionMaster">
29
-      <div class="duty-label">今日上岗长:</div>
29
+      <div class="duty-label">今日上岗大队长:</div>
30 30
       <div class="duty-name">{{ dutySectionMaster }}</div>
31 31
     </div>
32 32
 
@@ -67,10 +67,10 @@ const attendanceStats = ref({})
67 67
 const accuracyStatistics = ref({})
68 68
 const userStore = useUserStore()
69 69
 
70
-// 今日上岗长数据
70
+// 今日上岗大队长数据
71 71
 const dutySectionMaster = ref('')
72 72
 
73
-// 获取今日上岗长数据
73
+// 获取今日上岗大队长数据
74 74
 const fetchDutySectionMaster = async () => {
75 75
   try {
76 76
     // 调用接口获取今日上岗用户列表
@@ -87,7 +87,7 @@ const fetchDutySectionMaster = async () => {
87 87
       dutySectionMaster.value = '暂无科长上岗'
88 88
     }
89 89
   } catch (error) {
90
-    console.error('获取今日上岗长数据失败:', error)
90
+    console.error('获取今日上岗大队长数据失败:', error)
91 91
     // 出错时使用默认值
92 92
     dutySectionMaster.value = ''
93 93
   }