吉安感知网项目-前端
shuishen
2026-02-09 d6260866520970082417a795f7dbe9806e1eb431
applications/drone-command/src/views/dataCockpit/components/SceneDeployment.vue
@@ -16,7 +16,7 @@
      <div class="content" v-loading="loading" element-loading-background="rgba(5, 5, 15, 0.6)"
         element-loading-text="加载中...">
         <EmptyState v-if="!sceneList.length && !loading" />
         <div class="scene-card" v-else v-for="(item, index) in sceneList" :key="index">
         <div class="scene-card" v-else v-for="(item, index) in sceneList" :key="index" @click="emit('click', item)">
            <div class="card-header">
               <el-tooltip class="title-tooltip" :content="item.sceneName || '-'" placement="top" effect="dark"
                  :show-after="200">
@@ -136,6 +136,8 @@
   }
}
const emit = defineEmits(['click'])
const fetchList = async () => {
   // 只有超过200ms才显示loading,避免闪烁
   loadingTimer.value = setTimeout(() => {