topToolBar.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <template>
  2. <div id="topToolBar">
  3. <div class="left">
  4. <ul>
  5. <li @click="topoUndo">
  6. <el-tooltip
  7. class="item"
  8. effect="dark"
  9. content="撤销"
  10. placement="bottom"
  11. >
  12. <span class="icon iconfont icon-chehui"></span>
  13. </el-tooltip>
  14. </li>
  15. <li @click="topoRedo">
  16. <el-tooltip
  17. class="item"
  18. effect="dark"
  19. content="重做"
  20. placement="bottom"
  21. >
  22. <span class="icon iconfont icon-zhongzuo"></span>
  23. </el-tooltip>
  24. </li>
  25. <li @click="copy">
  26. <el-tooltip
  27. class="item"
  28. effect="dark"
  29. content="复制"
  30. placement="bottom"
  31. >
  32. <span class="icon iconfont">&#xe673;</span>
  33. </el-tooltip>
  34. </li>
  35. <li @click="paste">
  36. <el-tooltip
  37. class="item"
  38. effect="dark"
  39. content="粘贴"
  40. placement="bottom"
  41. >
  42. <span class="icon iconfont icon-niantie"></span>
  43. </el-tooltip>
  44. </li>
  45. <li @click="deleteItem">
  46. <el-tooltip
  47. class="item"
  48. effect="dark"
  49. content="删除"
  50. placement="bottom"
  51. >
  52. <span class="icon iconfont icon-shanchu"></span>
  53. </el-tooltip>
  54. </li>
  55. <li>
  56. <el-tooltip
  57. class="item"
  58. effect="dark"
  59. content="组合"
  60. placement="bottom"
  61. >
  62. <span class="icon iconfont icon-zuhe"></span>
  63. </el-tooltip>
  64. </li>
  65. <li>
  66. <el-tooltip
  67. class="item"
  68. effect="dark"
  69. content="打散"
  70. placement="bottom"
  71. >
  72. <span class="icon iconfont icon-dasan"></span>
  73. </el-tooltip>
  74. </li>
  75. <li @click="setOrder('Top')">
  76. <el-tooltip
  77. class="item"
  78. effect="dark"
  79. content="置顶"
  80. placement="bottom"
  81. >
  82. <span class="icon iconfont icon-zhiding"></span>
  83. </el-tooltip>
  84. </li>
  85. <li @click="setOrder('Bottom')">
  86. <el-tooltip
  87. class="item"
  88. effect="dark"
  89. content="置底"
  90. placement="bottom"
  91. >
  92. <span class="icon iconfont icon-zhidi"></span>
  93. </el-tooltip>
  94. </li>
  95. <!-- 对齐相关操作 -->
  96. <el-divider direction="vertical"></el-divider>
  97. <el-dropdown
  98. trigger="click"
  99. @command="changeAlignItem"
  100. placement="top-start"
  101. >
  102. <span class="el-dropdown-link">
  103. <i class="icon iconfont icon-zuoduiqi"></i>
  104. <i class="el-icon-arrow-down el-icon--right"></i>
  105. </span>
  106. <el-dropdown-menu slot="dropdown" class="top-dropdown">
  107. <el-dropdown-item
  108. v-for="item in alignmentOptions"
  109. :key="item.value"
  110. :command="item.value"
  111. :disabled="item.disabled"
  112. >
  113. <img
  114. :src="require(`@/assets/images/` + item.img + `.png`)"
  115. alt=""
  116. />
  117. <span>{{ item.label }}</span>
  118. </el-dropdown-item>
  119. </el-dropdown-menu>
  120. </el-dropdown>
  121. <el-divider direction="vertical"></el-divider>
  122. <li @click="setLock()">
  123. <el-tooltip
  124. class="item"
  125. effect="dark"
  126. :content="!isLock ? '解锁' : '锁定'"
  127. placement="bottom"
  128. >
  129. <span
  130. :class="[isLock ? 'el-icon-lock' : 'el-icon-unlock', 'lcoks']"
  131. />
  132. </el-tooltip>
  133. </li>
  134. </ul>
  135. </div>
  136. <div class="right">
  137. <img src="./../../assets/images/detection.png" alt="" />
  138. <span>关系</span>
  139. <!-- 下拉框卡片 -->
  140. <!-- <el-card class="box-card">
  141. <div v-for="o in 4" :key="o" class="text item">
  142. {{ "列表内容 " + o }}
  143. </div>
  144. </el-card> -->
  145. </div>
  146. </div>
  147. </template>
  148. <script>
  149. import bus from "@/bus/bus";
  150. import { SGraphLayoutType } from "@persagy-web/graph/lib";
  151. export default {
  152. data() {
  153. return {
  154. isLock: false,
  155. itemList: null,
  156. alignmentOptions: [
  157. //对齐数据
  158. {
  159. value: SGraphLayoutType.Left,
  160. label: "左对齐",
  161. img: "t-left",
  162. disabled: true,
  163. },
  164. {
  165. value: SGraphLayoutType.Right,
  166. label: "右对齐",
  167. img: "t-right",
  168. disabled: true,
  169. },
  170. {
  171. value: SGraphLayoutType.Top,
  172. label: "顶对齐",
  173. img: "t-top",
  174. disabled: true,
  175. },
  176. {
  177. value: SGraphLayoutType.Bottom,
  178. label: "底对齐",
  179. img: "t-bottom",
  180. disabled: true,
  181. },
  182. {
  183. value: SGraphLayoutType.Center,
  184. label: "水平居中对齐",
  185. img: "t-center",
  186. disabled: true,
  187. },
  188. {
  189. value: SGraphLayoutType.Middle,
  190. label: "垂直居中对齐",
  191. img: "t-topandbottm",
  192. disabled: true,
  193. },
  194. {
  195. value: SGraphLayoutType.Vertical,
  196. label: "垂直分布",
  197. img: "t-vertical",
  198. disabled: true,
  199. },
  200. {
  201. value: SGraphLayoutType.Horizontal,
  202. label: "水平分布",
  203. img: "t-level",
  204. disabled: true,
  205. },
  206. ],
  207. };
  208. },
  209. methods: {
  210. //撤销
  211. topoUndo() {
  212. bus.$emit("topoUndo");
  213. },
  214. // 重做
  215. topoRedo() {
  216. bus.$emit("topoRedo");
  217. },
  218. // 删除item
  219. deleteItem() {
  220. bus.$emit("deleteItem");
  221. },
  222. // 复制
  223. copy() {
  224. bus.$emit("copy");
  225. },
  226. // 粘贴
  227. paste() {
  228. bus.$emit("paste");
  229. },
  230. setOrder(val) {
  231. bus.$emit("setOrder", val);
  232. },
  233. // 设置锁定
  234. setLock() {
  235. this.isLock = !this.isLock;
  236. if (!this.itemList) return;
  237. this.itemList.forEach((item) => {
  238. item.moveable = this.isLock;
  239. });
  240. },
  241. emitChoice(itemList) {
  242. if (!itemList.length) {
  243. this.isLock = false;
  244. this.itemList = null;
  245. } else {
  246. this.isLock = itemList[0].moveable;
  247. this.itemList = itemList;
  248. }
  249. // 处理对齐方式
  250. this.handleAlign(itemList);
  251. },
  252. /**
  253. * 修改对齐方式
  254. * @param val 选中的对齐方式类型
  255. */
  256. changeAlignItem(val) {
  257. bus.$emit("changeAlignItem", val);
  258. },
  259. /**
  260. * 处理对齐方式
  261. * @param itemList 选中的元素数组
  262. */
  263. handleAlign(itemList) {
  264. // 选中两个以上元素时,对齐方式解开禁用
  265. if (itemList?.length > 1) {
  266. this.alignmentOptions.map((v) => (v.disabled = false));
  267. } else {
  268. this.alignmentOptions.map((v) => (v.disabled = true));
  269. }
  270. },
  271. },
  272. mounted() {
  273. bus.$on("emitChoice", this.emitChoice);
  274. bus.$on("tooltipLock", this.setLock);
  275. },
  276. };
  277. </script>
  278. <style lang="less">
  279. ul,
  280. li {
  281. margin: 0;
  282. padding: 0;
  283. list-style-type: none;
  284. }
  285. #topToolBar {
  286. width: 100%;
  287. height: 48px;
  288. background: rgba(255, 255, 255, 1);
  289. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  290. display: flex;
  291. align-items: center;
  292. justify-content: center;
  293. padding: 0 24px 0 24px;
  294. box-sizing: border-box;
  295. position: relative;
  296. border-bottom: 1px solid #e4e5e7;
  297. .left {
  298. ul {
  299. display: flex;
  300. li {
  301. display: flex;
  302. justify-content: center;
  303. flex-direction: column;
  304. /*width: 62px;*/
  305. padding: 0 7px;
  306. margin-left: 7px;
  307. font-size: 12px;
  308. align-items: center;
  309. text-align: center;
  310. cursor: pointer;
  311. img {
  312. width: 16px;
  313. height: 16px;
  314. }
  315. .percentage {
  316. display: inline-block;
  317. width: 35px;
  318. border-bottom: 1px solid #c3c7cb;
  319. margin: 0 13px;
  320. font-size: 14px;
  321. }
  322. .dropdown-flex {
  323. display: flex;
  324. align-items: center;
  325. .down-icon {
  326. margin-left: 12px;
  327. }
  328. }
  329. .lcoks {
  330. font-size: 16px;
  331. margin: 6px 0 4px 0;
  332. }
  333. }
  334. }
  335. }
  336. .right {
  337. position: absolute;
  338. right: 24px;
  339. top: 50%;
  340. transform: translateY(-50%);
  341. width: 24px;
  342. cursor: pointer;
  343. font-size: 12px;
  344. color: #8d9399;
  345. z-index: 999;
  346. .box-card{
  347. width: 240px;
  348. max-height: 500px;
  349. position: absolute;
  350. right: 0;
  351. top: 40px;
  352. background: #ffffff;
  353. z-index: 999;
  354. }
  355. img {
  356. width: 20px;
  357. height: 20px;
  358. }
  359. }
  360. }
  361. // 对齐方式下拉按钮菜单
  362. .top-dropdown {
  363. li {
  364. padding-left: 12px !important;
  365. width: 150px;
  366. height: 30px;
  367. box-sizing: border-box;
  368. display: flex;
  369. align-items: center;
  370. img {
  371. width: 16px;
  372. margin-right: 5px;
  373. vertical-align: middle;
  374. }
  375. span {
  376. font-weight: 400;
  377. font-size: 14px;
  378. }
  379. }
  380. .el-dropdown-menu__item.is-disabled {
  381. pointer-events: initial;
  382. cursor: not-allowed;
  383. }
  384. }
  385. </style>