gy-card.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. /* 自定义tabs */
  2. <template>
  3. <transition>
  4. <div :class='areaClass' @mouseover="hover = false"
  5. @mouseleave="hover = false" @contextmenu="rightClick" onselectstart="return false">
  6. <div :class="headerClass" @dblclick="gyCardDbClick">
  7. <div :class='circleClass'></div>
  8. <span class="gy-card-title">{{ title }}</span>
  9. <img class="gy-card-decoration01" src="../../assets/img/controlcenter/decoration01.png">
  10. <img class="gy-card-decoration02" src="../../assets/img/controlcenter/decoration02.png">
  11. </div>
  12. <div :class='contentClass'>
  13. <el-scrollbar style="height: 100%">
  14. <slot></slot>
  15. </el-scrollbar>
  16. </div>
  17. </div>
  18. </transition>
  19. </template>
  20. <script>
  21. /**
  22. * todo 拖动
  23. * todo 控制区
  24. *
  25. * 动态值:
  26. * 1. gy-card-area-label中的 height,margin-top
  27. * 2. gy-card-circle-yellow中的颜色
  28. * 3. gy-card-content-25 中的高度
  29. *
  30. * 使用事例:
  31. * <gy-card title="校验区" area-style="check" circle-style="green" content-style="44">
  32. * <div>动态内容</div>
  33. * </gy-card>
  34. */
  35. export default {
  36. name: 'gy-card',
  37. emits: ["parentRun"],
  38. props: {
  39. title: {
  40. type: String,
  41. default: '校验区',
  42. required: true
  43. },
  44. areaStyle: {
  45. type: String,
  46. default: 'check',
  47. required: true
  48. },
  49. circleStyle: {
  50. type: String,
  51. default: 'green',
  52. required: true
  53. },
  54. contentStyle: {
  55. type: String,
  56. default: '44',
  57. required: true
  58. }
  59. },
  60. data() {
  61. return {
  62. hover: false,
  63. big: false
  64. }
  65. },
  66. computed: {
  67. areaClass() {
  68. if (this.big) {
  69. return `gy-card-area-big`;
  70. } else {
  71. return `gy-card-area-${this.areaStyle}`;
  72. }
  73. },
  74. circleClass() {
  75. return `gy-card-circle-${this.circleStyle}`;
  76. },
  77. contentClass() {
  78. if (this.big) {
  79. return `gy-card-content-big`;
  80. } else {
  81. return `gy-card-content-${this.contentStyle}`;
  82. }
  83. },
  84. headerClass() {
  85. if (this.hover) {
  86. return `gy-card-header-hover`;
  87. } else {
  88. return `gy-card-header`;
  89. }
  90. }
  91. },
  92. methods: {
  93. gyCardDbClick() {
  94. let big = this.big
  95. if (big) {
  96. this.big = false
  97. } else {
  98. this.big = false
  99. }
  100. },
  101. rightClick() {
  102. const {remote} = window.require('electron');
  103. const {Menu, MenuItem} = remote
  104. const menu = new Menu()
  105. menu.append(new MenuItem({
  106. label: 'test1',
  107. click: function () {
  108. console.info("右键test1")
  109. }
  110. }))
  111. menu.append(new MenuItem({type: 'separator'}));
  112. menu.append(new MenuItem({
  113. label: 'test2',
  114. click: function () {
  115. console.info("右键test2")
  116. }
  117. }))
  118. // window.addEventListener('contextmenu', (e) => {
  119. // e.preventDefault();
  120. // menu.popup({window: remote.getCurrentWindow()})
  121. // }, false)
  122. menu.popup(remote.getCurrentWindow())
  123. }
  124. }
  125. }
  126. </script>
  127. <style scoped="scoped">
  128. .gy-card-header {
  129. position: relative;
  130. height: 40px;
  131. background-color: #292929;
  132. color: white;
  133. box-sizing: border-box;
  134. }
  135. .gy-card-content-89 {
  136. position: relative;
  137. height: calc(89vh - 50px);
  138. background-color: #000000;
  139. color: white;
  140. box-sizing: border-box;
  141. border-radius: 7px;
  142. }
  143. .gy-card-content-44 {
  144. position: relative;
  145. height: calc(44vh - 50px);
  146. background-color: #000000;
  147. color: white;
  148. box-sizing: border-box;
  149. border-radius: 7px;
  150. }
  151. .gy-card-content-37 {
  152. position: relative;
  153. height: calc(37vh - 50px);
  154. background-color: #000000;
  155. color: white;
  156. box-sizing: border-box;
  157. border-radius: 7px;
  158. }
  159. .gy-card-content-25 {
  160. position: relative;
  161. height: calc(25vh - 50px);
  162. background-color: #000000;
  163. color: white;
  164. box-sizing: border-box;
  165. border-radius: 7px;
  166. }
  167. .gy-card-circle-green {
  168. position: relative;
  169. top: 10px;
  170. display: inline-block;
  171. width: 10px;
  172. height: 10px;
  173. background-color: #008000;
  174. -moz-border-radius: 50%;
  175. -webkit-border-radius: 50%;
  176. border-radius: 50%;
  177. }
  178. .gy-card-circle-yellow {
  179. position: relative;
  180. top: 10px;
  181. display: inline-block;
  182. width: 10px;
  183. height: 10px;
  184. background-color: #ffff00;
  185. -moz-border-radius: 50%;
  186. -webkit-border-radius: 50%;
  187. border-radius: 50%;
  188. }
  189. .gy-card-title {
  190. position: relative;
  191. top: 10px;
  192. left: 10px;
  193. }
  194. .gy-card-decoration01 {
  195. position: absolute;
  196. right: 80px;
  197. }
  198. .gy-card-decoration02 {
  199. position: absolute;
  200. top: 20px;
  201. right: 20px;
  202. }
  203. .gy-card-area-problem {
  204. position: relative;
  205. height: 89vh;
  206. background-color: #292929;
  207. border-radius: 7px;
  208. margin: 0px;
  209. padding-top: 0;
  210. padding-left: 10px;
  211. padding-right: 10px;
  212. padding-bottom: 10px;
  213. box-sizing: border-box;
  214. }
  215. .gy-card-area-alarm {
  216. position: relative;
  217. height: 25vh;
  218. margin-top: 10px;
  219. background-color: #292929;
  220. border-radius: 7px;
  221. padding-left: 10px;
  222. padding-right: 10px;
  223. padding-bottom: 10px;
  224. box-sizing: border-box;
  225. }
  226. .gy-card-area-check {
  227. position: relative;
  228. height: 44vh;
  229. background-color: #292929;
  230. border-radius: 7px;
  231. margin: 0px;
  232. padding-top: 0;
  233. padding-left: 10px;
  234. padding-right: 10px;
  235. padding-bottom: 10px;
  236. box-sizing: border-box;
  237. }
  238. .gy-card-area-control {
  239. position: relative;
  240. width: 100%;
  241. height: 44vh;
  242. background-color: #292929;
  243. border-radius: 7px;
  244. margin-top: 10px;
  245. padding-top: 0;
  246. padding-left: 10px;
  247. padding-right: 10px;
  248. padding-bottom: 10px;
  249. box-sizing: border-box;
  250. }
  251. .gy-card-area-label {
  252. position: relative;
  253. height: 25vh;
  254. margin-top: 10px;
  255. background-color: #292929;
  256. border-radius: 7px;
  257. padding-left: 10px;
  258. padding-right: 10px;
  259. padding-bottom: 10px;
  260. box-sizing: border-box;
  261. }
  262. .gy-card-area-recommended {
  263. position: relative;
  264. height: 37vh;
  265. background-color: #292929;
  266. border-radius: 7px;
  267. padding-left: 10px;
  268. padding-right: 10px;
  269. padding-bottom: 10px;
  270. box-sizing: border-box;
  271. }
  272. .gy-card-header-hover {
  273. position: relative;
  274. height: 40px;
  275. background-color: #292929;
  276. color: white;
  277. box-sizing: border-box;
  278. }
  279. .gy-card-area-problem:hover {
  280. position: relative;
  281. height: 89vh;
  282. background-color: #292929;
  283. border-radius: 7px;
  284. margin: 0px;
  285. padding-top: 0;
  286. padding-left: 10px;
  287. padding-right: 10px;
  288. padding-bottom: 10px;
  289. box-sizing: border-box;
  290. }
  291. .gy-card-area-alarm:hover {
  292. position: relative;
  293. height: 25vh;
  294. margin-top: 10px;
  295. background-color: #292929;
  296. border-radius: 7px;
  297. padding-left: 10px;
  298. padding-right: 10px;
  299. padding-bottom: 10px;
  300. box-sizing: border-box;
  301. }
  302. .gy-card-area-check:hover {
  303. position: relative;
  304. height: 44vh;
  305. background-color: #292929;
  306. border-radius: 7px;
  307. margin: 0px;
  308. padding-top: 0;
  309. padding-left: 10px;
  310. padding-right: 10px;
  311. padding-bottom: 10px;
  312. box-sizing: border-box;
  313. }
  314. .gy-card-area-control:hover {
  315. position: relative;
  316. width: 100%;
  317. height: 44vh;
  318. background-color: #292929;
  319. border-radius: 7px;
  320. margin-top: 10px;
  321. padding-top: 0;
  322. padding-left: 10px;
  323. padding-right: 10px;
  324. padding-bottom: 10px;
  325. box-sizing: border-box;
  326. }
  327. .gy-card-area-label:hover {
  328. position: relative;
  329. height: 25vh;
  330. margin-top: 10px;
  331. background-color: #292929;
  332. border-radius: 7px;
  333. padding-left: 10px;
  334. padding-right: 10px;
  335. padding-bottom: 10px;
  336. box-sizing: border-box;
  337. }
  338. .gy-card-area-recommended:hover {
  339. position: relative;
  340. height: 37vh;
  341. background-color: #292929;
  342. border-radius: 7px;
  343. padding-left: 10px;
  344. padding-right: 10px;
  345. padding-bottom: 10px;
  346. box-sizing: border-box;
  347. }
  348. .gy-card-area-big {
  349. position: fixed;
  350. top: 0px;
  351. left: 0px;
  352. width: 100vw;
  353. height: 100vh;
  354. background-color: #292929;
  355. border-radius: 7px;
  356. margin: 0px;
  357. padding-top: 0;
  358. padding-left: 10px;
  359. padding-right: 10px;
  360. padding-bottom: 10px;
  361. box-sizing: border-box;
  362. z-index: 900;
  363. }
  364. .gy-card-content-big {
  365. position: relative;
  366. height: calc(100vh - 50px);
  367. background-color: #000000;
  368. color: white;
  369. box-sizing: border-box;
  370. border-radius: 7px;
  371. }
  372. .el-scrollbar__wrap {
  373. overflow: scroll;
  374. width: 110%;
  375. height: 120%;
  376. }
  377. ::-webkit-scrollbar {
  378. width: 0;
  379. height: 0;
  380. }
  381. </style>