index.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410
  1. <template>
  2. <div class="table-box">
  3. <div class="card table-search" style="overflow: hidden;display: flex;justify-content: space-between;">
  4. <el-form ref="formRef" :model="searchParam" :inline="true" label-width="auto">
  5. <el-form-item label="自动站:" prop="as_code">
  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. <div>
  19. <el-switch v-model="value1" @change="changetype" class="ml-2" inline-prompt active-text="正点"
  20. inactive-text="分钟" style="margin-right: 10px;" />
  21. <el-date-picker v-model="dateRange" value-format="YYYY-MM-DD HH:mm"
  22. :format="value1 ? 'YYYY-MM-DD' : 'YYYY-MM-DD HH:mm'"
  23. :type="value1 ? 'daterange' : 'datetimerange'" range-separator="-" start-placeholder="开始时间"
  24. end-placeholder="结束时间" :disabled-date="disabledDate" :disabled-minutes="disabledMinutes"
  25. @focus="handleFocus" @calendar-change="handleChange" @change="handleDateChange"
  26. :default-time="[new Date(2000, 1, 1, 0, 0), new Date(2000, 1, 1, new Date().getHours(), 0)]"
  27. style="width: 300px;"></el-date-picker>
  28. </div>
  29. </el-form-item>
  30. <el-form-item>
  31. <div>
  32. <el-button type="primary" @click="getHistoryList">查询</el-button>
  33. <el-button plain @click="resetForm(formRef)">重置</el-button>
  34. </div>
  35. </el-form-item>
  36. </el-form>
  37. <div class="header-button-ri">
  38. <slot name="toolButton">
  39. <img class="setting" style="margin-top: 5px;" src="@/assets/images/setting2.png"
  40. @click="handleSetting" />
  41. </slot>
  42. </div>
  43. </div>
  44. <div class="main_list">
  45. <el-row :gutter="15">
  46. <template v-if="array.length>0">
  47. <el-col :xs="24" :sm="12" :md="8" :lg="8">
  48. <div class="chart_item zhuti">
  49. <div style="font-weight: bold;" class="item_title">
  50. <span>2分钟平均风向 ( ° )/2分钟平均风速 ( m/s )</span>
  51. </div>
  52. <div class="mt5">
  53. <div ref="wind" class="ve-ring" style="height: 330px"></div>
  54. </div>
  55. </div>
  56. </el-col>
  57. <el-col :xs="24" :sm="12" :md="8" :lg="8" v-for="(item, index) in array" :key="item.data_id">
  58. <div class="chart_item zhuti">
  59. <div style="font-weight: bold;" class="item_title">
  60. <span>{{ item.data_name }} ( {{ item.data_unit ? item.data_unit : '' }} )</span>
  61. </div>
  62. <div class="mt5">
  63. <div :id="'Access' + index" class="ve-ring" style="height: 330px"></div>
  64. </div>
  65. </div>
  66. </el-col>
  67. </template>
  68. <el-col :span="24" v-else>
  69. <div class="chart_item zhuti">
  70. <el-empty description="暂无数据" />
  71. </div>
  72. </el-col>
  73. </el-row>
  74. </div>
  75. <!-- 添加或修改岗位对话框 -->
  76. <el-dialog :title="dialog.title" v-model="dialog.visible" width="1200px" append-to-body>
  77. <div style="height: 500px;display: flex">
  78. <el-tabs tab-position="left" class="demo-tabs" style="height: 100%">
  79. <el-tab-pane label="风">
  80. <div class="container-tag">
  81. <template v-for="item in elementList" :key="item.id">
  82. <div v-if="item.data_type === '风'"
  83. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  84. @click="toggleSelection(item)">{{ item.data_name }}</div>
  85. </template>
  86. </div>
  87. </el-tab-pane>
  88. <el-tab-pane label="温湿度">
  89. <div class="container-tag">
  90. <template v-for="item in elementList" :key="item.id">
  91. <div v-if="item.data_type === '温湿度'"
  92. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  93. @click="toggleSelection(item)">{{ item.data_name }}</div>
  94. </template>
  95. </div>
  96. </el-tab-pane>
  97. <el-tab-pane label="气压">
  98. <div class="container-tag">
  99. <template v-for="item in elementList" :key="item.id">
  100. <div v-if="item.data_type === '气压'"
  101. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  102. @click="toggleSelection(item)">{{ item.data_name }}</div>
  103. </template>
  104. </div>
  105. </el-tab-pane>
  106. <el-tab-pane label="降水">
  107. <div class="container-tag">
  108. <template v-for="item in elementList" :key="item.id">
  109. <div v-if="item.data_type === '降水'"
  110. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  111. @click="toggleSelection(item)">{{ item.data_name }}</div>
  112. </template>
  113. </div>
  114. </el-tab-pane>
  115. <el-tab-pane label="云">
  116. <div class="container-tag">
  117. <template v-for="item in elementList" :key="item.id">
  118. <div v-if="item.data_type === '云'"
  119. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  120. @click="toggleSelection(item)">{{ item.data_name }}</div>
  121. </template>
  122. </div>
  123. </el-tab-pane>
  124. <el-tab-pane label="能见度">
  125. <div class="container-tag">
  126. <template v-for="item in elementList" :key="item.id">
  127. <div v-if="item.data_type === '能见度'"
  128. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  129. @click="toggleSelection(item)">{{ item.data_name }}</div>
  130. </template>
  131. </div>
  132. </el-tab-pane>
  133. <el-tab-pane label="天气现象">
  134. <div class="container-tag">
  135. <template v-for="item in elementList" :key="item.id">
  136. <div v-if="item.data_type === '天气现象'"
  137. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  138. @click="toggleSelection(item)">{{ item.data_name }}</div>
  139. </template>
  140. </div>
  141. </el-tab-pane>
  142. <el-tab-pane label="积雪">
  143. <div class="container-tag">
  144. <template v-for="item in elementList" :key="item.id">
  145. <div v-if="item.data_type === '积雪'"
  146. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  147. @click="toggleSelection(item)">{{ item.data_name }}</div>
  148. </template>
  149. </div>
  150. </el-tab-pane>
  151. <el-tab-pane label="地面温度">
  152. <div class="container-tag">
  153. <template v-for="item in elementList" :key="item.id">
  154. <div v-if="item.data_type === '地面温度'"
  155. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  156. @click="toggleSelection(item)">{{ item.data_name }}</div>
  157. </template>
  158. </div>
  159. </el-tab-pane>
  160. <el-tab-pane label="大气电场">
  161. <div class="container-tag">
  162. <template v-for="item in elementList" :key="item.id">
  163. <div v-if="item.data_type === '大气电场'"
  164. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  165. @click="toggleSelection(item)">{{ item.data_name }}</div>
  166. </template>
  167. </div>
  168. </el-tab-pane>
  169. <el-tab-pane label="闪电">
  170. <div class="container-tag">
  171. <template v-for="item in elementList" :key="item.id">
  172. <div v-if="item.data_type === '闪电'"
  173. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  174. @click="toggleSelection(item)">{{ item.data_name }}</div>
  175. </template>
  176. </div>
  177. </el-tab-pane>
  178. <el-tab-pane label="日照">
  179. <div class="container-tag">
  180. <template v-for="item in elementList" :key="item.id">
  181. <div v-if="item.data_type === '日照'"
  182. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  183. @click="toggleSelection(item)">{{ item.data_name }}</div>
  184. </template>
  185. </div>
  186. </el-tab-pane>
  187. <el-tab-pane label="总辐射">
  188. <div class="container-tag">
  189. <template v-for="item in elementList" :key="item.id">
  190. <div v-if="item.data_type === '总辐射'"
  191. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  192. @click="toggleSelection(item)">{{ item.data_name }}</div>
  193. </template>
  194. </div>
  195. </el-tab-pane>
  196. <el-tab-pane label="日照文">
  197. <div class="container-tag">
  198. <template v-for="item in elementList" :key="item.id">
  199. <div v-if="item.data_type === '日照文'"
  200. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  201. @click="toggleSelection(item)">{{ item.data_name }}</div>
  202. </template>
  203. </div>
  204. </el-tab-pane>
  205. <el-tab-pane label="水文">
  206. <div class="container-tag">
  207. <template v-for="item in elementList" :key="item.id">
  208. <div v-if="item.data_type === '水文'"
  209. :class="item.isSelected ? 'item-tag-active' : 'item-tag'"
  210. @click="toggleSelection(item)">{{ item.data_name }}</div>
  211. </template>
  212. </div>
  213. </el-tab-pane>
  214. </el-tabs>
  215. <div class="selected-list-box">
  216. <div class="disposition-title" style="margin-top: 0px">已选要素</div>
  217. <div class="selected-list-c">
  218. <template v-for="(item, index) in copiedCustomizeColumns" :key="item.id">
  219. <div :class="selectedItemIndex === index ? 'selected-item-tag-active' : 'selected-item-tag'"
  220. @click="changeSelected(index)">{{ item.data_name }}</div>
  221. </template>
  222. </div>
  223. <div class="button-container">
  224. <el-button type="primary" plain class="top-left" @click="changeMoveUp">上移</el-button>
  225. <el-button type="primary" plain class="top-right" @click="changeMoveDown">下移</el-button>
  226. <el-button type="primary" plain class="bottom-left" @click="changeRemove">移除</el-button>
  227. <el-button type="primary" plain class="bottom-right" @click="changeCleared">清空</el-button>
  228. </div>
  229. </div>
  230. </div>
  231. <template #footer>
  232. <div class="dialog-footer">
  233. <el-button @click="cancel">取 消</el-button>
  234. <el-button type="primary" @click="submitForm">确 定</el-button>
  235. </div>
  236. </template>
  237. </el-dialog>
  238. </div>
  239. </template>
  240. <script setup lang="ts" name="dataSynthesis">
  241. import * as echarts from 'echarts';
  242. import { ElMessage } from "element-plus";
  243. import { useGlobalStore } from "@/stores/modules/global";
  244. import { ref, computed, onMounted, reactive, watch, onDeactivated, onActivated, nextTick } from "vue";
  245. import { getDataItemList, getPlatformList, getRgDataList, getTacRecordList } from "@/api/modules/allData";
  246. import { Platform } from "@/api/interface";
  247. import { parseTime } from '@/utils/index';
  248. import { isToday, isWithinThirtyMinutes, getTimeStamp, getStamp, isDateFuture, isDateRangeWithinDays } from "@/utils/dateTime";
  249. const value1 = ref(true)
  250. const dateRange = ref<[any, any]>([parseTime(new Date(), '{y}-{m}-{d}') + ' 00:00', parseTime(new Date(), '{y}-{m}-{d} {h}:{i}')]);
  251. const changetype = (e) => {
  252. if (!e) {
  253. dateRange.value = [parseTime(getTimeStamp(1), '{y}-{m}-{d} {h}:{i}'), parseTime(new Date(), '{y}-{m}-{d} {h}:{i}')]
  254. }
  255. getHistoryList()
  256. }
  257. const handleDateRangeChange = (newVal) => {
  258. const [startDate, endDate] = newVal;
  259. if (endDate && isToday(endDate)) {
  260. // 获取当前时间的整点
  261. const currentHour = new Date().getHours();
  262. const roundedEndDate = new Date(endDate);
  263. roundedEndDate.setMinutes(0, 0, 0); // 设置分钟、秒、毫秒为0
  264. const startZeroed = new Date(startDate);
  265. startZeroed.setHours(0, 0, 0, 0);
  266. dateRange.value = [parseTime(new Date(startZeroed)), parseTime(new Date(roundedEndDate))];
  267. console.log(dateRange.value, '今天');
  268. } else {
  269. const noTodayStart = new Date(startDate).setMinutes(0, 0, 0);
  270. const noTodayEnd = new Date(endDate).setHours(23, 0, 0, 0);
  271. dateRange.value = [parseTime(new Date(noTodayStart)), parseTime(new Date(noTodayEnd))];
  272. console.log(dateRange.value, '不是今天');
  273. }
  274. };
  275. const handleDateChange = async (e) => {
  276. if (isDateFuture(e[0]) || isDateFuture(e[1])) {
  277. ElMessage.error("不得选择未来的时间");
  278. } else {
  279. if (!value1.value) {
  280. if (isWithinThirtyMinutes(e[0], e[1])) {
  281. // 获取参数
  282. getHistoryList()
  283. } else {
  284. ElMessage.error("分钟模式下时间间隔不能大于3小时");
  285. }
  286. } else {
  287. if (isDateRangeWithinDays(e[0], e[1], 7)) {
  288. await handleDateRangeChange(e)
  289. getHistoryList()
  290. } else {
  291. ElMessage.error("正点模式下时间间隔不能大于7天");
  292. }
  293. }
  294. }
  295. }
  296. const pickDay = ref()
  297. const handleFocus = () => {
  298. pickDay.value = null
  299. }
  300. const limitTime = 1000 * 60 * 60 * 24 * 6
  301. const disabledDate = (time: Date) => {
  302. return time.getTime() > Date.now() - 8.64e6
  303. }
  304. const handleChange = (val: Date[]) => {
  305. const [pointDay] = val
  306. pickDay.value = pointDay
  307. }
  308. const disabledHours = () => {
  309. const a: number[] = [];
  310. for (let i = 0; i < 24; i++) {
  311. if (new Date().getHours() >= i) continue;
  312. a.push(i);
  313. }
  314. return a;
  315. };
  316. const disabledMinutes = () => {
  317. const a: number[] = [];
  318. // for (let i = 0; i < 60; i++) {
  319. // if (new Date().getMinutes() >= i) continue;
  320. // a.push(i);
  321. // }
  322. return a;
  323. };
  324. // 查询所有人工要素字典表
  325. const elementList = ref<any>([])
  326. //自定义部分表头
  327. let customizeColumns = ref<any>([
  328. {
  329. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  330. data_id: 2,
  331. data_type: "风",
  332. data_item: "ER_FEN_ZHONG_PING_JUN_FENG_XIANG",
  333. data_name: "2分钟风向",
  334. data_unit: "°",
  335. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  336. data_value: "",
  337. data_order: 0,
  338. data_condition: 0
  339. },
  340. {
  341. data_id: 1,
  342. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  343. data_type: "风",
  344. data_name: "2分钟风速",
  345. data_item: "ER_FEN_ZHONG_PING_JUN_FENG_SU",
  346. data_unit: "m/s",
  347. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  348. data_value: "",
  349. data_order: 0,
  350. data_condition: 0
  351. },
  352. {
  353. data_id: 4,
  354. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  355. data_type: "风",
  356. data_name: "10分钟风向",
  357. data_item: "SHI_FEN_ZHONG_PING_JUN_FENG_XIANG",
  358. data_unit: "°",
  359. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  360. data_value: "",
  361. data_order: 0,
  362. data_condition: 0
  363. },
  364. {
  365. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  366. data_id: 3,
  367. data_type: "风",
  368. data_item: "SHI_FEN_ZHONG_PING_JUN_FENG_SU",
  369. data_name: "10分钟风速",
  370. data_unit: "m/s",
  371. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  372. data_value: "",
  373. data_order: 0,
  374. data_condition: 0
  375. },
  376. {
  377. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  378. data_id: 501,
  379. data_type: "能见度",
  380. data_item: "YI_FEN_ZHONG_PING_JUN_NENG_JIAN_DU",
  381. data_name: "1分钟平均能见度",
  382. data_unit: "m",
  383. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  384. data_value: "",
  385. data_order: 0,
  386. data_condition: 0
  387. },
  388. {
  389. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  390. data_id: 101,
  391. data_type: "温湿度",
  392. data_item: "QI_WEN",
  393. data_name: "气温",
  394. data_unit: "℃",
  395. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  396. data_value: "",
  397. data_order: 0,
  398. data_condition: 0
  399. },
  400. {
  401. data_id: 201,
  402. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  403. data_type: "气压",
  404. data_name: "水汽压",
  405. data_item: "SHUI_QI_YA",
  406. data_unit: "hPa",
  407. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  408. data_value: "",
  409. data_order: 0,
  410. data_condition: 0
  411. },
  412. {
  413. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  414. data_id: 109,
  415. data_type: "温湿度",
  416. data_item: "LU_DIAN_WEN_DU",
  417. data_name: "露点温度",
  418. data_unit: "℃",
  419. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  420. data_value: "",
  421. data_order: 0,
  422. data_condition: 0
  423. },
  424. {
  425. data_id: 202,
  426. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  427. data_type: "气压",
  428. data_name: "本站气压",
  429. data_item: "BEN_ZHAN_QI_YA",
  430. data_unit: "hPa",
  431. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  432. data_value: "",
  433. data_order: 0,
  434. data_condition: 0
  435. }, {
  436. data_id: 207,
  437. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  438. data_type: "气压",
  439. data_name: "海平面气压",
  440. data_item: "HAI_PING_MIAN_QI_YA",
  441. data_unit: "hPa",
  442. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  443. data_value: "",
  444. data_order: 0,
  445. data_condition: 0
  446. },
  447. {
  448. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  449. data_id: 312,
  450. data_type: "降水",
  451. data_item: "XIAO_SHI_LEI_JI_JIANG_SHUI_LIANG_CHENG_ZHONG",
  452. data_name: "小时累计降水量(称重)",
  453. data_unit: "mm",
  454. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  455. data_value: "",
  456. data_order: 0,
  457. data_condition: 0
  458. }
  459. ]);
  460. const getAllRgDataList = async () => {
  461. const { data } = await getRgDataList();
  462. elementList.value = data.list
  463. };
  464. const copiedCustomizeColumns = ref<any>([...customizeColumns.value]);
  465. const sensorList = ref<any>([])
  466. // 被选中当条数据下标
  467. const selectedItemIndex = ref(0)
  468. const changeMoveUp = () => {
  469. //上移
  470. if (selectedItemIndex.value > 0) {
  471. const temp = copiedCustomizeColumns.value[selectedItemIndex.value - 1]
  472. copiedCustomizeColumns.value[selectedItemIndex.value - 1] = copiedCustomizeColumns.value[selectedItemIndex.value]
  473. copiedCustomizeColumns.value[selectedItemIndex.value] = temp
  474. selectedItemIndex.value--
  475. }
  476. }
  477. const changeMoveDown = () => {
  478. //下移
  479. if (selectedItemIndex.value < copiedCustomizeColumns.value.length - 1) {
  480. const temp = copiedCustomizeColumns.value[selectedItemIndex.value + 1]
  481. copiedCustomizeColumns.value[selectedItemIndex.value + 1] = copiedCustomizeColumns.value[selectedItemIndex.value]
  482. copiedCustomizeColumns.value[selectedItemIndex.value] = temp
  483. selectedItemIndex.value++
  484. }
  485. }
  486. const changeRemove = () => {
  487. //删除数据
  488. if (copiedCustomizeColumns.value.length > 0) {
  489. const custom = copiedCustomizeColumns.value[selectedItemIndex.value];
  490. const se_type = custom.se_type
  491. for (let i = 0; i < sensorList.value.length; i++) {
  492. if (sensorList.value[i].se_type === se_type) {
  493. sensorList.value[i].isSelected = false;
  494. }
  495. }
  496. copiedCustomizeColumns.value.splice(selectedItemIndex.value, 1)
  497. if (selectedItemIndex.value === copiedCustomizeColumns.value.length) {
  498. selectedItemIndex.value--
  499. }
  500. }
  501. }
  502. const changeCleared = () => {
  503. //清空所有数据
  504. selectedItemIndex.value = 0
  505. copiedCustomizeColumns.value = []
  506. for (let i = 0; i < sensorList.value.length; i++) {
  507. sensorList.value[i].isSelected = false;
  508. }
  509. }
  510. const changeSelected = (index) => {
  511. selectedItemIndex.value = index
  512. }
  513. // 要素的选中和取消
  514. const toggleSelection = (item) => {
  515. item.isSelected = !item.isSelected
  516. if (item.isSelected) {
  517. //添加
  518. copiedCustomizeColumns.value.push(item)
  519. } else {
  520. //删除
  521. copiedCustomizeColumns.value = copiedCustomizeColumns.value.filter(column => column.data_id !== item.data_id);
  522. }
  523. }
  524. const handleSetting = () => {
  525. copiedCustomizeColumns.value = [...customizeColumns.value]
  526. elementList.value.forEach(element => {
  527. const column = copiedCustomizeColumns.value.find(col => col.data_id === element.data_id);
  528. if (column) {
  529. element.isSelected = true;
  530. } else {
  531. element.isSelected = false;
  532. }
  533. });
  534. dialog.title = "列表字段设置"
  535. dialog.visible = true;
  536. }
  537. const submitForm = () => {
  538. dialog.visible = false;
  539. customizeColumns.value = [...copiedCustomizeColumns.value]
  540. // updateColumns()
  541. // getList()
  542. // weatherInfo()
  543. getHistoryList()
  544. saveCustomizeColumns()
  545. }
  546. const cancel = () => {
  547. dialog.visible = false;
  548. }
  549. const formRef = ref()
  550. const wind = ref()
  551. const pressureLine = ref()
  552. const radio = ref()
  553. const radio2 = ref()
  554. const searchParam = reactive({
  555. base: undefined,
  556. date: '',
  557. switch: true
  558. })
  559. const dialog = reactive<any>({
  560. visible: false,
  561. title: ''
  562. });
  563. const pageable = ref({
  564. data_type: false,
  565. time_order: 1,
  566. as_code: undefined,
  567. data_items: [],
  568. pageNum: 1,
  569. pageSize: 20,
  570. total: 0
  571. });
  572. let historyColumns = [
  573. {
  574. data_id: 202,
  575. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  576. data_type: "气压",
  577. data_name: "本站气压",
  578. data_item: "BEN_ZHAN_QI_YA",
  579. data_unit: "hPa",
  580. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  581. data_value: "",
  582. data_order: 0,
  583. data_condition: 0
  584. },
  585. {
  586. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  587. data_id: 2,
  588. data_type: "风",
  589. data_item: "ER_FEN_ZHONG_PING_JUN_FENG_XIANG",
  590. data_name: "2分钟风向",
  591. data_unit: "°",
  592. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  593. data_value: "",
  594. data_order: 0,
  595. data_condition: 0
  596. },
  597. {
  598. data_id: 1,
  599. data_r_table: "SHI_SHI_LIU_YAO_SU_SHU_JU",
  600. data_type: "风",
  601. data_name: "2分钟风速",
  602. data_item: "ER_FEN_ZHONG_PING_JUN_FENG_SU",
  603. data_unit: "m/s",
  604. data_h_table: "LI_SHI_LIU_YAO_SU_SHU_JU",
  605. data_value: "",
  606. data_order: 0,
  607. data_condition: 0
  608. },
  609. {
  610. data_id: 1203,
  611. data_r_table: "SHI_SHI_FU_SHE_SHU_JU",
  612. data_type: "总辐射",
  613. data_name: "总辐射曝辐量",
  614. data_item: "ZONG_FU_SHE_BAO_FU_LIANG",
  615. data_unit: "MJ/m²",
  616. data_h_table: "LI_SHI_FU_SHE_SHU_JU",
  617. data_value: "",
  618. data_order: 0,
  619. data_condition: 0,
  620. isSelected: true
  621. },
  622. {
  623. data_id: 1202,
  624. data_r_table: "SHI_SHI_FU_SHE_SHU_JU",
  625. data_type: "总辐射",
  626. data_name: "总辐射辐照度",
  627. data_item: "ZONG_FU_SHE_FU_ZHAO_DU",
  628. data_unit: "W/m²",
  629. data_h_table: "LI_SHI_FU_SHE_SHU_JU",
  630. data_value: "",
  631. data_order: 0,
  632. data_condition: 0,
  633. isSelected: true
  634. }
  635. ]
  636. // 查询自动站列表
  637. const queryas = ref<Platform>({
  638. pageSize: 5000,
  639. pageNum: 1,
  640. currentpage: 1
  641. })
  642. const platformList = ref<any>([])
  643. const selectPlatform = ref()
  644. const getPlatforms = async () => {
  645. const { data } = await getPlatformList(queryas.value);
  646. platformList.value = data.list
  647. pageable.value.as_code = data.list[0].as_code
  648. selectPlatform.value = data.list[0]
  649. getHistoryList()
  650. };
  651. const changeStation = () => {
  652. getHistoryList()
  653. }
  654. //时间戳转换为指定格式的日期字符串
  655. function formatDate(timestamp, type) {
  656. const date = new Date(timestamp * 1000); // 将时间戳转换为毫秒
  657. const year = date.getFullYear();
  658. const month = String(date.getMonth() + 1).padStart(2, '0');
  659. const day = String(date.getDate()).padStart(2, '0');
  660. const hours = String(date.getHours()).padStart(2, '0');
  661. const minutes = String(date.getMinutes()).padStart(2, '0');
  662. if (type === 1) {
  663. return `${month}/${day} ${hours}:${minutes}`;
  664. } else {
  665. return `${year}-${month}-${day} ${hours}:${minutes}`;
  666. }
  667. }
  668. const array = ref<any>([])
  669. const Access = () => {
  670. array.value?.forEach((item, i) => {
  671. // 获取最大值方法
  672. function calMax(arr) {
  673. let max = Math.max.apply(null, arr); // 获取最大值方法
  674. let maxint = Math.ceil(max / 5); // 向上以5的倍数取整
  675. let maxval = maxint * 5; // 最终设置的最大值
  676. return maxval; // 输出最大值
  677. }
  678. // 获取最小值方法
  679. function calMin(arr) {
  680. let min = Math.min.apply(null, arr); // 获取最小值方法
  681. return min
  682. }
  683. // 调用方法,获取数据的最大值&最小值
  684. let maxData1 = calMax(item.value);
  685. let minData1 = calMin(item.value);
  686. let chartDom = document.getElementById("Access" + i);
  687. if (chartDom) {
  688. let myChart = echarts.init(chartDom);
  689. let option;
  690. option = {
  691. grid: {
  692. left: '10',
  693. right: '10',
  694. bottom: '3%',
  695. top: 20,
  696. containLabel: true
  697. },
  698. // X轴
  699. xAxis: {
  700. type: 'category',
  701. splitLine: {
  702. show: false
  703. },
  704. // boundaryGap: false,
  705. axisTick: {
  706. alignWithLabel: true, // true:标签位于刻度线正下方;false:标签位于2个刻度线中间
  707. },
  708. data: timeArr.value,
  709. axisLabel: {
  710. formatter: function (value) {
  711. return value.replace(/ /g, '\n');
  712. },
  713. },
  714. },
  715. yAxis: {
  716. min: minData1,
  717. max: maxData1,
  718. type: 'value'
  719. },
  720. // 鼠标悬浮提示
  721. tooltip: {
  722. trigger: "axis",
  723. },
  724. // 数据
  725. series: [
  726. {
  727. data: item.value,
  728. name: item.data_name,
  729. type: "line",
  730. smooth: true,
  731. lineStyle: {
  732. color: '#157aea',
  733. width: 1,
  734. },
  735. itemStyle: {
  736. normal: {
  737. color: '#157aea'
  738. },
  739. }
  740. },
  741. ]
  742. };
  743. myChart.setOption(option)
  744. window.addEventListener("resize", function () {
  745. myChart.resize();
  746. });
  747. }
  748. // option && myChart.setOption(option);
  749. })
  750. };
  751. const timeArr = ref()
  752. const windLineArr = ref() // 2分钟风速风向
  753. const tempLineArr = ref()
  754. const humidityLineArr = ref()
  755. const pressureLineArr = ref()
  756. const getHistoryList = async () => {
  757. if (isDateFuture(dateRange.value[0]) ||isDateFuture(dateRange.value[1])) {
  758. ElMessage.error("不得选择未来的时间");
  759. return false;
  760. }
  761. const arr = [...customizeColumns.value, ...historyColumns].reduce((acc, item) => {
  762. if (!acc.some(existingItem => existingItem.data_id === item.data_id)) {
  763. acc.push(item);
  764. }
  765. return acc;
  766. }, []);
  767. const { data } = await getDataItemList({ ...pageable.value, pageSize: 999, as_code_list: [pageable.value.as_code], data_items: arr, data_type: false, time_space: value1.value ? 60 : 1, end_time: getStamp(dateRange.value[1]), begin_time: getStamp(dateRange.value[0]) });
  768. timeArr.value = data.list?.map(item => {
  769. return formatDate(item.data_time_i, 1)
  770. })
  771. // 初始化一个空对象来存储归类后的数据
  772. const resultMap = {};
  773. // 遍历原数组
  774. data.list?.forEach(obj => {
  775. obj.data_list.forEach(item => {
  776. // 将data_value转换为数字
  777. const value = parseFloat(item.data_value);
  778. // 初始化或更新resultMap中的对应项
  779. if (!resultMap[item.data_id]) {
  780. resultMap[item.data_id] = {
  781. data_id: item.data_id,
  782. data_name: item.data_name,
  783. data_unit: item.data_unit,
  784. value: [value]
  785. };
  786. } else {
  787. resultMap[item.data_id].value.push(value);
  788. }
  789. });
  790. });
  791. array.value = Object.values(resultMap);
  792. nextTick(() => {
  793. if (array.value.length>0) Access();
  794. });
  795. // console.log(array.value, 'array');
  796. windLineArr.value = data.list?.map(item => {
  797. return {
  798. value: item[1],
  799. symbolRotate: adjustValue(item[2]),
  800. symbolRotateStr: item[2] === 'C' ? 0 : item[2]
  801. }
  802. })
  803. nextTick(()=>{
  804. if (array.value.length>0) showWind()
  805. })
  806. };
  807. function adjustValue(value) {
  808. if (value === 'C') {
  809. return 0
  810. } else if (value <= 180) {
  811. return '-' + value;
  812. } else {
  813. return 360 - value;
  814. }
  815. }
  816. const globalStore = useGlobalStore();
  817. const isDark = computed(() => globalStore.isDark);
  818. // resetForm
  819. const resetForm = (formEl) => {
  820. if (!formEl) return;
  821. formEl.resetFields();
  822. };
  823. const showWind = () => {
  824. // 数据格式
  825. let winArr = [{
  826. value: 4.1, //风速--数值大小--变量名不可变
  827. symbolRotate: -45, //风向---旋转角度--变量名不可变
  828. symbolRotateStr: '西南风' //风向中文--变量名可变(tooltip 提示随之修改)
  829. }, {
  830. value: 4.5,
  831. symbolRotate: 45,
  832. symbolRotateStr: '东南风'
  833. }, {
  834. value: 4.5,
  835. symbolRotate: 90,
  836. symbolRotateStr: '东风'
  837. }, {
  838. value: 5.0,
  839. symbolRotate: -180,
  840. symbolRotateStr: '南风'
  841. }, {
  842. value: 4.3,
  843. symbolRotate: -45,
  844. symbolRotateStr: '西南风'
  845. }, {
  846. value: 4.5,
  847. symbolRotate: -90,
  848. symbolRotateStr: '西风'
  849. }, {
  850. value: 4.5,
  851. symbolRotate: -45,
  852. symbolRotateStr: '西南风'
  853. }, {
  854. value: 4.5,
  855. symbolRotate: -90,
  856. symbolRotateStr: '西风'
  857. }, {
  858. value: 4.1, //风速--数值大小--变量名不可变
  859. symbolRotate: -45, //风向---旋转角度--变量名不可变
  860. symbolRotateStr: '西南风' //风向中文--变量名可变(tooltip 提示随之修改)
  861. }, {
  862. value: 4.5,
  863. symbolRotate: 45,
  864. symbolRotateStr: '东南风'
  865. }, {
  866. value: 4.5,
  867. symbolRotate: 90,
  868. symbolRotateStr: '东风'
  869. }, {
  870. value: 5.0,
  871. symbolRotate: -180,
  872. symbolRotateStr: '南风'
  873. }, {
  874. value: 4.3,
  875. symbolRotate: -45,
  876. symbolRotateStr: '西南风'
  877. }, {
  878. value: 4.5,
  879. symbolRotate: -90,
  880. symbolRotateStr: '西风'
  881. }, {
  882. value: 4.5,
  883. symbolRotate: -45,
  884. symbolRotateStr: '西南风'
  885. }, {
  886. value: 4.5,
  887. symbolRotate: -90,
  888. symbolRotateStr: '西风'
  889. }, {
  890. value: 4.1, //风速--数值大小--变量名不可变
  891. symbolRotate: -45, //风向---旋转角度--变量名不可变
  892. symbolRotateStr: '西南风' //风向中文--变量名可变(tooltip 提示随之修改)
  893. }, {
  894. value: 4.5,
  895. symbolRotate: 45,
  896. symbolRotateStr: '东南风'
  897. }, {
  898. value: 4.5,
  899. symbolRotate: 90,
  900. symbolRotateStr: '东风'
  901. }, {
  902. value: 5.0,
  903. symbolRotate: -180,
  904. symbolRotateStr: '南风'
  905. }, {
  906. value: 4.3,
  907. symbolRotate: -45,
  908. symbolRotateStr: '西南风'
  909. }, {
  910. value: 4.5,
  911. symbolRotate: -90,
  912. symbolRotateStr: '西风'
  913. }, {
  914. value: 4.5,
  915. symbolRotate: -45,
  916. symbolRotateStr: '西南风'
  917. }, {
  918. value: 4.5,
  919. symbolRotate: -90,
  920. symbolRotateStr: '西风'
  921. },]
  922. let mychart = echarts.init(wind.value);
  923. let option = {
  924. title: {
  925. text: '暂无数据',
  926. show: !timeArr.value ? true : false,
  927. x: 'center',
  928. y: 'center',
  929. textStyle: {
  930. fontSize: 14,
  931. fontWeight: 'normal',
  932. }
  933. },
  934. grid: {
  935. left: '10',
  936. right: '10',
  937. bottom: '3%',
  938. top: 20,
  939. containLabel: true
  940. },
  941. // X轴
  942. xAxis: {
  943. type: 'category',
  944. splitLine: {
  945. show: false
  946. },
  947. boundaryGap: true,
  948. axisTick: {
  949. alignWithLabel: true, // true:标签位于刻度线正下方;false:标签位于2个刻度线中间
  950. },
  951. data: timeArr.value,
  952. axisLabel: {
  953. // interval: 4,
  954. formatter: function (value) {
  955. // if (value.index % 4 === 0) {
  956. // return value.replace(/ /g, '\n');
  957. // } else {
  958. // return '';
  959. // }
  960. return value.replace(/ /g, '\n');
  961. },
  962. },
  963. },
  964. // Y轴
  965. // yAxis: {
  966. // type: 'value',
  967. // // name: "风速(m/s)",
  968. // },
  969. yAxis: {
  970. min: 0,
  971. max: 10,
  972. type: 'value'
  973. },
  974. // 鼠标悬浮提示
  975. tooltip: {
  976. trigger: "axis",
  977. formatter(params) {
  978. let tip =
  979. "时间:" +
  980. params[0].axisValue +
  981. "<br/>风速:" +
  982. (params[0].value ? params[0].value : "--") +
  983. "m/s<br/>风向:" +
  984. (params[0].data ? params[0].data.symbolRotateStr + '°' : "--")
  985. return tip;
  986. },
  987. },
  988. // 数据
  989. series: [{
  990. data: windLineArr.value,
  991. type: 'line',
  992. smooth: true, //这句就是让曲线变平滑的
  993. symbol: 'path://M4.866,0,0,15.193l4.866-4.449L9.738,15.2Z',
  994. symbolSize: 11,
  995. //折线样式
  996. lineStyle: {
  997. color: '#a5cfff',
  998. width: 1,
  999. },
  1000. // label: {
  1001. // normal: {
  1002. // formatter: '{c}',
  1003. // show: false,
  1004. // position: 'top',
  1005. // distance: 15
  1006. // }
  1007. // },
  1008. itemStyle: {
  1009. normal: {
  1010. },
  1011. },
  1012. }]
  1013. };
  1014. mychart.setOption(option)
  1015. window.addEventListener("resize", function () {
  1016. mychart.resize();
  1017. });
  1018. }
  1019. const data3 = ref([1004, 1004, 1004, 1004, 1004, 1005, 1005, 1005, 1005, 1004.5, 1004.6, 1004.8]);
  1020. const showPressureLine = () => {
  1021. // 获取最大值方法
  1022. function calMax(arr) {
  1023. let max = Math.max.apply(null, arr); // 获取最大值方法
  1024. let maxint = Math.ceil(max / 5); // 向上以5的倍数取整
  1025. let maxval = maxint * 5 + 5; // 最终设置的最大值
  1026. return maxval; // 输出最大值
  1027. }
  1028. // 获取最小值方法
  1029. function calMin(arr) {
  1030. let min = Math.min.apply(null, arr); // 获取最小值方法
  1031. let minint = Math.floor(min / 1); // 向下以1的倍数取整
  1032. let minval = minint * 1 - 5; // 最终设置的最小值
  1033. return minval; // 输出最小值
  1034. }
  1035. // 调用方法,获取数据的最大值&最小值
  1036. let maxData1 = calMax(data3.value);
  1037. let minData1 = calMin(data3.value);
  1038. let mychart = echarts.init(pressureLine.value);
  1039. let option = {
  1040. grid: {
  1041. left: '10',
  1042. right: '10',
  1043. bottom: '3%',
  1044. top: 20,
  1045. containLabel: true
  1046. },
  1047. // X轴
  1048. xAxis: {
  1049. type: 'category',
  1050. splitLine: {
  1051. show: false
  1052. },
  1053. // boundaryGap: false,
  1054. axisTick: {
  1055. alignWithLabel: true, // true:标签位于刻度线正下方;false:标签位于2个刻度线中间
  1056. },
  1057. data: ['06/12 08:00', '06/12 09:00', '06/12 10:00', '06/12 11:00', '06/12 12:00', '06/12 13:00', '06/12 14:00', '06/12 15:00', '06/12 16:00', '06/12 17:00', '06/12 18:00', '06/12 19:00'],
  1058. axisLabel: {
  1059. interval: 1,
  1060. formatter: function (value) {
  1061. return value.replace(/ /g, '\n');
  1062. },
  1063. },
  1064. },
  1065. yAxis: {
  1066. min: minData1,
  1067. max: maxData1,
  1068. type: 'value'
  1069. },
  1070. // 鼠标悬浮提示
  1071. tooltip: {
  1072. trigger: "axis",
  1073. },
  1074. // 数据
  1075. series: [
  1076. {
  1077. data: data3.value,
  1078. name: "气压",
  1079. type: "line",
  1080. smooth: true,
  1081. lineStyle: {
  1082. color: '#157aea',
  1083. width: 1,
  1084. },
  1085. itemStyle: {
  1086. normal: {
  1087. color: '#157aea'
  1088. },
  1089. }
  1090. },
  1091. ]
  1092. };
  1093. mychart.setOption(option)
  1094. window.addEventListener("resize", function () {
  1095. mychart.resize();
  1096. });
  1097. }
  1098. const data4 = ref([0.4, 0.5, 0.45, 0.5, 0.4, 0.5, 0.6, 0.55, 0.5, 0.5, 0.6, 0.55]);
  1099. const showRadio = () => {
  1100. let mychart = echarts.init(radio.value);
  1101. let option = {
  1102. grid: {
  1103. left: '10',
  1104. right: '10',
  1105. bottom: '3%',
  1106. top: 20,
  1107. containLabel: true
  1108. },
  1109. // X轴
  1110. xAxis: {
  1111. type: 'category',
  1112. splitLine: {
  1113. show: false
  1114. },
  1115. // boundaryGap: false,
  1116. axisTick: {
  1117. alignWithLabel: true, // true:标签位于刻度线正下方;false:标签位于2个刻度线中间
  1118. },
  1119. data: ['06/12 08:00', '06/12 09:00', '06/12 10:00', '06/12 11:00', '06/12 12:00', '06/12 13:00', '06/12 14:00', '06/12 15:00', '06/12 16:00', '06/12 17:00', '06/12 18:00', '06/12 19:00'],
  1120. axisLabel: {
  1121. interval: 1,
  1122. formatter: function (value) {
  1123. return value.replace(/ /g, '\n');
  1124. },
  1125. },
  1126. },
  1127. yAxis: {
  1128. min: 0,
  1129. max: 1,
  1130. interval: 0.2,
  1131. type: 'value'
  1132. },
  1133. // 鼠标悬浮提示
  1134. tooltip: {
  1135. trigger: "axis",
  1136. },
  1137. // 数据
  1138. series: [
  1139. {
  1140. name: "曝辐量",
  1141. type: "line",
  1142. smooth: true,
  1143. data: data4.value,
  1144. lineStyle: {
  1145. color: '#157aea',
  1146. width: 1,
  1147. },
  1148. itemStyle: {
  1149. normal: {
  1150. color: '#157aea'
  1151. },
  1152. }
  1153. },
  1154. ]
  1155. };
  1156. mychart.setOption(option)
  1157. window.addEventListener("resize", function () {
  1158. mychart.resize();
  1159. });
  1160. }
  1161. const data5 = ref([800, 810, 800, 820, 800, 850, 800, 830, 800, 850, 800, 820]);
  1162. const showRadio2 = () => {
  1163. let mychart = echarts.init(radio2.value);
  1164. let option = {
  1165. grid: {
  1166. left: '10',
  1167. right: '10',
  1168. bottom: '3%',
  1169. top: 20,
  1170. containLabel: true
  1171. },
  1172. // X轴
  1173. xAxis: {
  1174. type: 'category',
  1175. splitLine: {
  1176. show: false
  1177. },
  1178. // boundaryGap: false,
  1179. axisTick: {
  1180. alignWithLabel: true, // true:标签位于刻度线正下方;false:标签位于2个刻度线中间
  1181. },
  1182. data: ['06/12 08:00', '06/12 09:00', '06/12 10:00', '06/12 11:00', '06/12 12:00', '06/12 13:00', '06/12 14:00', '06/12 15:00', '06/12 16:00', '06/12 17:00', '06/12 18:00', '06/12 19:00'],
  1183. axisLabel: {
  1184. interval: 0,
  1185. formatter: function (value) {
  1186. return value.replace(/ /g, '\n');
  1187. },
  1188. },
  1189. },
  1190. yAxis: {
  1191. min: 0,
  1192. max: 1200,
  1193. interval: 200,
  1194. type: 'value'
  1195. },
  1196. // 鼠标悬浮提示
  1197. tooltip: {
  1198. trigger: "axis",
  1199. },
  1200. // 数据
  1201. series: [
  1202. {
  1203. name: "辐照度",
  1204. type: "line",
  1205. smooth: true,
  1206. data: data5.value,
  1207. lineStyle: {
  1208. color: '#157aea',
  1209. width: 1,
  1210. },
  1211. itemStyle: {
  1212. normal: {
  1213. color: '#157aea'
  1214. },
  1215. }
  1216. },
  1217. ]
  1218. };
  1219. mychart.setOption(option)
  1220. window.addEventListener("resize", function () {
  1221. mychart.resize();
  1222. });
  1223. }
  1224. // 保存customizeColumns数组到localStorage
  1225. function saveCustomizeColumns() {
  1226. const jsonString = JSON.stringify(customizeColumns.value);
  1227. localStorage.setItem('customizeColumns', jsonString);
  1228. }
  1229. // 从localStorage中获取customizeColumns数组
  1230. function loadCustomizeColumns() {
  1231. const jsonString = localStorage.getItem('customizeColumns');
  1232. if (jsonString) {
  1233. customizeColumns.value = JSON.parse(jsonString);
  1234. }
  1235. }
  1236. let intervalId;
  1237. onMounted(() => {
  1238. loadCustomizeColumns()
  1239. getAllRgDataList()
  1240. getPlatforms()
  1241. nextTick(() => {
  1242. Access();
  1243. });
  1244. // showWind()
  1245. // showPressureLine()
  1246. // showRadio()
  1247. // showRadio2()
  1248. })
  1249. onActivated(() => {
  1250. intervalId = setInterval(() => {
  1251. // getList();
  1252. // weatherInfo()
  1253. getHistoryList()
  1254. }, 60 * 1000);
  1255. });
  1256. </script>
  1257. <style scoped lang="scss">
  1258. .el-row .el-col {
  1259. margin-bottom: 15px;
  1260. }
  1261. .main_list {
  1262. background: transparent !important;
  1263. box-shadow: none !important;
  1264. padding: 0 !important;
  1265. height: calc(100vh - 150px);
  1266. margin-bottom: 10px;
  1267. overflow-y: scroll;
  1268. overflow-x: hidden;
  1269. .chart_item {
  1270. border-radius: 10px;
  1271. padding: 10px;
  1272. background-color: #fff;
  1273. // height: 100%;
  1274. // margin-bottom: 15px;
  1275. .item_title {
  1276. display: flex;
  1277. justify-content: space-between;
  1278. align-items: center;
  1279. }
  1280. }
  1281. .info_box {
  1282. .info_title {
  1283. color: #999999;
  1284. font-size: 16px;
  1285. }
  1286. .info_content {
  1287. height: 40px;
  1288. font-weight: bold;
  1289. color: #000;
  1290. font-size: 26px;
  1291. }
  1292. }
  1293. }
  1294. .el-button.is-link {
  1295. height: 32px;
  1296. }
  1297. </style>