measurePoint.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <div class="content">
  3. <div class="title">
  4. <div class="text">{{ title }}</div>
  5. <!-- <a-radio-group v-model:value="shown" button-style="solid">
  6. <a-radio-button value="default">测点信息</a-radio-button>
  7. <a-radio-button value="chart">预测曲线</a-radio-button>
  8. </a-radio-group> -->
  9. <BaseTab
  10. style="width: 200px"
  11. :tabs="[
  12. { name: '测点信息', id: 'default' },
  13. { name: '预测曲线', id: 'chart' },
  14. ]"
  15. v-model:id="shown"
  16. />
  17. </div>
  18. <div v-if="shown === 'default'" class="content-item">
  19. <template v-for="(item, index) in cards" :key="`vmac${index}`">
  20. <div class="card-content">
  21. <div class="item-l">
  22. <div class="label-l">{{ item.label }}</div>
  23. <div class="value-l">{{ item.value }}</div>
  24. </div>
  25. <div class="item-r">
  26. <div class="content-r" v-for="el in item.listR" :key="el.id">
  27. <span>{{ `${el.label} : ` }}</span>
  28. <span
  29. :class="{
  30. 'status-f': el.label.includes('状态') && el.value == 1,
  31. 'status-l': el.label.includes('状态') && el.value == 0,
  32. }"
  33. >
  34. {{ el.label.includes('状态') ? (el.value == 1 ? '异常' : el.value == 0 ? '正常' : el.value) : el.value }}
  35. </span>
  36. </div>
  37. </div>
  38. </div>
  39. </template>
  40. </div>
  41. <div v-if="shown === 'chart'" class="chart-item">
  42. <div v-for="(item, index) in charts" :key="`acmt${index}`" class="chart-content">
  43. <div class="text-center">
  44. {{ item.label }}
  45. </div>
  46. <PredictionCurve :style="{ width: chartWidth || '470px' }" style="height: 300px; margin: 15px" :chart="item" />
  47. </div>
  48. </div>
  49. </div>
  50. </template>
  51. <script setup lang="ts">
  52. import { ref } from 'vue';
  53. import BaseTab from '../../../gas/components/tab/baseTab.vue';
  54. import PredictionCurve from './predictionCurve.vue';
  55. // well i know this is trash but the time is reaching
  56. defineProps<{
  57. cards: { label: string; value: any; listR: { id: number; label: string; dw: string; value: any }[] }[];
  58. charts: {
  59. label: string;
  60. time: Date;
  61. data: [number, number, number, number];
  62. }[];
  63. title: string;
  64. timeout?: number;
  65. chartWidth?: string;
  66. }>();
  67. const shown = ref('default');
  68. // const chartsConfig = ref<
  69. // {
  70. // label: string;
  71. // /** 下一项数据更新后应该替换配置中的哪项数据的标志 */
  72. // indexMark: number;
  73. // x: string[];
  74. // y1: number[];
  75. // y2: number[];
  76. // y3: number[];
  77. // y4: number[];
  78. // }[]
  79. // >([]);
  80. // watch(
  81. // () => props.charts,
  82. // () => {
  83. // const arr = new Array(20).fill(0);
  84. // props.charts.forEach((el, i) => {
  85. // if (chartsConfig.value[i]) {
  86. // // 由于上面这些数据都是 20 项组成的,当指针移动到 20 时说明上次更新了最后一项
  87. // // 那么应该按先进后出的队列模式更新数据了
  88. // const val = chartsConfig.value[i];
  89. // if (val.indexMark === 20) {
  90. // val.x.shift();
  91. // val.y1.shift();
  92. // val.y2.shift();
  93. // val.y3.shift();
  94. // val.y4.shift();
  95. // val.indexMark = 19;
  96. // }
  97. // val.x[val.indexMark] = moment(el.time).format('HH:mm:ss');
  98. // val.y1[val.indexMark] = el.data[0];
  99. // val.y2[val.indexMark] = el.data[1];
  100. // val.y3[val.indexMark] = el.data[2];
  101. // val.y4[val.indexMark] = el.data[3];
  102. // // 指针向后移动1
  103. // val.indexMark += 1;
  104. // } else {
  105. // // 更新配置
  106. // // 初始化配置数据,按照一项数据,生成一个由 20 项数据组成的数组,该数组由此项数据衍生
  107. // const startFrom = moment(el.time);
  108. // chartsConfig.value[i] = {
  109. // label: el.label,
  110. // indexMark: 1,
  111. // x: arr.map(() => {
  112. // const str = startFrom.format('HH:mm:ss');
  113. // startFrom.add(props.timeout || 3000);
  114. // return str;
  115. // }),
  116. // y1: arr.map(() => {
  117. // return el.data[0];
  118. // }),
  119. // y2: arr.map(() => {
  120. // return el.data[1];
  121. // }),
  122. // y3: arr.map(() => {
  123. // return el.data[2];
  124. // }),
  125. // y4: arr.map(() => {
  126. // return el.data[3];
  127. // }),
  128. // };
  129. // }
  130. // });
  131. // },
  132. // { immediate: true, deep: true }
  133. // );
  134. </script>
  135. <style lang="less">
  136. @import '/@/design/theme.less';
  137. @{theme-deepblue} {
  138. .content {
  139. --image-bot-area: url('/@/assets/images/themify/deepblue/fire/bot-area.png');
  140. --image-bot-area1: url('/@/assets/images/themify/deepblue/fire/bot-area1.png');
  141. }
  142. }
  143. .content {
  144. --image-bot-area: url('/@/assets/images/fire/bot-area.png');
  145. --image-bot-area1: url('/@/assets/images/fire/bot-area1.png');
  146. height: 100%;
  147. color: var(--vent-font-color);
  148. .title {
  149. height: 30px;
  150. margin-bottom: 10px;
  151. display: flex;
  152. justify-content: space-between;
  153. align-items: center;
  154. .text {
  155. font-family: 'douyuFont';
  156. font-size: 14px;
  157. }
  158. }
  159. .content-item {
  160. display: flex;
  161. justify-content: flex-start;
  162. flex-wrap: wrap;
  163. max-height: calc(100% - 50px);
  164. overflow-y: auto;
  165. .card-content {
  166. position: relative;
  167. width: 30%;
  168. height: 128px;
  169. margin: 0px 15px 15px 15px;
  170. background: var(--image-bot-area) no-repeat center;
  171. background-size: 100% 100%;
  172. .item-l {
  173. position: absolute;
  174. left: 32px;
  175. top: 50%;
  176. transform: translate(0, -50%);
  177. width: 89px;
  178. height: 98px;
  179. background: var(--image-bot-area1) no-repeat center;
  180. .label-l {
  181. position: absolute;
  182. left: 50%;
  183. top: 7px;
  184. color: var(--vent-font-color);
  185. font-size: 14px;
  186. transform: translate(-50%, 0);
  187. }
  188. .value-l {
  189. position: absolute;
  190. left: 50%;
  191. top: 50px;
  192. transform: translate(-50%, 0);
  193. font-family: 'douyuFont';
  194. font-size: 14px;
  195. color: var(--vent-table-action-link);
  196. }
  197. }
  198. .item-r {
  199. position: absolute;
  200. left: 132px;
  201. top: 50%;
  202. transform: translate(0, -50%);
  203. height: 128px;
  204. padding: 5px 0px;
  205. display: flex;
  206. flex-direction: column;
  207. justify-content: space-around;
  208. box-sizing: border-box;
  209. .content-r {
  210. display: flex;
  211. span {
  212. font-size: 14px;
  213. color: var(--vent-font-color);
  214. &:first-child {
  215. display: inline-block;
  216. width: 68px;
  217. }
  218. &:last-child {
  219. display: inline-block;
  220. width: calc(100% - 68px);
  221. }
  222. }
  223. .status-f {
  224. color: #ff0000;
  225. }
  226. .status-l {
  227. color: var(--vent-table-action-link);
  228. }
  229. }
  230. }
  231. }
  232. }
  233. .chart-item {
  234. display: flex;
  235. justify-content: flex-start;
  236. align-items: flex-start;
  237. flex-wrap: wrap;
  238. height: calc(100% - 50px);
  239. overflow-y: auto;
  240. .chart-content {
  241. // border: 1px solid var(--vent-base-border);
  242. box-shadow: inset 0px 0px 10px 1px var(--vent-modal-box-shadow);
  243. padding: 10px 0;
  244. margin: 0 5px 5px 5px;
  245. }
  246. }
  247. }
  248. </style>