吉安感知网项目-前端
shuishen
2026-01-20 7b8789643b13dba1f2190f3bde92a7e4fa8eaafc
applications/drone-command/src/views/areaManage/sceneConfig/index.vue
@@ -21,7 +21,7 @@
               @change="handleSearch"
            >
               <el-option
                  v-for="item in dictObj.sceneType"
                  v-for="item in dictObj.CommandSceneType"
                  :key="item.dictKey"
                  :label="item.dictValue"
                  :value="item.dictKey"
@@ -67,7 +67,7 @@
               <el-table-column prop="sceneName" show-overflow-tooltip label="场景名称" />
               <el-table-column prop="sceneType" show-overflow-tooltip label="场景类型">
                  <template v-slot="{ row }">
                     {{ getDictLabel(row.sceneType, dictObj.sceneType) }}
                     {{ getDictLabel(row.sceneType, dictObj.CommandSceneType) }}
                  </template>
               </el-table-column>
               <el-table-column show-overflow-tooltip label="指挥点位置">
@@ -193,7 +193,7 @@
// 获取字典
function getDictList() {
   getDictionaryByCode('sceneType,deviceMode,areaType,sceneStatus').then(res => {
   getDictionaryByCode('CommandSceneType,deviceMode,areaType,sceneStatus').then(res => {
      dictObj.value = res.data.data
   })
}