index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. <template>
  2. <div class="table-box">
  3. <div class="card table-search" style="overflow: hidden;">
  4. <el-form ref="formRef" :model="pageable" :inline="true" label-width="auto">
  5. <el-form-item label="自动站:" prop="base">
  6. <el-select v-model="pageable.as_code" filterable placeholder="请搜索自动站" remote reserve-keyword
  7. clearable style="width: 200px" @change="changeStation">
  8. <el-option v-for="item in platformList" :key="item.as_code"
  9. :label="item.as_code + ' ' + item.as_name" :value="item.as_code" />
  10. <template #prefix>
  11. <el-icon class="el-input__icon">
  12. <search />
  13. </el-icon>
  14. </template>
  15. </el-select>
  16. </el-form-item>
  17. <el-form-item label="观测时间:" prop="base">
  18. <el-date-picker v-model="dateRange" value-format="YYYY-MM-DD HH:mm" format="YYYY-MM-DD"
  19. type="daterange" range-separator="-" start-placeholder="开始时间" end-placeholder="结束时间"
  20. :disabled-date="disabledDate" @focus="handleFocus" @calendar-change="handleChange"
  21. @change="handleDateChange"
  22. :default-time="[new Date(2000, 1, 1, 0, 0), new Date(2000, 1, 1, new Date().getHours(), 0)]"
  23. style="width: 300px;"></el-date-picker>
  24. </el-form-item>
  25. <el-form-item>
  26. <div>
  27. <el-button type="primary" @click="getHistoryList" >查询</el-button>
  28. <el-button plain @click="resetForm(formRef)">重置</el-button>
  29. </div>
  30. </el-form-item>
  31. </el-form>
  32. </div>
  33. <div class="main_list">
  34. <el-row :gutter="15">
  35. <el-col :span="24">
  36. <div class="chart_item zhuti">
  37. <div style="font-weight: bold;" class="item_title">
  38. <span>风向风速玫瑰图</span>
  39. </div>
  40. <div class="mt5">
  41. <el-row :gutter="10">
  42. <el-col :span="12"><div ref="data" class="data_box"></div></el-col>
  43. <el-col :span="12"><div ref="wind" class="data_box"></div></el-col>
  44. </el-row>
  45. </div>
  46. </div>
  47. </el-col>
  48. </el-row>
  49. </div>
  50. </div>
  51. </template>
  52. <script setup lang="ts" name="dataSynthesis">
  53. import * as echarts from 'echarts';
  54. import { ElMessage } from "element-plus";
  55. import { useGlobalStore } from "@/stores/modules/global";
  56. import { ref, computed, onMounted, reactive, watch, onDeactivated, onActivated } from "vue";
  57. import { getDataItemList, getPlatformList, getRgDataList, getTacRecordList } from "@/api/modules/allData";
  58. import { Platform } from "@/api/interface";
  59. import { parseTime } from '@/utils/index';
  60. import { isToday, isWithinThirtyMinutes, getTimeStamp, getStamp, isWithin24Hours, isDateFuture, isDateRangeWithinDays } from "@/utils/dateTime";
  61. const dateRange = ref<[any, any]>([parseTime(new Date(getTimeStamp(5)), '{y}-{m}-{d}') + ' 00:00', parseTime(new Date(), '{y}-{m}-{d} {h}') + ':00']);
  62. const handleDateRangeChange = (newVal) => {
  63. const [startDate, endDate] = newVal;
  64. if (endDate && isToday(endDate)) {
  65. // 获取当前时间的整点
  66. const currentHour = new Date().getHours();
  67. const roundedEndDate = new Date(endDate);
  68. roundedEndDate.setMinutes(0, 0, 0); // 设置分钟、秒、毫秒为0
  69. const startZeroed = new Date(startDate);
  70. startZeroed.setHours(0, 0, 0, 0);
  71. dateRange.value = [parseTime(new Date(startZeroed)), parseTime(new Date(roundedEndDate))];
  72. } else {
  73. const noTodayStart = new Date(startDate).setHours(0, 0, 0, 0);
  74. const noTodayEnd = new Date(endDate).setHours(23, 0, 0, 0);
  75. dateRange.value = [parseTime(new Date(noTodayStart)), parseTime(new Date(noTodayEnd))];
  76. }
  77. };
  78. const handleDateChange = async (e) => {
  79. if (isDateRangeWithinDays(e[0], e[1], 30)) {
  80. await handleDateRangeChange(e)
  81. getHistoryList()
  82. } else {
  83. ElMessage.error("时间间隔不能大于30天");
  84. }
  85. }
  86. const pickDay = ref()
  87. const handleFocus = () => {
  88. pickDay.value = null
  89. }
  90. const limitTime = 1000 * 60 * 60 * 24 * 30
  91. const disabledDate = (time: Date) => {
  92. return time.getTime() > Date.now() - 8.64e6
  93. }
  94. const handleChange = (val: Date[]) => {
  95. const [pointDay] = val
  96. pickDay.value = pointDay
  97. }
  98. const pageable = ref({
  99. data_type: true,
  100. time_order: 0,
  101. as_code: undefined,
  102. data_items: [],
  103. pageNum: 1,
  104. pageSize: 20,
  105. total: 0
  106. });
  107. let historyColumns = [
  108. {
  109. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  110. data_id: 2,
  111. data_type: "风",
  112. data_item: "ER_FEN_ZHONG_PING_JUN_FENG_XIANG",
  113. data_name: "2分钟风向",
  114. data_unit: "°",
  115. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  116. data_value: "",
  117. data_order: 0,
  118. data_condition: 0
  119. },
  120. {
  121. data_id: 1,
  122. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  123. data_type: "风",
  124. data_name: "2分钟风速",
  125. data_item: "ER_FEN_ZHONG_PING_JUN_FENG_SU",
  126. data_unit: "m/s",
  127. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  128. data_value: "",
  129. data_order: 0,
  130. data_condition: 0
  131. },
  132. ]
  133. // 查询自动站列表
  134. const queryas = ref<Platform>({
  135. pageSize: 50,
  136. pageNum: 1,
  137. currentpage: 1
  138. })
  139. const platformList = ref<any>([])
  140. const selectPlatform = ref()
  141. const getPlatforms = async () => {
  142. const { data } = await getPlatformList(queryas.value);
  143. platformList.value = data.list
  144. pageable.value.as_code = data.list[0].as_code
  145. selectPlatform.value = data.list[0]
  146. getHistoryList()
  147. };
  148. const changeStation = () => {
  149. getHistoryList()
  150. }
  151. //时间戳转换为指定格式的日期字符串
  152. function formatDate(timestamp, type) {
  153. const date = new Date(timestamp * 1000); // 将时间戳转换为毫秒
  154. const year = date.getFullYear();
  155. const month = String(date.getMonth() + 1).padStart(2, '0');
  156. const day = String(date.getDate()).padStart(2, '0');
  157. const hours = String(date.getHours()).padStart(2, '0');
  158. const minutes = String(date.getMinutes()).padStart(2, '0');
  159. if (type === 1) {
  160. return `${month}/${day} ${hours}:${minutes}`;
  161. } else {
  162. return `${year}-${month}-${day} ${hours}:${minutes}`;
  163. }
  164. }
  165. const timeArr = ref()
  166. const windD = ref<any>([])
  167. const windS = ref<any>([])
  168. const windInfo = ref<any>({
  169. max: 6,
  170. speedMax:6
  171. })
  172. const getHistoryList = async () => {
  173. if (!isDateRangeWithinDays(dateRange.value[0], dateRange.value[1], 30)) {
  174. ElMessage.error("时间间隔不能大于30天");
  175. return false
  176. }
  177. const { data } = await getDataItemList({ ...pageable.value, pageSize: 999, as_code_list: [pageable.value.as_code], data_items: historyColumns, data_type: false, time_space: 60, end_time: getStamp(dateRange.value[1]), begin_time: getStamp(dateRange.value[0]) });
  178. timeArr.value = data.list?.map(item => {
  179. return formatDate(item.data_time_i, 1)
  180. })
  181. let arr1 = new Array(16).fill(0);
  182. let arr2 = new Array(16).fill([]);
  183. let num = 0
  184. data.list?.forEach((item, index) => {
  185. if (new Date(item.data_time_i * 1000).getHours() % 3 == 2) {
  186. num++
  187. if (item[2] >= 348.75 || item[2] < 11.25) {
  188. arr1[0]++;
  189. arr2[0] = [...arr2[0], item[1]];
  190. } else if (item[2] >= 326.25 && item[2] < 348.75) {
  191. arr1[1]++;
  192. arr2[1] = [...arr2[1], item[1]];
  193. } else if (item[2] >= 303.75 && item[2] < 326.25) {
  194. arr1[2]++;
  195. arr2[2] = [...arr2[2], item[1]];
  196. } else if (item[2] >= 281.25 && item[2] < 303.75) {
  197. arr1[3]++;
  198. arr2[3] = [...arr2[3], item[1]];
  199. } else if (item[2] >= 258.75 && item[2] < 281.25) {
  200. arr1[4]++;
  201. arr2[4] = [...arr2[4], item[1]];
  202. } else if (item[2] >= 236.25 && item[2] < 258.75) {
  203. arr1[5]++;
  204. arr2[5] = [...arr2[5], item[1]];
  205. } else if (item[2] >= 213.75 && item[2] < 236.25) {
  206. arr1[6]++;
  207. arr2[6] = [...arr2[6], item[1]];
  208. } else if (item[2] >= 191.25 && item[2] < 213.75) {
  209. arr1[7]++;
  210. arr2[7] = [...arr2[7], item[1]];
  211. } else if (item[2] >= 168.75 && item[2] < 191.25) {
  212. arr1[8]++;
  213. arr2[8] = [...arr2[8], item[1]];
  214. } else if (item[2] >= 146.25 && item[2] < 168.75) {
  215. arr1[9]++;
  216. arr2[9] = [...arr2[9], item[1]];
  217. } else if (item[2] >= 123.75 && item[2] < 146.25) {
  218. arr1[10]++;
  219. arr2[10] = [...arr2[10], item[1]];
  220. } else if (item[2] >= 101.25 && item[2] < 123.75) {
  221. arr1[11]++;
  222. arr2[11] = [...arr2[11], item[1]];
  223. } else if (item[2] >= 78.75 && item[2] < 101.25) {
  224. arr1[12]++;
  225. arr2[12] = [...arr2[12], item[1]];
  226. } else if (item[2] >= 56.25 && item[2] < 78.75) {
  227. arr1[13]++;
  228. arr2[13] = [...arr2[13], item[1]];
  229. } else if (item[2] >= 33.75 && item[2] < 56.25) {
  230. arr1[14]++;
  231. arr2[14] = [...arr2[14], item[1]];
  232. } else if (item[2] >= 11.25 && item[2] < 33.75) {
  233. arr1[15]++;
  234. arr2[15] = [...arr2[15], item[1]];
  235. }
  236. }
  237. });
  238. const arr3 = arr2.map(subArr => {
  239. const sum = subArr.reduce((a, b) => Number(a) + Number(b), 0);
  240. const avg = sum / subArr.length;
  241. return isNaN(avg) ? 0 : avg.toFixed(2);
  242. })
  243. windD.value = arr1.map((item) => {
  244. return isNaN(item / (num/100)) ? 0 :item / (num/100)
  245. })
  246. windInfo.value.max = calMax(windD.value)
  247. windInfo.value.speedMax = calMax(arr3)
  248. windS.value = arr3
  249. showData()
  250. showWind()
  251. };
  252. // 获取时间戳的小时
  253. function getHourFromTimestamp(timestamp) {
  254. const date = new Date(timestamp * 1000); // 将秒时间戳转换为毫秒时间戳
  255. return date.getHours();
  256. }
  257. // 获取传入日期相差时间
  258. function getHoursDifference(date1, date2) {
  259. const d1 = new Date(date1);
  260. const d2 = new Date(date2);
  261. const diffInMs = Math.abs(d2.getTime() - d1.getTime());
  262. return Math.floor(diffInMs / (1000 * 60 * 60)) / 100;
  263. }
  264. // 获取最大值
  265. function calMax(arr) {
  266. let max = Math.max.apply(null, arr); // 获取最大值方法
  267. let maxint = Math.ceil(max / 6) * 6; // 向上以6的倍数取整
  268. return maxint === 0 ? 6 : maxint; // 输出最大值+6
  269. }
  270. const formRef = ref()
  271. const data = ref()
  272. const globalStore = useGlobalStore();
  273. const isDark = computed(() => globalStore.isDark);
  274. // resetForm
  275. const resetForm = (formEl) => {
  276. if (!formEl) return;
  277. formEl.resetFields();
  278. };
  279. // 风向
  280. const showData = () => {
  281. let mychart = echarts.init(data.value);
  282. let option = {
  283. legend: {
  284. // data: ['Allocated Budget', 'Actual Spending']
  285. textStyle: {//图例文字的样式
  286. color: isDark.value ? '#fff' : "#000",
  287. }
  288. },
  289. radar: {
  290. shape: 'circle',
  291. name: { // (圆外的标签)雷达图每个指示器名称的配置项。
  292. formatter: '{value}',
  293. textStyle: {
  294. fontSize: 15,
  295. color: isDark.value ? '#fff' : "#000",
  296. }
  297. },
  298. nameGap: 5,
  299. // 指示器名称和指示器轴的距离。[ default: 15 ]
  300. splitNumber: 6,
  301. splitLine: { // (这里是指所有圆环)坐标轴在 grid 区域中的分隔线。
  302. lineStyle: {
  303. color: '#bbbbbb',
  304. // 分隔线颜色
  305. width: 1,
  306. // 分隔线线宽
  307. }
  308. },
  309. splitArea: { // 坐标轴在 grid 区域中的分隔区域,默认不显示。
  310. show: true,
  311. areaStyle: { // 分隔区域的样式设置。
  312. color: [isDark.value ? '#000' : "#fff", isDark.value ? '#000' : "#fff"],
  313. // 分隔区域颜色。分隔区域会按数组中颜色的顺序依次循环设置颜色。默认是一个深浅的间隔色。
  314. }
  315. },
  316. indicator: [
  317. {
  318. name: 'N', max: windInfo.value.max, axisLabel: {
  319. show: true, color: isDark.value ? '#fff' : "#000", formatter: function (params) {
  320. return params.toFixed();
  321. },
  322. },
  323. },
  324. { name: 'NNW', max: windInfo.value.max },
  325. { name: 'NW°', max: windInfo.value.max },
  326. { name: 'WNW', max: windInfo.value.max },
  327. { name: 'W°', max: windInfo.value.max },
  328. { name: 'WSW', max: windInfo.value.max },
  329. { name: 'WS°', max: windInfo.value.max },
  330. { name: 'SSW', max: windInfo.value.max },
  331. { name: 'S', max: windInfo.value.max },
  332. { name: 'SSE', max: windInfo.value.max },
  333. { name: 'SE', max: windInfo.value.max },
  334. { name: 'ESE', max: windInfo.value.max },
  335. { name: 'E', max: windInfo.value.max },
  336. { name: 'ENE', max: windInfo.value.max },
  337. { name: 'NE', max: windInfo.value.max },
  338. { name: 'NNE', max: windInfo.value.max },
  339. ]
  340. },
  341. series: [
  342. {
  343. name: 'Budget vs spending',
  344. type: 'radar',
  345. symbolSize: 0,//拐点大小
  346. data: [
  347. {
  348. value: windD.value,
  349. name: '风向',
  350. itemStyle: { // 单个拐点标志的样式设置。
  351. normal: {
  352. // color:'#d1d6dd'
  353. }
  354. },
  355. }
  356. ]
  357. }
  358. ]
  359. };
  360. mychart.setOption(option)
  361. window.addEventListener("resize", function () {
  362. mychart.resize();
  363. });
  364. }
  365. // 风速
  366. const wind=ref()
  367. const showWind = () => {
  368. let mychart = echarts.init(wind.value);
  369. let option = {
  370. legend: {
  371. // data: ['Allocated Budget', 'Actual Spending']
  372. textStyle: {//图例文字的样式
  373. color: isDark.value ? '#fff' : "#000",
  374. }
  375. },
  376. radar: {
  377. shape: 'circle',
  378. name: { // (圆外的标签)雷达图每个指示器名称的配置项。
  379. formatter: '{value}',
  380. textStyle: {
  381. fontSize: 15,
  382. color: isDark.value ? '#fff' : "#000",
  383. }
  384. },
  385. nameGap: 5,
  386. // 指示器名称和指示器轴的距离。[ default: 15 ]
  387. splitNumber: 6,
  388. splitLine: { // (这里是指所有圆环)坐标轴在 grid 区域中的分隔线。
  389. lineStyle: {
  390. color: '#bbbbbb',
  391. // 分隔线颜色
  392. width: 1,
  393. // 分隔线线宽
  394. }
  395. },
  396. splitArea: { // 坐标轴在 grid 区域中的分隔区域,默认不显示。
  397. show: true,
  398. areaStyle: { // 分隔区域的样式设置。
  399. color: [isDark.value ? '#000' : "#fff", isDark.value ? '#000' : "#fff"],
  400. // 分隔区域颜色。分隔区域会按数组中颜色的顺序依次循环设置颜色。默认是一个深浅的间隔色。
  401. }
  402. },
  403. indicator: [
  404. {
  405. name: 'N', max: windInfo.value.speedMax, axisLabel: {
  406. show: true, color: isDark.value ? '#fff' : "#000", formatter: function (params) {
  407. return params.toFixed();
  408. },
  409. },
  410. },
  411. { name: 'NNW', max: windInfo.value.speedMax },
  412. { name: 'NW°', max: windInfo.value.speedMax },
  413. { name: 'WNW', max: windInfo.value.speedMax },
  414. { name: 'W°', max: windInfo.value.speedMax },
  415. { name: 'WSW', max: windInfo.value.speedMax },
  416. { name: 'WS°', max: windInfo.value.speedMax },
  417. { name: 'SSW', max: windInfo.value.speedMax },
  418. { name: 'S', max: windInfo.value.speedMax },
  419. { name: 'SSE', max: windInfo.value.speedMax },
  420. { name: 'SE', max: windInfo.value.speedMax },
  421. { name: 'ESE', max: windInfo.value.speedMax },
  422. { name: 'E', max: windInfo.value.speedMax },
  423. { name: 'ENE', max: windInfo.value.speedMax },
  424. { name: 'NE', max: windInfo.value.speedMax },
  425. { name: 'NNE', max: windInfo.value.speedMax },
  426. ]
  427. },
  428. series: [
  429. {
  430. name: 'windspeed',
  431. type: 'radar',
  432. symbolSize: 0,//拐点大小
  433. data: [
  434. {
  435. value: windS.value,
  436. name: '风速 (m/s)',
  437. itemStyle: { // 单个拐点标志的样式设置。
  438. normal: {
  439. color:'#91cc75'
  440. }
  441. },
  442. }
  443. ]
  444. }
  445. ]
  446. };
  447. mychart.setOption(option)
  448. window.addEventListener("resize", function () {
  449. mychart.resize();
  450. });
  451. }
  452. watch(isDark, () => {
  453. showData()
  454. showWind()
  455. });
  456. onMounted(() => {
  457. getPlatforms()
  458. // showData()
  459. })
  460. </script>
  461. <style scoped lang="scss">
  462. .main_list {
  463. background: transparent !important;
  464. box-shadow: none !important;
  465. padding: 0 !important;
  466. height: calc(100vh - 150px);
  467. margin-bottom: 10px;
  468. overflow-y: scroll;
  469. overflow-x: hidden;
  470. .chart_item {
  471. border-radius: 10px;
  472. padding: 10px;
  473. background-color: #fff;
  474. // height: 100%;
  475. // margin-bottom: 15px;
  476. .item_title {
  477. display: flex;
  478. justify-content: space-between;
  479. align-items: center;
  480. }
  481. .FTP_box {
  482. padding: 0 50px;
  483. display: flex;
  484. align-items: center;
  485. justify-content: space-between;
  486. .FTP_item {
  487. flex: 1;
  488. flex-shrink: 0;
  489. display: flex;
  490. flex-direction: column;
  491. justify-content: center;
  492. align-items: center;
  493. img {
  494. width: 56px;
  495. margin-bottom: 20px;
  496. }
  497. }
  498. }
  499. }
  500. .info_box {
  501. .info_title {
  502. color: #999999;
  503. font-size: 16px;
  504. }
  505. .info_content {
  506. height: 40px;
  507. font-weight: bold;
  508. color: #000;
  509. font-size: 26px;
  510. }
  511. }
  512. }
  513. .data_box {
  514. height: calc(100vh - 215px);
  515. // height: 100%;
  516. }
  517. </style>