WindturbineMinCard.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /* 风机矩阵小卡片 */
  2. <template>
  3. <div :class="cardStyle" @click="sigSelectClick" @dblclick="dbcDetailPages">
  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. /* 停机 */
  107. .card-style-0 {
  108. border: 2px solid rgb(255, 255, 255);
  109. background-color: rgba(255, 255, 255, 0.15);
  110. }
  111. /* 上电 */
  112. .card-style-1 {
  113. border: 2px solid rgb(197, 48, 72);
  114. background-color: rgba(197, 48, 72, 0.15);
  115. }
  116. /* 待机 */
  117. .card-style-2 {
  118. border: 2px solid rgb(05, 187, 76);
  119. background-color: rgba(05, 187, 76, 0.15);
  120. }
  121. /* 启动 */
  122. .card-style-3 {
  123. border: 2px solid rgb(05, 187, 76);
  124. background-color: rgba(05, 187, 76, 0.15);
  125. }
  126. /* 并网 */
  127. .card-style-4 {
  128. border: 2px solid rgb(75, 85, 174);
  129. background-color: rgba(75, 85, 174, 0.15);
  130. }
  131. /* 故障 */
  132. .card-style-5 {
  133. border: 2px solid rgba(186, 50, 55);
  134. background-color: rgba(186, 50, 55, 0.15);
  135. }
  136. /* 维护 */
  137. .card-style-6 {
  138. border: 2px solid rgb(225, 125, 36);
  139. background-color: rgba(225, 125, 36, 0.15);
  140. }
  141. /* 离线 */
  142. .card-style-7 {
  143. border: 2px solid rgb(96, 103, 105);
  144. background-color: rgba(96, 103, 105, 0.15);
  145. }
  146. /* 卡片整体样式-选择 */
  147. .card-style-select-0 {
  148. border: 2px solid rgba(255, 255, 255, 0.5);
  149. background-color: rgba(255, 255, 255, 0.1);
  150. }
  151. .card-style-select-1 {
  152. border: 2px solid rgba(197, 48, 72, 0.5);
  153. background-color: rgba(197, 48, 72, 0.1);
  154. }
  155. .card-style-select-2 {
  156. border: 2px solid rgba(05, 187, 76, 0.5);
  157. background-color: rgba(05, 187, 76, 0.1);
  158. }
  159. .card-style-select-3 {
  160. border: 2px solid rgba(05, 187, 76, 0.5);
  161. background-color: rgba(05, 187, 76, 0.1);
  162. }
  163. .card-style-select-4 {
  164. border: 2px solid rgba(75, 85, 174, 0.5);
  165. background-color: rgba(75, 85, 174, 0.1);
  166. }
  167. .card-style-select-5 {
  168. border: 2px solid rgba(186, 50, 55, 0.5);
  169. background-color: rgba(186, 50, 55, 0.1);
  170. }
  171. .card-style-select-6 {
  172. border: 2px solid rgba(225, 125, 36, 0.5);
  173. background-color: rgba(225, 125, 36, 0.1);
  174. }
  175. .card-style-select-7 {
  176. border: 2px solid rgba(159, 163, 165, 0.5);
  177. background-color: rgba(159, 163, 165, 0.1);
  178. }
  179. .card-style-left{
  180. position: relative;
  181. width: 25px;
  182. height: 41px;
  183. box-sizing: border-box;
  184. margin: 3px;
  185. display: inline-block;
  186. }
  187. /* 卡片左边样式 */
  188. .card-left-style-0 {
  189. background-color: rgb(255, 255, 255);
  190. color: rgb(0, 0, 0);
  191. }
  192. .card-left-style-1 {
  193. background-color: rgb(121, 73, 81);
  194. }
  195. .card-left-style-2 {
  196. background-color: rgb(05, 187, 76);
  197. }
  198. .card-left-style-3 {
  199. background-color: rgb(05, 187, 76);
  200. }
  201. .card-left-style-4 {
  202. background-color: rgb(75, 85, 174);
  203. }
  204. .card-left-style-5 {
  205. background-color: rgb(186, 50, 55);
  206. }
  207. .card-left-style-6 {
  208. background-color: rgb(225, 125, 36);
  209. }
  210. .card-left-style-7 {
  211. background-color: rgb(159, 163, 165);
  212. }
  213. /* 卡片左边样式-选择 */
  214. .card-left-style-select-0 {
  215. background-color: rgba(255, 255, 255,0.7);
  216. color: rgba(0, 0, 0,0.7);
  217. }
  218. .card-left-style-select-1 {
  219. background-color: rgba(121, 73, 81,0.7);
  220. }
  221. .card-left-style-select-2 {
  222. background-color: rgba(05, 187, 76,0.7);
  223. }
  224. .card-left-style-select-3 {
  225. background-color: rgba(05, 187, 76,0.7);
  226. }
  227. .card-left-style-select-4 {
  228. background-color: rgba(75, 85, 174,0.7);
  229. }
  230. .card-left-style-select-5 {
  231. background-color: rgba(186, 50, 55,0.7);
  232. }
  233. .card-left-style-select-6 {
  234. background-color: rgba(225, 125, 36,0.7);
  235. }
  236. .card-left-style-select-7 {
  237. background-color: rgba(159, 163, 165,0.7);
  238. }
  239. .card-left-style-select {
  240. position: relative;
  241. width: 25px;
  242. height: 41px;
  243. box-sizing: border-box;
  244. margin: 3px;
  245. display: inline-block;
  246. }
  247. .card-right-style{
  248. width: calc(116px - 4px - 6px - 25px);
  249. height: calc(50px - 2px);
  250. box-sizing: border-box;
  251. display: inline-block;
  252. position: absolute;
  253. right: 0px;
  254. }
  255. /* 卡片虚线样式 */
  256. .card-right-style-0 {
  257. border-left: 2px dashed rgb(255, 255, 255);
  258. color: rgb(255, 255, 255);
  259. }
  260. .card-right-style-1 {
  261. border-left: 2px dashed rgb(121, 73, 81);
  262. }
  263. .card-right-style-2 {
  264. border-left: 2px dashed rgb(05, 187, 76);
  265. }
  266. .card-right-style-3 {
  267. border-left: 2px dashed rgb(05, 187, 76);
  268. }
  269. .card-right-style-4 {
  270. border-left: 2px dashed rgb(75, 85, 174);
  271. }
  272. .card-right-style-5 {
  273. border-left: 2px dashed rgb(186, 50, 55);
  274. }
  275. .card-right-style-6 {
  276. border-left: 2px dashed rgb(225, 125, 36);
  277. }
  278. .card-right-style-7 {
  279. border-left: 2px dashed rgb(159, 163, 165);
  280. }
  281. /* 卡片虚线样式-选择 */
  282. .card-right-style-select-0 {
  283. border-left: 2px dashed rgba(255, 255, 255,0.7);
  284. color: rgba(255, 255, 255,0.7);
  285. }
  286. .card-right-style-select-1 {
  287. border-left: 2px dashed rgba(121, 73, 81,0.7);
  288. }
  289. .card-right-style-select-2 {
  290. border-left: 2px dashed rgba(05, 187, 76,0.7);
  291. }
  292. .card-right-style-select-3 {
  293. border-left: 2px dashed rgba(05, 187, 76,0.7);
  294. }
  295. .card-right-style-select-4 {
  296. border-left: 2px dashed rgba(75, 85, 174,0.7);
  297. }
  298. .card-right-style-select-5 {
  299. border-left: 2px dashed rgba(186, 50, 55,0.7);
  300. }
  301. .card-right-style-select-6 {
  302. border-left: 2px dashed rgba(225, 125, 36,0.7);
  303. }
  304. .card-right-style-select-7 {
  305. border-left: 2px dashed rgba(159, 163, 165,0.7);
  306. }
  307. .card-title1-style{
  308. margin-top: 2px;
  309. font-size: 14px;
  310. width: 100%;
  311. text-align: center;
  312. }
  313. .card-title1-style-1 {
  314. font-size: 14px;
  315. }
  316. .card-title2-style{
  317. margin-top: 2px;
  318. font-size: 12px;
  319. width: 100%;
  320. text-align: center;
  321. }
  322. .card-title2-style-1 {
  323. font-size: 12px;
  324. }
  325. .card-content-style{
  326. width: 100%;
  327. text-align: right;
  328. font-size: 12px;
  329. }
  330. .card-content-style-1 {
  331. font-size: 12px;
  332. }
  333. </style>