top_toolbar.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <template>
  2. <div id="top_toolbar">
  3. <!-- 顶部编辑器 -->
  4. <div class="tit">
  5. <!-- <a-icon type="left" /> -->
  6. {{this.urlMsg.floorName}}
  7. </div>
  8. <div class="tool">
  9. <ul>
  10. <li @click="saveMsg">
  11. <img class="lock" :src="require(`./../../assets/images/t-save.png`)" alt />
  12. <span>保存</span>
  13. </li>
  14. <!-- <li>
  15. <a-icon type="edit" />
  16. <span>撤销</span>
  17. </li>
  18. <li>
  19. <a-icon type="edit" />
  20. <span>重做</span>
  21. </li>-->
  22. <li class="zoom-window">
  23. <div>
  24. <img class="lock" :src="require(`./../../assets/images/缩小.png`)" alt />
  25. <span class="percentage">100%</span>
  26. <img class="lock" :src="require(`./../../assets/images/放大 amplification.png`)" alt />
  27. </div>
  28. <span>缩放窗口</span>
  29. </li>
  30. <li>
  31. <a-dropdown :trigger="['click']">
  32. <div class="ant-dropdown-link dropdown-flex" @click="e => e.preventDefault()">
  33. <div>
  34. <img class="lock" :src="require(`./../../assets/images/t-format.png`)" alt />
  35. <div>对齐</div>
  36. </div>
  37. <a-icon type="caret-down" class="down-icon" />
  38. </div>
  39. <a-menu slot="overlay">
  40. <a-menu-item
  41. v-for="item in alignmentOptions"
  42. :key="item.value"
  43. @click="changeAlignItem(item.value)"
  44. >
  45. <img
  46. style="width: 16px;margin-right: 5px;"
  47. :src="require(`./../../assets/images/`+item.img+`.png`)"
  48. alt
  49. />
  50. <span>{{item.label}}</span>
  51. </a-menu-item>
  52. </a-menu>
  53. </a-dropdown>
  54. </li>
  55. <!-- <li>
  56. <a-icon type="edit" />
  57. <span>图层</span>
  58. </li>
  59. <li>
  60. <a-icon type="edit" />
  61. <span>组合</span>
  62. </li>
  63. <li>
  64. <a-icon type="edit" />
  65. <span>打散</span>
  66. </li>-->
  67. <li @click="lockItem">
  68. <Icon :name="!isLock?'lock':'unlock'" />
  69. <span>{{isLock?"解锁":"锁定"}}</span>
  70. </li>
  71. <li @click="deleteItem">
  72. <a-icon type="delete" />
  73. <span>删除</span>
  74. </li>
  75. </ul>
  76. </div>
  77. <div class="btn-list">
  78. <div class="btn-list-item" @click="publishMap">
  79. <Icon name="release" />
  80. <span>发布</span>
  81. </div>
  82. </div>
  83. </div>
  84. </template>
  85. <script>
  86. import bus from "@/bus";
  87. import { SGraphLayoutType } from "@saga-web/graph/lib";
  88. import systym from "./codeMapSystem.js"
  89. export default {
  90. data() {
  91. return {
  92. isLock: false, //是否锁定
  93. focusItem: null,
  94. alignmentOptions: [
  95. //对齐数据
  96. {
  97. value: SGraphLayoutType.Left,
  98. label: "左对齐",
  99. img: "t-left"
  100. },
  101. {
  102. value: SGraphLayoutType.Right,
  103. label: "右对齐",
  104. img: "t-right"
  105. },
  106. {
  107. value: SGraphLayoutType.Top,
  108. label: "顶对齐",
  109. img: "t-top"
  110. },
  111. {
  112. value: SGraphLayoutType.Bottom,
  113. label: "底对齐",
  114. img: "t-bottom"
  115. },
  116. {
  117. value: SGraphLayoutType.Center,
  118. label: "水平居中对齐",
  119. img: "t-center"
  120. },
  121. {
  122. value: SGraphLayoutType.Middle,
  123. label: "垂直居中对齐",
  124. img: "t-topandbottm"
  125. },
  126. {
  127. value: SGraphLayoutType.Vertical,
  128. label: "垂直分布",
  129. img: "t-vertical"
  130. },
  131. {
  132. value: SGraphLayoutType.Horizontal,
  133. label: "水平分布",
  134. img: "t-level"
  135. }
  136. ]
  137. };
  138. },
  139. methods: {
  140. FocusItemChanged(itemMsg) {
  141. this.focusItem = null;
  142. if (itemMsg.itemList.length == 1) {
  143. this.isLock = itemMsg.itemList[0].moveable;
  144. this.focusItem = itemMsg.itemList[0];
  145. }
  146. },
  147. lockItem() {
  148. if (this.focusItem) {
  149. this.isLock = !this.isLock;
  150. this.focusItem.moveable = this.isLock;
  151. } else {
  152. this.$message.error("请选择指定对象!", 1);
  153. }
  154. },
  155. saveMsg() {
  156. // this.$message.success("保存成功!", 1);
  157. bus.$emit("saveMsgItem");
  158. },
  159. // 删除item
  160. deleteItem() {
  161. console.log(this.focusItem);
  162. if (this.focusItem) {
  163. bus.$emit("deleiteItem");
  164. // this.focusItem = null;
  165. this.$message.success("删除成功", 1);
  166. } else {
  167. this.$message.error("请选择指定对象!", 1);
  168. }
  169. },
  170. // 发布图例
  171. publishMap(){
  172. bus.$emit("publishMap");
  173. },
  174. // 对齐item
  175. changeAlignItem(val) {
  176. bus.$emit("changeAlignItem", val);
  177. }
  178. },
  179. mounted() {
  180. bus.$on("FocusItemChanged", itemMsg => {
  181. console.log("itemMsg", itemMsg);
  182. this.FocusItemChanged(itemMsg);
  183. });
  184. bus.$on("setGraphId", setGraphId => {
  185. console.log("itemMsg", setGraphId);
  186. });
  187. },
  188. created() {
  189. const href = window.location.href;
  190. // 路由
  191. // const route = href.split("?")[0];
  192. // 参数处理
  193. let params = href.split("?")[1];
  194. if (!params) {
  195. // 参数有问题
  196. return false;
  197. }
  198. params = decodeURIComponent(params);
  199. // params = "categoryId=NTXT&ProjectID=5&BuildingID=1&FloorID=1"; // mock 参数
  200. const paramsArr = params.split("&");
  201. console.log("paramsArr", paramsArr);
  202. const obj = {};
  203. paramsArr.map(item => {
  204. const arr = item.split("=");
  205. obj[arr[0]] = arr[1];
  206. });
  207. this.urlMsg = obj;
  208. const FloorName = this.urlMsg.FloorName ? this.urlMsg.FloorName:'';
  209. this.urlMsg.floorName = systym[this.urlMsg.categoryId] + '-' + FloorName;
  210. }
  211. };
  212. </script>
  213. <style lang="less" scoped>
  214. ul,
  215. li {
  216. /*margin: 0;*/
  217. /*padding: 0;*/
  218. list-style: none;
  219. }
  220. #top_toolbar {
  221. width: 100%;
  222. height: 60px;
  223. background: rgba(255, 255, 255, 1);
  224. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  225. display: flex;
  226. align-items: center;
  227. justify-content: space-between;
  228. padding: 0 24px 0 24px;
  229. .tit {
  230. // flex: 1;
  231. font-size: 18px;
  232. font-weight: bold;
  233. color: #1f2429;
  234. }
  235. .tool {
  236. ul {
  237. display: flex;
  238. li {
  239. display: flex;
  240. justify-content: center;
  241. flex-direction: column;
  242. /*width: 62px;*/
  243. padding: 0 7px;
  244. margin-left: 7px;
  245. font-size: 12px;
  246. align-items: center;
  247. text-align: center;
  248. cursor: pointer;
  249. img {
  250. width: 16px;
  251. height: 16px;
  252. }
  253. .percentage {
  254. border-bottom: 1px solid #c3c7cb;
  255. margin: 0 13px;
  256. font-size: 14px;
  257. }
  258. .dropdown-flex {
  259. display: flex;
  260. align-items: center;
  261. .down-icon {
  262. margin-left: 12px;
  263. }
  264. }
  265. }
  266. li:hover {
  267. background: #f5f6f7;
  268. }
  269. .zoom-window {
  270. border-left: 1px solid #8d9399;
  271. border-right: 1px solid #8d9399;
  272. }
  273. }
  274. }
  275. .btn-list {
  276. display: flex;
  277. align-items: center;
  278. justify-content: center;
  279. width: 72px;
  280. .btn-list-item {
  281. display: flex;
  282. justify-content: center;
  283. flex-direction: column;
  284. span {
  285. font-size: 12px;
  286. }
  287. cursor: pointer;
  288. }
  289. }
  290. }
  291. /deep/ .ant-dropdown-menu-item {
  292. display: flex;
  293. align-items: center;
  294. }
  295. </style>