WindturbineMinCard.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /* 风机矩阵小卡片 */
  2. <template>
  3. <div :class="cardStyle" @click="sigSelectClick">
  4. <el-row>
  5. <div :class="leftStyle">
  6. <el-row>
  7. <div :class="title1Style">{{stationName}}</div>
  8. </el-row>
  9. <el-row>
  10. <div :class="title2Style">{{windturbineName}}</div>
  11. </el-row>
  12. </div>
  13. <div :class="rightStyle">
  14. <el-row>
  15. <div :class="contentStyle" style="font-size: 12px;position: absolute;right: 5px;">{{power.toFixed(2)}} kw</div>
  16. </el-row>
  17. <el-row>
  18. <div :class="contentStyle" style="font-size: 12px;position: absolute;right: 5px;top:15px;">{{windSpeed.toFixed(2)}} m/s</div>
  19. </el-row>
  20. <el-row>
  21. <div :class="contentStyle" style="font-size: 12px;position: absolute;right: 5px;top:30px;">{{rollSpeed.toFixed(2)}} rpm</div>
  22. </el-row>
  23. </div>
  24. </el-row>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: "WindturbineMinCard",
  30. props: {
  31. status: Number,
  32. power:Number,
  33. windSpeed:Number,
  34. rollSpeed:Number,
  35. windturbineId:String,
  36. },
  37. data() {
  38. return {
  39. sigSelect: false
  40. }
  41. },
  42. components: {
  43. },
  44. computed: {
  45. cardStyle: function () {
  46. if (this.sigSelect) {
  47. return "card-style card-style-select-" + this.status;
  48. } else {
  49. return "card-style card-style-" + this.status;
  50. }
  51. },
  52. leftStyle: function () {
  53. if (this.sigSelect) {
  54. return "card-style-left card-left-style-select-" + this.status;
  55. } else {
  56. return "card-style-left card-left-style-" + this.status;
  57. }
  58. },
  59. rightStyle: function () {
  60. if (this.sigSelect) {
  61. return "card-right-style card-right-style-select-" + this.status;
  62. } else {
  63. return "card-right-style card-right-style-" + this.status;
  64. }
  65. },
  66. title1Style: function () {
  67. return "card-title1-style card-title1-style-" + this.status;
  68. },
  69. title2Style: function () {
  70. return "card-title2-style card-title2-style-" + this.status;
  71. },
  72. contentStyle: function () {
  73. return "card-content-style-" + this.status;
  74. },
  75. stationName:function () {
  76. return this.windturbineId.slice(0,2);
  77. },
  78. windturbineName:function () {
  79. var vs = this.windturbineId.split('_');
  80. return vs[1];
  81. }
  82. },
  83. methods: {
  84. sigSelectClick() {
  85. let sigSelect = this.sigSelect
  86. if (sigSelect) {
  87. this.sigSelect = false
  88. } else {
  89. this.sigSelect = true
  90. }
  91. // todo retun id,父组件中接收id
  92. }
  93. }
  94. };
  95. </script>
  96. <style scoped>
  97. .card-style{
  98. position: relative;
  99. width: 116px;
  100. height: 50px;
  101. box-sizing: border-box;
  102. display: inline-block;
  103. margin-top: 5px;
  104. }
  105. /* 卡片整体样式 */
  106. .card-style-0 {
  107. border: 2px solid rgb(255, 255, 255);
  108. background-color: rgba(255, 255, 255, 0.15);
  109. }
  110. .card-style-1 {
  111. border: 2px solid rgb(197, 48, 72);
  112. background-color: rgba(197, 48, 72, 0.15);
  113. }
  114. .card-style-2 {
  115. border: 2px solid rgb(05, 187, 76);
  116. background-color: rgba(05, 187, 76, 0.15);
  117. }
  118. .card-style-3 {
  119. border: 2px solid rgb(05, 187, 76);
  120. background-color: rgba(05, 187, 76, 0.15);
  121. }
  122. .card-style-4 {
  123. border: 2px solid rgb(75, 85, 174);
  124. background-color: rgba(75, 85, 174, 0.15);
  125. }
  126. .card-style-5 {
  127. border: 2px solid rgba(186, 50, 55);
  128. background-color: rgba(186, 50, 55, 0.15);
  129. }
  130. .card-style-6 {
  131. border: 2px solid rgb(225, 125, 36);
  132. background-color: rgba(225, 125, 36, 0.15);
  133. }
  134. .card-style-7 {
  135. border: 2px solid rgb(96, 103, 105);
  136. background-color: rgba(96, 103, 105, 0.15);
  137. }
  138. /* 卡片整体样式-选择 */
  139. .card-style-select-0 {
  140. border: 2px solid rgba(255, 255, 255, 0.5);
  141. background-color: rgba(255, 255, 255, 0.1);
  142. }
  143. .card-style-select-1 {
  144. border: 2px solid rgba(197, 48, 72, 0.5);
  145. background-color: rgba(197, 48, 72, 0.1);
  146. }
  147. .card-style-select-2 {
  148. border: 2px solid rgba(05, 187, 76, 0.5);
  149. background-color: rgba(05, 187, 76, 0.1);
  150. }
  151. .card-style-select-3 {
  152. border: 2px solid rgba(05, 187, 76, 0.5);
  153. background-color: rgba(05, 187, 76, 0.1);
  154. }
  155. .card-style-select-4 {
  156. border: 2px solid rgba(75, 85, 174, 0.5);
  157. background-color: rgba(75, 85, 174, 0.1);
  158. }
  159. .card-style-select-5 {
  160. border: 2px solid rgba(186, 50, 55, 0.5);
  161. background-color: rgba(186, 50, 55, 0.1);
  162. }
  163. .card-style-select-6 {
  164. border: 2px solid rgba(225, 125, 36, 0.5);
  165. background-color: rgba(225, 125, 36, 0.1);
  166. }
  167. .card-style-select-7 {
  168. border: 2px solid rgba(159, 163, 165, 0.5);
  169. background-color: rgba(159, 163, 165, 0.1);
  170. }
  171. .card-style-left{
  172. position: relative;
  173. width: 25px;
  174. height: 41px;
  175. box-sizing: border-box;
  176. margin: 3px;
  177. display: inline-block;
  178. }
  179. /* 卡片左边样式 */
  180. .card-left-style-0 {
  181. background-color: rgb(255, 255, 255);
  182. color: rgb(0, 0, 0);
  183. }
  184. .card-left-style-1 {
  185. background-color: rgb(121, 73, 81);
  186. }
  187. .card-left-style-2 {
  188. background-color: rgb(05, 187, 76);
  189. }
  190. .card-left-style-3 {
  191. background-color: rgb(05, 187, 76);
  192. }
  193. .card-left-style-4 {
  194. background-color: rgb(75, 85, 174);
  195. }
  196. .card-left-style-5 {
  197. background-color: rgb(186, 50, 55);
  198. }
  199. .card-left-style-6 {
  200. background-color: rgb(225, 125, 36);
  201. }
  202. .card-left-style-7 {
  203. background-color: rgb(159, 163, 165);
  204. }
  205. /* 卡片左边样式-选择 */
  206. .card-left-style-select-0 {
  207. background-color: rgba(255, 255, 255,0.7);
  208. color: rgba(0, 0, 0,0.7);
  209. }
  210. .card-left-style-select-1 {
  211. background-color: rgba(121, 73, 81,0.7);
  212. }
  213. .card-left-style-select-2 {
  214. background-color: rgba(05, 187, 76,0.7);
  215. }
  216. .card-left-style-select-3 {
  217. background-color: rgba(05, 187, 76,0.7);
  218. }
  219. .card-left-style-select-4 {
  220. background-color: rgba(75, 85, 174,0.7);
  221. }
  222. .card-left-style-select-5 {
  223. background-color: rgba(186, 50, 55,0.7);
  224. }
  225. .card-left-style-select-6 {
  226. background-color: rgba(225, 125, 36,0.7);
  227. }
  228. .card-left-style-select-7 {
  229. background-color: rgba(159, 163, 165,0.7);
  230. }
  231. .card-left-style-select {
  232. position: relative;
  233. width: 25px;
  234. height: 41px;
  235. box-sizing: border-box;
  236. margin: 3px;
  237. display: inline-block;
  238. }
  239. .card-right-style{
  240. width: calc(116px - 4px - 6px - 25px);
  241. height: calc(50px - 2px);
  242. box-sizing: border-box;
  243. display: inline-block;
  244. position: absolute;
  245. right: 0px;
  246. }
  247. /* 卡片虚线样式 */
  248. .card-right-style-0 {
  249. border-left: 2px dashed rgb(255, 255, 255);
  250. color: rgb(255, 255, 255);
  251. }
  252. .card-right-style-1 {
  253. border-left: 2px dashed rgb(121, 73, 81);
  254. }
  255. .card-right-style-2 {
  256. border-left: 2px dashed rgb(05, 187, 76);
  257. }
  258. .card-right-style-3 {
  259. border-left: 2px dashed rgb(05, 187, 76);
  260. }
  261. .card-right-style-4 {
  262. border-left: 2px dashed rgb(75, 85, 174);
  263. }
  264. .card-right-style-5 {
  265. border-left: 2px dashed rgb(186, 50, 55);
  266. }
  267. .card-right-style-6 {
  268. border-left: 2px dashed rgb(225, 125, 36);
  269. }
  270. .card-right-style-7 {
  271. border-left: 2px dashed rgb(159, 163, 165);
  272. }
  273. /* 卡片虚线样式-选择 */
  274. .card-right-style-select-0 {
  275. border-left: 2px dashed rgba(255, 255, 255,0.7);
  276. color: rgba(255, 255, 255,0.7);
  277. }
  278. .card-right-style-select-1 {
  279. border-left: 2px dashed rgba(121, 73, 81,0.7);
  280. }
  281. .card-right-style-select-2 {
  282. border-left: 2px dashed rgba(05, 187, 76,0.7);
  283. }
  284. .card-right-style-select-3 {
  285. border-left: 2px dashed rgba(05, 187, 76,0.7);
  286. }
  287. .card-right-style-select-4 {
  288. border-left: 2px dashed rgba(75, 85, 174,0.7);
  289. }
  290. .card-right-style-select-5 {
  291. border-left: 2px dashed rgba(186, 50, 55,0.7);
  292. }
  293. .card-right-style-select-6 {
  294. border-left: 2px dashed rgba(225, 125, 36,0.7);
  295. }
  296. .card-right-style-select-7 {
  297. border-left: 2px dashed rgba(159, 163, 165,0.7);
  298. }
  299. .card-title1-style{
  300. margin-top: 2px;
  301. font-size: 14px;
  302. width: 100%;
  303. text-align: center;
  304. }
  305. .card-title1-style-1 {
  306. font-size: 14px;
  307. }
  308. .card-title2-style{
  309. margin-top: 2px;
  310. font-size: 12px;
  311. width: 100%;
  312. text-align: center;
  313. }
  314. .card-title2-style-1 {
  315. font-size: 12px;
  316. }
  317. .card-content-style{
  318. width: 100%;
  319. text-align: right;
  320. font-size: 12px;
  321. }
  322. .card-content-style-1 {
  323. font-size: 12px;
  324. }
  325. </style>