gy-card.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. /* 自定义tabs */
  2. <template>
  3. <transition>
  4. <div :class='areaClass' @mouseover="hover = false"
  5. @mouseleave="hover = false" 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 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. }
  102. }
  103. </script>
  104. <style scoped="scoped">
  105. .gy-card-header {
  106. position: relative;
  107. height: 40px;
  108. background-color: #292929;
  109. color: white;
  110. box-sizing: border-box;
  111. }
  112. .gy-card-content-89 {
  113. position: relative;
  114. height: calc(89vh - 50px);
  115. background-color: #000000;
  116. color: white;
  117. box-sizing: border-box;
  118. border-radius: 7px;
  119. }
  120. .gy-card-content-44 {
  121. position: relative;
  122. height: calc(44vh - 50px);
  123. background-color: #000000;
  124. color: white;
  125. box-sizing: border-box;
  126. border-radius: 7px;
  127. }
  128. .gy-card-content-37 {
  129. position: relative;
  130. height: calc(37vh - 50px);
  131. background-color: #000000;
  132. color: white;
  133. box-sizing: border-box;
  134. border-radius: 7px;
  135. }
  136. .gy-card-content-25 {
  137. position: relative;
  138. height: calc(25vh - 50px);
  139. background-color: #000000;
  140. color: white;
  141. box-sizing: border-box;
  142. border-radius: 7px;
  143. }
  144. .gy-card-circle{
  145. position: relative;
  146. top: 7px;
  147. display: inline-block;
  148. width: 7px;
  149. height: 7px;
  150. -moz-border-radius: 50%;
  151. -webkit-border-radius: 50%;
  152. border-radius: 50%;
  153. }
  154. .gy-card-circle-green {
  155. background-color: #008000;
  156. }
  157. .gy-card-circle-yellow {
  158. background-color: #ffff00;
  159. }
  160. .gy-card-title {
  161. position: relative;
  162. top: 10px;
  163. left: 10px;
  164. }
  165. .gy-card-decoration01 {
  166. position: absolute;
  167. right: 80px;
  168. }
  169. .gy-card-decoration02 {
  170. position: absolute;
  171. top: 20px;
  172. right: 20px;
  173. }
  174. .gy-card-area-problem {
  175. position: relative;
  176. height: 89vh;
  177. background-color: #292929;
  178. border-radius: 7px;
  179. margin: 0px;
  180. padding-top: 0;
  181. padding-left: 10px;
  182. padding-right: 10px;
  183. padding-bottom: 10px;
  184. box-sizing: border-box;
  185. }
  186. .gy-card-area-alarm {
  187. position: relative;
  188. height: 25vh;
  189. margin-top: 10px;
  190. background-color: #292929;
  191. border-radius: 7px;
  192. padding-left: 10px;
  193. padding-right: 10px;
  194. padding-bottom: 10px;
  195. box-sizing: border-box;
  196. }
  197. .gy-card-area-check {
  198. position: relative;
  199. height: 44vh;
  200. background-color: #292929;
  201. border-radius: 7px;
  202. margin-top: 10px;
  203. padding-top: 0;
  204. padding-left: 10px;
  205. padding-right: 10px;
  206. padding-bottom: 10px;
  207. box-sizing: border-box;
  208. }
  209. .gy-card-area-control {
  210. position: relative;
  211. width: 100%;
  212. height: 44vh;
  213. background-color: #292929;
  214. border-radius: 7px;
  215. margin: 0px;
  216. padding-top: 0;
  217. padding-left: 10px;
  218. padding-right: 10px;
  219. padding-bottom: 10px;
  220. box-sizing: border-box;
  221. }
  222. .gy-card-area-label {
  223. position: relative;
  224. height: 25vh;
  225. margin-top: 10px;
  226. background-color: #292929;
  227. border-radius: 7px;
  228. padding-left: 10px;
  229. padding-right: 10px;
  230. padding-bottom: 10px;
  231. box-sizing: border-box;
  232. }
  233. .gy-card-area-recommended {
  234. position: relative;
  235. height: 37vh;
  236. background-color: #292929;
  237. border-radius: 7px;
  238. padding-left: 10px;
  239. padding-right: 10px;
  240. padding-bottom: 10px;
  241. box-sizing: border-box;
  242. }
  243. .gy-card-header-hover {
  244. position: relative;
  245. height: 40px;
  246. background-color: #292929;
  247. color: white;
  248. box-sizing: border-box;
  249. }
  250. .gy-card-area-problem:hover {
  251. position: relative;
  252. height: 89vh;
  253. background-color: #292929;
  254. border-radius: 7px;
  255. margin: 0px;
  256. padding-top: 0;
  257. padding-left: 10px;
  258. padding-right: 10px;
  259. padding-bottom: 10px;
  260. box-sizing: border-box;
  261. }
  262. .gy-card-area-alarm:hover {
  263. position: relative;
  264. height: 25vh;
  265. margin-top: 10px;
  266. background-color: #292929;
  267. border-radius: 7px;
  268. padding-left: 10px;
  269. padding-right: 10px;
  270. padding-bottom: 10px;
  271. box-sizing: border-box;
  272. }
  273. /* .gy-card-area-check:hover {
  274. position: relative;
  275. height: 44vh;
  276. background-color: #292929;
  277. border-radius: 7px;
  278. margin: 0px;
  279. padding-top: 0;
  280. padding-left: 10px;
  281. padding-right: 10px;
  282. padding-bottom: 10px;
  283. box-sizing: border-box;
  284. }
  285. */
  286. /* .gy-card-area-control:hover {
  287. position: relative;
  288. width: 100%;
  289. height: 44vh;
  290. background-color: #292929;
  291. border-radius: 7px;
  292. margin-top: 10px;
  293. padding-top: 0;
  294. padding-left: 10px;
  295. padding-right: 10px;
  296. padding-bottom: 10px;
  297. box-sizing: border-box;
  298. } */
  299. .gy-card-area-label:hover {
  300. position: relative;
  301. height: 25vh;
  302. margin-top: 10px;
  303. background-color: #292929;
  304. border-radius: 7px;
  305. padding-left: 10px;
  306. padding-right: 10px;
  307. padding-bottom: 10px;
  308. box-sizing: border-box;
  309. }
  310. .gy-card-area-recommended:hover {
  311. position: relative;
  312. height: 37vh;
  313. background-color: #292929;
  314. border-radius: 7px;
  315. padding-left: 10px;
  316. padding-right: 10px;
  317. padding-bottom: 10px;
  318. box-sizing: border-box;
  319. }
  320. .gy-card-area-big {
  321. position: fixed;
  322. top: 0px;
  323. left: 0px;
  324. width: 100vw;
  325. height: 100vh;
  326. background-color: #292929;
  327. border-radius: 7px;
  328. margin: 0px;
  329. padding-top: 0;
  330. padding-left: 10px;
  331. padding-right: 10px;
  332. padding-bottom: 10px;
  333. box-sizing: border-box;
  334. z-index: 900;
  335. }
  336. .gy-card-content-big {
  337. position: relative;
  338. height: calc(100vh - 50px);
  339. background-color: #000000;
  340. color: white;
  341. box-sizing: border-box;
  342. border-radius: 7px;
  343. }
  344. .el-scrollbar__wrap {
  345. overflow: scroll;
  346. width: 110%;
  347. height: 120%;
  348. }
  349. ::-webkit-scrollbar {
  350. width: 0;
  351. height: 0;
  352. }
  353. </style>