From 89380e6260a75d1d3b94de687ebcc2f50d50659d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 03 Feb 2026 15:44:33 +0800
Subject: [PATCH] feat:环境变量配置调整

---
 applications/task-work-order/src/views/orderView/flyingHand/index.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/applications/task-work-order/src/views/orderView/flyingHand/index.vue b/applications/task-work-order/src/views/orderView/flyingHand/index.vue
index c499452..78b1892 100644
--- a/applications/task-work-order/src/views/orderView/flyingHand/index.vue
+++ b/applications/task-work-order/src/views/orderView/flyingHand/index.vue
@@ -72,7 +72,7 @@
 					</el-table-column>
 					<el-table-column prop="skilledTaskType" show-overflow-tooltip label="擅长任务类型">
 						<template v-slot="{ row }">
-							{{ getDictLabel(row.skilledTaskType, dictObj.patrolTaskType) }}
+							{{ getDictLabel(row.skilledTaskType, dictObj.workOrderType) }}
 						</template>
 					</el-table-column>
 					<el-table-column label="操作" class-name="operation-btns" width="180">
@@ -136,7 +136,7 @@
 const flyingHandData = ref({})
 
 const dictObj = ref({
-	patrolTaskType: [], // 擅长任务类型
+	workOrderType: [], // 擅长任务类型
 	skilledUavType: [], // 擅长机型
 	technicalStrength: [] // 技术特长
 })
@@ -212,7 +212,7 @@
 
 // 获取字典
 function getDictList() {
-	getDictionaryByCode('patrolTaskType,skilledUavType,technicalStrength').then(res => {
+	getDictionaryByCode('workOrderType,skilledUavType,technicalStrength').then(res => {
 		dictObj.value = res.data.data
 	})
 }
@@ -233,4 +233,4 @@
     getFlyingHandList()
 })
 </script>
-<style scoped lang="scss"></style>
\ No newline at end of file
+<style scoped lang="scss"></style>

--
Gitblit v1.9.3