drafts.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. <template>
  2. <div id="drafts">
  3. <div class="tit">草稿箱</div>
  4. <div class="conent">
  5. <div class="left-nav">
  6. <!-- <Tree :data="treeData" @change="change"></Tree>-->
  7. <el-tree :data="treeData" :props="defaultProps" @node-click="handleNodeClick"></el-tree>
  8. </div>
  9. <div class="conent-right">
  10. <div class="conent-tit">
  11. <div class="tit-left" v-if="floorName">{{systemName}}-{{floorName}}</div>
  12. <div class="tit-right">
  13. <a-button @click="deleteBtn" :disabled="!floorName">删除</a-button>
  14. <a-button @click="publishBtn" :disabled="!floorName">发布</a-button>
  15. <a-button type="primary" @click="goToEditer" :disabled="!floorName">编辑</a-button>
  16. </div>
  17. </div>
  18. <div class="concent-bottom">
  19. <div class="map">
  20. <div class="canvas-container" ref="draftsCanvas">
  21. <div id="fengMap"></div>
  22. <canvas
  23. id="canvas"
  24. :width="canvasWidth"
  25. :height="canvasHeight"
  26. ref="canvas"
  27. tabindex="0"
  28. ></canvas>
  29. </div>
  30. </div>
  31. <div v-show="!legend" class="legend-btn" @click="legend = !legend">
  32. <a-icon type="right" style="color: #8D9399;font-size: 10px" />
  33. </div>
  34. <div v-show="legend" class="legend-btn legend-btn-close" @click="legend = !legend">
  35. <a-icon type="right" style="color: #8D9399;font-size: 10px" />
  36. </div>
  37. <div class="legend" v-if="legend">
  38. <div
  39. style="font-size:14px;color: #1F2429;padding-left: 12px;height: 40px;line-height: 40px"
  40. >可能需要补充的图例</div>
  41. <a-table
  42. v-loading="legendLoading"
  43. :columns="columns"
  44. :rowKey="(record,index)=>{return index}"
  45. :data-source="legendData"
  46. size="middle"
  47. :pagination="false"
  48. >
  49. <div slot="Url" slot-scope="text,record">
  50. <img
  51. v-if="record.Url"
  52. style=" width: 20px;height: 22px;"
  53. :src="'/serve/topology-wanda/Picture/query/'+ record.Url"
  54. alt
  55. />
  56. <span v-else>---</span>
  57. </div>
  58. <span></span>
  59. </a-table>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </template>
  66. <script>
  67. import Tree from "./../components/Tree/Tree.vue";
  68. import { SFengParser } from "@saga-web/feng-map";
  69. import { SFloorParser } from "@saga-web/big";
  70. import { FloorView } from "./../lib/FloorView";
  71. import { EditScence } from "@/components/mapClass/EditScence";
  72. import bus from "@/bus";
  73. import {
  74. readGroup,
  75. queryDraftGroup,
  76. queryStatistic,
  77. deleteGraph,
  78. publishGraph
  79. } from "@/api/editer.js";
  80. import { STopologyParser } from "./../lib/parsers/STopologyParser";
  81. import { uuid } from "@/components/mapClass/until";
  82. import { SImageItem } from "@saga-web/graph/lib";
  83. import store from "../store";
  84. import {Loading} from "element-ui";
  85. let fengmap = null;
  86. export default {
  87. components: { Tree },
  88. data() {
  89. return {
  90. treeData: [],
  91. columns: [
  92. {
  93. title: "名称", // 列的名称
  94. dataIndex: "Name", // 列的标识
  95. scopedSlots: { customRender: "Name" }
  96. },
  97. {
  98. title: "图例", // 列的名称
  99. dataIndex: "Url", // 列的标识
  100. scopedSlots: { customRender: "Url" }
  101. }
  102. ],
  103. legendData: [],
  104. legend: true,
  105. canvasWidth: 700,
  106. canvasHeight: 600,
  107. view: null,
  108. urlMsg: null,
  109. floorList: {},
  110. mapServerURL: "/wdfn",
  111. key: "23f30a832a862c58637a4aadbf50a566",
  112. appName: "万达可视化系统",
  113. defaultProps: {
  114. children: "Category",
  115. label: "Gcode"
  116. },
  117. projectId: "", //项目id
  118. fmapID: "", //蜂鸟地图id
  119. graphId: "", //绘制生成得图id
  120. legendLoading: false,
  121. systemName: "",
  122. floorName: "",
  123. floorId: "", //楼层id
  124. BuildingID: "1", // 建筑id
  125. categoryId: "" //系统类id
  126. };
  127. },
  128. methods: {
  129. handleNodeClick(data, node) {
  130. this.legendData = [];
  131. this.systemName = "";
  132. this.floorName = "";
  133. if (data.Gname) {
  134. this.systemName = node.parent.data.Gcode;
  135. this.floorName = data.Gcode;
  136. this.floorId = data.Gname;
  137. this.categoryId = node.parent.data.Id;
  138. this.getLegend();
  139. this.checkFloor(data.Gname);
  140. }
  141. },
  142. init() {
  143. // const loadings = this.$loading({type: 'global'});
  144. document.getElementById(`canvas`).focus();
  145. this.clearGraphy();
  146. this.scene = new EditScence();
  147. fengmap = new SFengParser(
  148. "fengMap",
  149. this.mapServerURL + "/fmap/" + this.fmapID,
  150. this.key,
  151. this.appName,
  152. null
  153. );
  154. },
  155. clearGraphy() {
  156. if (this.view) {
  157. this.view.scene = null;
  158. return;
  159. }
  160. this.view = new FloorView("canvas");
  161. document.getElementById("canvas").focus();
  162. },
  163. parserData(floor) {
  164. if (floor == "g80") {
  165. // 屋顶
  166. if (fengmap.frImg) {
  167. const imgItem = new SImageItem(
  168. null,
  169. `${this.mapServerURL}/webtheme/${this.fmapID}/${fengmap.frImg}`
  170. );
  171. this.scene.addItem(imgItem);
  172. this.view.scene = this.scene;
  173. this.view.fitSceneToView();
  174. this.loading = false;
  175. this.isQuerying = false;
  176. }
  177. } else {
  178. if (this.floorList[floor]) {
  179. fengmap.parseData(this.floorList[floor], res => {
  180. if (res.err) {
  181. console.log(res.err);
  182. return;
  183. }
  184. this.fParser = new SFloorParser(null);
  185. this.fParser.parseData(res);
  186. this.fParser.spaceList.forEach(t => {
  187. t.selectable = true;
  188. this.scene.addItem(t);
  189. });
  190. this.fParser.wallList.forEach(t => this.scene.addItem(t));
  191. this.fParser.virtualWallList.forEach(t => this.scene.addItem(t));
  192. this.fParser.doorList.forEach(t => this.scene.addItem(t));
  193. this.fParser.columnList.forEach(t => this.scene.addItem(t));
  194. this.fParser.casementList.forEach(t => this.scene.addItem(t));
  195. this.view.scene = this.scene;
  196. this.view.fitSceneToView();
  197. this.loading = false;
  198. this.isQuerying = false;
  199. console.log("success");
  200. });
  201. } else {
  202. console.log("楼层不正确");
  203. }
  204. }
  205. },
  206. getTreeData() {
  207. queryDraftGroup({ projectId: this.projectId }).then(res => {
  208. console.log(res);
  209. if (res.Result == "success") {
  210. this.treeData = res.Data;
  211. } else {
  212. this.treeData = [];
  213. this.$message.error("获取楼层结构失败");
  214. }
  215. });
  216. },
  217. //获取补充图例
  218. getLegend() {
  219. this.legendLoading = true;
  220. this.legendData = [];
  221. queryStatistic({
  222. projectId: this.projectId,
  223. flag: true,
  224. graphId: this.graphId
  225. }).then(res => {
  226. console.log(res);
  227. this.legendLoading = false;
  228. if (res.data.Result == "success") {
  229. const data = res.data.Data;
  230. data.map(item => {
  231. if (item.RealNum == 0) {
  232. this.legendData.push(item);
  233. }
  234. });
  235. } else {
  236. this.legendData = [];
  237. this.$message.error("获取楼层结构补充图例失败");
  238. }
  239. });
  240. },
  241. //删除
  242. deleteBtn() {
  243. const loadings = Loading.service({
  244. lock: true,
  245. text: "Loading",
  246. spinner: "el-icon-loading",
  247. background: "rgba(0, 0, 0, 0.7)"
  248. });
  249. deleteGraph([{ Id: this.graphId }]).then(res => {
  250. console.log(res);
  251. loadings.close();
  252. if (res.Result == "success") {
  253. this.$message.success("删除成功");
  254. this.getTreeData();
  255. this.legendData = [];
  256. } else {
  257. this.$message.error(res.Message);
  258. }
  259. });
  260. },
  261. //发布
  262. publishBtn() {
  263. const loadings = Loading.service({
  264. lock: true,
  265. text: "Loading",
  266. spinner: "el-icon-loading",
  267. background: "rgba(0, 0, 0, 0.7)"
  268. });
  269. const data = {
  270. BuildingID: this.BuildingID,
  271. CategoryID: this.categoryId,
  272. FloorID: this.floorId,
  273. GraphId: this.graphId,
  274. ProjectID: this.projectId,
  275. PubUser: ""
  276. };
  277. publishGraph(data).then(res => {
  278. loadings.close();
  279. if (res.Result == "success") {
  280. this.$message.success('发布成功');
  281. this.getTreeData();
  282. this.legendData = [];
  283. } else {
  284. this.$message.error(res.Message);
  285. }
  286. });
  287. },
  288. // 读取数据
  289. readGroup(floorid) {
  290. const data = {
  291. categoryId: this.categoryId,
  292. projectId: this.projectId,
  293. BuildingID: this.BuildingID, // 建筑ID
  294. FloorID: floorid // 楼层id
  295. };
  296. return readGroup(data);
  297. },
  298. /**
  299. * @name goToEditer
  300. * @description t跳转editer编辑器
  301. */
  302. goToEditer() {
  303. const data = `categoryId=${this.categoryId}&projectId=${this.projectId}&BuildingID=1&FloorID=${this.floorId}&FloorName=${this.floorName}&fmapID=${this.fmapID}`;
  304. const url =
  305. window.location.origin +
  306. "/wandaEditer/editer?" +
  307. encodeURIComponent(data);
  308. window.open(url, true);
  309. },
  310. // 切换草稿箱楼层
  311. checkFloor(floorid) {
  312. fengmap.loadMap(this.fmapID, resp => {
  313. this.floorList = resp;
  314. fengmap
  315. .loadTheme(
  316. `${this.mapServerURL}/webtheme/${this.fmapID}/${this.fmapID}.theme`
  317. )
  318. .then(response => {
  319. console.log("获取rf成功", response);
  320. this.parserData(floorid);
  321. });
  322. this.view.fitSceneToView();
  323. // 获取
  324. // 获取主题数据
  325. this.readGroup(floorid).then(data => {
  326. this.graphId = data.Data[0].ID;
  327. if (data.Data) {
  328. const parserData = new STopologyParser(null);
  329. parserData.parseData(data.Data[0].Elements);
  330. // 多边形
  331. parserData.zoneLegendList.forEach(t => {
  332. this.scene.addItem(t);
  333. this.scene.Nodes.push(t);
  334. });
  335. // 增加文字
  336. parserData.textMarkerList.forEach(t => {
  337. this.scene.addItem(t);
  338. this.scene.Markers.push(t);
  339. });
  340. // 增加图片
  341. parserData.imageMarkerList.forEach(t => {
  342. this.scene.addItem(t);
  343. this.scene.Markers.push(t);
  344. });
  345. // 增加直线
  346. parserData.lineMarkerList.forEach(t => {
  347. this.scene.addItem(t);
  348. this.scene.Markers.push(t);
  349. });
  350. // 增加图标类图例
  351. parserData.imageLegendList.forEach(t => {
  352. this.scene.addItem(t);
  353. this.scene.Nodes.push(t);
  354. });
  355. // 增加管线类
  356. // 增加图标类图例
  357. parserData.relationList.forEach(t => {
  358. this.scene.addItem(t);
  359. this.scene.Relations.push(t);
  360. });
  361. this.view.fitSceneToView();
  362. }
  363. });
  364. });
  365. }
  366. },
  367. mounted() {
  368. this.canvasWidth = this.$refs.draftsCanvas.offsetWidth - 10;
  369. this.canvasHeight = this.$refs.draftsCanvas.offsetHeight - 10;
  370. const href = window.location.href;
  371. let params = href.split("?")[1];
  372. if (!params) {
  373. // 参数有问题
  374. return false;
  375. }
  376. params = decodeURIComponent(params);
  377. const paramsArr = params.split("&");
  378. const obj = {};
  379. paramsArr.map(item => {
  380. const arr = item.split("=");
  381. obj[arr[0]] = arr[1];
  382. });
  383. console.log("obj", obj);
  384. this.projectId = obj.projectId ? obj.projectId : "1000423";
  385. this.fmapID = obj.fmapID ? obj.fmapID : "1000423_120";
  386. this.init();
  387. this.getTreeData();
  388. }
  389. };
  390. </script>
  391. <style lang="less" scoped>
  392. #drafts {
  393. widows: 100%;
  394. height: 100%;
  395. background: #f7f9fa;
  396. position: relative;
  397. .tit {
  398. width: 100%;
  399. height: 48px;
  400. display: flex;
  401. justify-content: center;
  402. align-items: center;
  403. border-bottom: #e4e5e7 solid 1px;
  404. font-size: 16px;
  405. font-weight: bold;
  406. }
  407. .conent {
  408. width: 100%;
  409. height: calc(100% - 48px);
  410. display: flex;
  411. position: relative;
  412. .left-nav {
  413. width: 224px;
  414. height: 100%;
  415. overflow-y: scroll;
  416. padding: 0 12px;
  417. /deep/ .el-tree {
  418. background: #f7f9fa;
  419. .el-tree-node__content {
  420. height: 38px;
  421. }
  422. /deep/.el-tree-node:focus > .el-tree-node__content {
  423. background-color: #e1f2ff !important;
  424. color: #0091ff !important;
  425. }
  426. }
  427. }
  428. .conent-right {
  429. flex: 1;
  430. height: 100%;
  431. background: #fff;
  432. .conent-tit {
  433. width: 100%;
  434. display: flex;
  435. height: 59px;
  436. border: 1px solid #eff0f1;
  437. align-items: center;
  438. justify-content: space-between;
  439. padding: 0 16px 0 16px;
  440. box-sizing: border-box;
  441. .tit-left {
  442. font-size: 16px;
  443. font-weight: bold;
  444. color: rgba(31, 35, 41, 1);
  445. }
  446. .tit-right {
  447. width: 246px;
  448. display: flex;
  449. justify-content: space-between;
  450. margin-left: auto;
  451. }
  452. }
  453. .concent-bottom {
  454. height: calc(100% - 61px);
  455. display: flex;
  456. position: relative;
  457. .map {
  458. flex: 1;
  459. position: relative;
  460. height: 100%;
  461. /*height: calc(100% - 61px);*/
  462. /*background: red;*/
  463. }
  464. .legend {
  465. position: absolute;
  466. right: 0;
  467. top: 0;
  468. width: 200px;
  469. border-left: 1px solid #eff0f1;
  470. height: 100%;
  471. overflow-y: scroll;
  472. }
  473. .legend-btn {
  474. position: absolute;
  475. right: 0px;
  476. top: 9px;
  477. width: 10px;
  478. height: 24px;
  479. background: rgba(228, 229, 231, 1);
  480. display: flex;
  481. justify-content: center;
  482. align-items: center;
  483. cursor: pointer;
  484. }
  485. .legend-btn-close {
  486. right: 200px;
  487. }
  488. }
  489. }
  490. }
  491. }
  492. #fengMap {
  493. position: absolute;
  494. width: 100px;
  495. height: 100px;
  496. z-index: -1;
  497. }
  498. .canvas-container {
  499. width: 100%;
  500. height: 100%;
  501. }
  502. </style>