YaolongHan il y a 4 ans
Parent
commit
f71c44a33a
2 fichiers modifiés avec 5 ajouts et 4 suppressions
  1. 3 2
      src/components/baseEditer.vue
  2. 2 2
      src/components/edit/attr_select.vue

+ 3 - 2
src/components/baseEditer.vue

@@ -291,9 +291,10 @@ export default {
         });
         saveGroup(data).then(res => {
           Message.close()
-          console.log("aaaaaaaaaaaaaa", res);
           this.graphId = res.Data;
-        });
+        }).catch((err)=>{
+
+        })
       });
       bus.$on("exportByKey", val => {
         const list = this.fParser.spaceList

+ 2 - 2
src/components/edit/attr_select.vue

@@ -467,9 +467,9 @@ export default {
     // 编辑图例说明
     changeitemExplain(){
       bus.$emit("changeitemExplain",this.itemExplain);
-    }
+    },
     // 更改工程信息化数据
-    changeAttachObjectIds(){
+    changeAttachObjectIds(arr){
       bus.$emit('changeAttachObjectIds',arr)
     }
   },