Przeglądaj źródła

refactor 添加设备,添加空间两个弹窗, 分区下实例下拉菜单,数据无本地名称时,使用占位符 --

yunxing 4 lat temu
rodzic
commit
06d3f495df

+ 2 - 5
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -214,7 +214,7 @@ export default {
         },
     },
     // eslint-disable-next-line @typescript-eslint/no-empty-function
-    created() {},
+    created() { },
     mounted() {
         /*   setTimeout(() => {
             this.showPopover = true;
@@ -313,11 +313,8 @@ export default {
                 zoneTypeList: this.spacePartitionType,
             };
             const res = await PartiInstancQuery(postParams);
-            console.log("==================");
-            console.log(res);
-            console.log(res.content);
             const data = res.content.map((v) => {
-                return { id: v.id, name: v.localName };
+                return { id: v.id, name: v.localName || '--' };
             });
             this.spacePartitionInstance = [];
             if (data.length) {

+ 1 - 1
src/components/editview/leftToolBar/addSpaceDialog.vue

@@ -230,7 +230,7 @@ export default {
             };
             const res = await PartiInstancQuery(postParams);
             const data = res.content.map((v) => {
-                return { id: v.id, name: v.localName };
+                return { id: v.id, name: v.localName || '--' };
             });
             this.spacePartitionInstance = [];
             this.selectData = data;