Explorar el Código

发布失败提示

haojianlong hace 4 años
padre
commit
f61fd8b799
Se han modificado 1 ficheros con 6 adiciones y 2 borrados
  1. 6 2
      src/components/homeView/topoImageCard.vue

+ 6 - 2
src/components/homeView/topoImageCard.vue

@@ -97,8 +97,12 @@ export default {
           break;
         case "publish":
           publishGraph(pa).then(res => {
-            this.$message.success("发布成功");
-            this.$emit('publishSuc')
+            if (res.result == "success") {
+              this.$message.success("发布成功");
+              this.$emit('publishSuc')
+            } else {
+              this.$message.success("发布失败");
+            }
           });
           break;
       }