|
@@ -12,7 +12,7 @@
|
|
|
<div class="tit-left" v-if="floorName">{{systemName}}-{{floorName}}</div>
|
|
|
<div class="tit-right">
|
|
|
<a-button @click="deleteBtn">删除</a-button>
|
|
|
- <a-button>发布</a-button>
|
|
|
+ <a-button @click="publishBtn">发布</a-button>
|
|
|
<a-button type="primary" @click="goToEditer">编辑</a-button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -69,7 +69,8 @@ import {
|
|
|
readGroup,
|
|
|
queryDraftGroup,
|
|
|
queryStatistic,
|
|
|
- deleteGraph
|
|
|
+ deleteGraph,
|
|
|
+ publishGraph
|
|
|
} from "@/api/editer.js";
|
|
|
import { STopologyParser } from "./../lib/parsers/STopologyParser";
|
|
|
import { uuid } from "@/components/mapClass/until";
|
|
@@ -254,6 +255,19 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ //发布
|
|
|
+ publishBtn(){
|
|
|
+ this.spinning = true;
|
|
|
+ publishGraph({graphId :this.graphId ,pubUser:''}).then(res=>{
|
|
|
+ this.spinning = false;
|
|
|
+ if(res.Result =='success'){
|
|
|
+ this.$message.success(res.Message)
|
|
|
+ }else{
|
|
|
+ this.$message.error(res.Message)
|
|
|
+
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
/**
|
|
|
* @name goToEditer
|
|
|
* @description t跳转editer编辑器
|