|
@@ -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) {
|