index.vue 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090
  1. <!--
  2. * @Description:
  3. * @Author: wangcc
  4. * @Date: 2022-07-06 15:56:45
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2022-07-14 14:40:16
  7. * @FilePath: \castgroup_bigscreen\src\views\index.vue
  8. * @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class>
  12. <dv-full-screen-container>
  13. <Map></Map>
  14. <Header></Header>
  15. <section class="nav-wrap">
  16. <div
  17. class="nav-item"
  18. :class="{active:(index+1)==page}"
  19. v-for="(item,index) in navList"
  20. @click="navClick(index+1)"
  21. :key="index"
  22. >{{item.text}}</div>
  23. </section>
  24. <Alarm v-if="page==6&&alarmData.length>=1" :data="alarmData" />
  25. <section class="left-wrap" v-if="$store.state.addr.page=='forest'">
  26. <Numerical class="left-item" :data="page1numerical" />
  27. <MyEcharts
  28. class="left-item chart-wrap"
  29. mid="page1Char1"
  30. streetTitleText="各小班"
  31. ref="page1Char1"
  32. :option="page1Char1"
  33. style
  34. />
  35. <MyEcharts
  36. class="left-item chart-wrap"
  37. mid="page1Char2"
  38. streetTitleText="各小班"
  39. ref="page1Char2"
  40. :option="page1Char2"
  41. style
  42. />
  43. </section>
  44. <section class="left-wrap" v-if="$store.state.addr.page=='treeSpecies'">
  45. <Numerical class="left-item" :data="page2numerical" />
  46. <!-- <MyEcharts
  47. class="left-item chart-wrap"
  48. mid="page2Char1"
  49. :option="page2Char1"
  50. ref="page2Char1"
  51. />-->
  52. <MyEcharts
  53. class="left-item chart-wrap"
  54. mid="page2Char2"
  55. streetTitleText="各小班"
  56. :option="page2Char2"
  57. ref="page2Char2"
  58. />
  59. <MyEcharts
  60. class="left-item chart-wrap"
  61. mid="page2Char3"
  62. streetTitleText="各小班"
  63. :option="page2Char3"
  64. ref="page2Char3"
  65. />
  66. </section>
  67. <!-- 林业经济 -->
  68. <section class="left-wrap" v-if="$store.state.addr.page=='economics'">
  69. <!-- <Typeslide :data="typeSlideData" /> -->
  70. <Numerical class="left-item" :data="page5numerical" />
  71. <MyEcharts
  72. class="left-item chart-wrap"
  73. mid="page5Char2"
  74. ref="page5Char2"
  75. :option="page5Char2"
  76. />
  77. <MyEcharts
  78. class="left-item chart-wrap"
  79. mid="page5Char1"
  80. ref="page5Char1"
  81. :option="page5Char1"
  82. />
  83. </section>
  84. <!-- 事件信息 -->
  85. <section class="left-wrap event-page" v-if="$store.state.addr.page=='event'">
  86. <Numerical class="left-item" :data="page6numerical" />
  87. <MyEcharts
  88. class="left-item chart-wrap"
  89. mid="page6Char1"
  90. ref="page6Char1"
  91. :option="page6Char1"
  92. />
  93. <!-- <MyEcharts
  94. class="left-item chart-wrap"
  95. mid="page6Char2"
  96. ref="page6Char2"
  97. :option="page6Char2"
  98. />-->
  99. <div class="left-item">
  100. <!-- <div class="ntitle">{{$store.state.addr.selectAddr}}事件发生记录</div> -->
  101. <div class="ntitle">
  102. <span
  103. v-if="$store.state.addr.mapLevel=='province'"
  104. >{{$store.state.addr.selectAddr}}各地州(市)事件发生记录</span>
  105. <span v-if="$store.state.addr.mapLevel=='city'">{{$store.state.addr.selectAddr}}各县事件发生记录</span>
  106. <span
  107. v-if="$store.state.addr.mapLevel=='district'"
  108. >{{$store.state.addr.selectAddr}}各乡镇事件发生记录</span>
  109. <span
  110. v-if="$store.state.addr.mapLevel=='street'"
  111. >{{$store.state.addr.selectAddr}}各村事件发生记录</span>
  112. </div>
  113. <dv-scroll-board
  114. :key="scrollBoardKey"
  115. class="scroll-event"
  116. :config="scrollEventConfig"
  117. ref="scrollBoard"
  118. @click="scrollEventClick"
  119. @mouseout="scrollEventOut"
  120. />
  121. </div>
  122. </section>
  123. <section class="right-wrap">
  124. <PickerAddr />
  125. <div v-if="showbase" class="xiaoban u-flex">
  126. <div class="title">基地查询:</div>
  127. <el-input v-model="baseinput" placeholder="请输入基地名称">
  128. <i class="el-icon-search el-input__icon" slot="suffix" @click="basesearch"></i>
  129. </el-input>
  130. </div>
  131. <div v-if="showxiaoban" class="xiaoban u-flex">
  132. <div class="title">小班查询:</div>
  133. <el-input v-model="xiaobaninput" placeholder="请输入小班号">
  134. <i class="el-icon-search el-input__icon" slot="suffix" @click="xiaobansearch"></i>
  135. </el-input>
  136. </div>
  137. <section
  138. v-if="showxiaoban||showbase"
  139. class="scroll-board-wrap"
  140. :class="{close:showScrollBoard==true}"
  141. @mouseout="scrollOut"
  142. >
  143. <dv-scroll-board
  144. v-if="showbase"
  145. :key="scrollBoardKey"
  146. class="scroll-board-01 scroll-base"
  147. :config="scrollBaseListConfig"
  148. ref="scrollBaseList"
  149. @click="scrollBaseListClick"
  150. @mouseout="baseListClick"
  151. />
  152. <dv-scroll-board
  153. v-if="showxiaoban"
  154. :key="scrollBoardKey"
  155. class="scroll-board-01"
  156. :config="scrollBoardConfig"
  157. ref="scrollBoard"
  158. @click="scrollBoardClick"
  159. @mouseout="scrollOut"
  160. :style="scrollBoardStyle"
  161. />
  162. <div class="scroll-board-tool" @click="toggleShowScrollBoard">
  163. <div class="inner">
  164. <img src="../assets/img/jiantou.png" alt />
  165. </div>
  166. </div>
  167. </section>
  168. </section>
  169. </dv-full-screen-container>
  170. </div>
  171. </template>
  172. <script>
  173. import Map from '../components/amapnow.vue';
  174. import Header from '../components/header';
  175. import MyEcharts from '../components/echarts';
  176. import Numerical from '../components/numerical';
  177. import Alarm from '../components/alarm';
  178. import PickerAddr from '../components/pickerAddr';
  179. import Typeslide from '../components/typeslide';
  180. import { Message } from 'element-ui';
  181. import { debounce } from '@/utils/mdebounce';
  182. import { sliceArray } from '@/utils/sliceArray';
  183. import { mapMutations, mapState, mapGetters } from 'vuex';
  184. import {
  185. page1numerical,
  186. page1echarts01,
  187. page1echarts02,
  188. rightScrollData,
  189. baseList,
  190. alarmDataApi,
  191. page2numerical,
  192. page2echarts01,
  193. page2echarts02,
  194. page2echarts03,
  195. page5numerical,
  196. typeSlideApi,
  197. page5echarts01,
  198. page5echarts02,
  199. page6numerical,
  200. page6echarts01,
  201. page6echarts02,
  202. eventList,
  203. smallClassDetail,
  204. smallInfo,
  205. eventDetail,
  206. financeBaseDetail
  207. } from '../service/index';
  208. import scrollBoardSchema from '../dataSchema/scrollBoardSchema';
  209. import scrollBaseListSchema from '../dataSchema/scrollBaseListSchema';
  210. import page1Char1Schema from '../dataSchema/page1Char1Schema';
  211. import page1Char2Schema from '../dataSchema/page1Char2Schema';
  212. import page2Char1Schema from '../dataSchema/page2Char1Schema';
  213. import page2Char2Schema from '../dataSchema/page2Char2Schema';
  214. import page2Char3Schema from '../dataSchema/page2Char3Schema';
  215. import page5Char1Schema from '../dataSchema/page5Char1Schema';
  216. import page5Char2Schema from '../dataSchema/page5Char2Schema';
  217. import page6Char1Schema from '../dataSchema/page6Char1Schema';
  218. import page6Char2Schema from '../dataSchema/page6Char2Schema';
  219. import scrollEventSchema from '../dataSchema/scrollEventSchema';
  220. //柱状图颜色
  221. let colorArr = ['rgb(2, 238, 255)', 'rgb(94, 229, 116)', 'rgb(255, 255, 0)'];
  222. // import { provinceAndCityData, regionData, provinceAndCityDataPlus, regionDataPlus, CodeToText, TextToCode } from 'element-china-area-data';
  223. export default {
  224. name: '',
  225. components: {
  226. Map,
  227. Header,
  228. MyEcharts,
  229. Numerical,
  230. Alarm,
  231. PickerAddr,
  232. Typeslide
  233. },
  234. data() {
  235. return {
  236. showxiaoban: true,
  237. showbase: false,
  238. showScrollBoard: false,
  239. page: 1,
  240. // addrOptions: regionDataPlus,
  241. addrSelectedOptions: ['520000', ''],
  242. navList: [
  243. { text: '森林资源', en: 'forest' },
  244. { text: '林木结构', en: 'treeSpecies' },
  245. { text: '碳汇管理', en: 'sink' },
  246. { text: '林下经济', en: 'economics' },
  247. { text: '土地流转', en: 'circulation' },
  248. { text: '事件信息', en: 'event' }
  249. ],
  250. scrollBoardKey: Date.now(),
  251. scrollBoardStyle: {
  252. // width: '100%',
  253. // height: '60vh'
  254. },
  255. scrollBoardConfig: scrollBoardSchema,
  256. scrollBaseListConfig: scrollBaseListSchema,
  257. page1numerical: [
  258. { name: '蓄积量', number: '2309', unit: '立方米' },
  259. { name: '占地面积', number: '55.4', unit: '万亩' }
  260. ],
  261. alarmData: [
  262. // {msg:'三都林场01小班于15:00:00发现火情,请尽快处理!'},
  263. // {msg:'测试1!'},
  264. // {msg:'测试22222222!'},
  265. ],
  266. page1Char1: page1Char1Schema,
  267. page1Char2: page1Char2Schema,
  268. page2numerical: [],
  269. page2Char1: page2Char1Schema,
  270. page2Char2: page2Char2Schema,
  271. page2Char3: page2Char3Schema,
  272. page5numerical: [],
  273. typeSlideData: [],
  274. page5Char1: page5Char1Schema,
  275. page5Char2: page5Char2Schema,
  276. page6numerical: [],
  277. page6Char1: page6Char1Schema,
  278. page6Char2: page6Char2Schema,
  279. scrollEventConfig: scrollEventSchema,
  280. xiaobaninput: '',
  281. baseinput: ''
  282. };
  283. },
  284. created() {},
  285. mounted() {
  286. this.getPageData();
  287. this.getRightScrollData();
  288. setInterval(() => {
  289. this.getPageData();
  290. }, 60000);
  291. window.onresize = () => {
  292. //图表resize
  293. if (this.$store.state.addr.page == 'forest') {
  294. let page1Char1Uuid = this.$refs.page1Char1.mid;
  295. this.$refs.page1Char1.resizeChar(page1Char1Uuid);
  296. let page1Char2Uuid = this.$refs.page1Char2.mid;
  297. this.$refs.page1Char2.resizeChar(page1Char2Uuid);
  298. } else if (this.$store.state.addr.page == 'treeSpecies') {
  299. let page2Char2Uuid = this.$refs.page2Char2.mid;
  300. this.$refs.page2Char2.resizeChar(page2Char2Uuid);
  301. let page2Char3Uuid = this.$refs.page2Char3.mid;
  302. this.$refs.page2Char3.resizeChar(page2Char3Uuid);
  303. } else if (this.$store.state.addr.page == 'economics') {
  304. let page5Char1Uuid = this.$refs.page5Char1.mid;
  305. this.$refs.page5Char1.resizeChar(page5Char1Uuid);
  306. let page5Char2Uuid = this.$refs.page5Char2.mid;
  307. this.$refs.page5Char2.resizeChar(page5Char2Uuid);
  308. } else if (this.$store.state.addr.page == 'event') {
  309. let page6Char1Uuid = this.$refs.page6Char1.mid;
  310. this.$refs.page6Char1.resizeChar(page6Char1Uuid);
  311. let page6Char2Uuid = this.$refs.page6Char2.mid;
  312. this.$refs.page6Char2.resizeChar(page6Char2Uuid);
  313. }
  314. };
  315. },
  316. watch: {
  317. xiaobaninput: {
  318. handler: function () {
  319. debounce(this.xiaobansearch, 500, false);
  320. }
  321. },
  322. baseinput: {
  323. handler: function () {
  324. debounce(this.basesearch, 500, false);
  325. }
  326. },
  327. '$store.state.addr.selectCity'(val) {
  328. // debounce(this.getPageData(), 1000, false)
  329. this.getPageData();
  330. },
  331. '$store.state.addr.selectDistrict'(val) {
  332. this.getPageData();
  333. },
  334. '$store.state.addr.selectStreet'(val) {
  335. this.getPageData();
  336. }
  337. },
  338. methods: {
  339. ...mapMutations(['changeSearchSmallClass', 'changeEvenData','changeBaseDetail']),
  340. addrChange(value) {
  341. console.log('addrChange', value);
  342. },
  343. navClick(index) {
  344. let pageName = this.navList[index - 1].en;
  345. if (pageName == 'sink' || pageName == 'circulation') {
  346. Message('暂未开放!');
  347. return;
  348. }
  349. this.$store.commit('changePage', this.navList[index - 1].en);
  350. console.log('this.navList[index-1].en', this.navList[index - 1].en);
  351. this.page = index;
  352. console.log('index', index);
  353. if (this.navList[index - 1].en == 'economics') {
  354. this.showbase = true;
  355. this.showxiaoban = false;
  356. } else if (this.navList[index - 1].en == 'event') {
  357. this.showbase = false;
  358. this.showxiaoban = false;
  359. } else {
  360. this.showbase = false;
  361. this.showxiaoban = true;
  362. }
  363. // 切换专题时,重置区域
  364. // this.$store.dispatch('searchArea', {
  365. // parentId: '520000',
  366. // name: '贵州省',
  367. // mapLevel: 'province'
  368. // });
  369. this.getPageData();
  370. },
  371. getPageData() {
  372. debounce(this.debounceGetData, 300, false);
  373. },
  374. debounceGetData() {
  375. console.log('page', this.$store.state.addr.page);
  376. // {text:'森林资源',en:'forest'},
  377. // {text:'林木结构',en:'treeSpecies'},
  378. // {text:'碳汇管理',en:'sink'},
  379. // {text:'林下经济',en:'economics'},
  380. // {text:'土地流转',en:'circulation'},
  381. // {text:'事件信息',en:'event'},
  382. if (this.$store.state.addr.page == 'forest') {
  383. this.getPage1numerical();
  384. this.getPage1echarts01();
  385. this.getPage1echarts02();
  386. this.getRightScrollData();
  387. } else if (this.$store.state.addr.page == 'treeSpecies') {
  388. this.getPage2numerical();
  389. // this.getPage2echarts01();
  390. this.getPage2echarts02();
  391. this.getPage2echarts03();
  392. this.getRightScrollData();
  393. } else if (this.$store.state.addr.page == 'economics') {
  394. this.getPage5numerical();
  395. // this.getTypeSlideData();
  396. this.getPage5echarts01();
  397. this.getPage5echarts02();
  398. this.getBaseList();
  399. } else if (this.$store.state.addr.page == 'event') {
  400. this.getPage6numerical();
  401. this.getPage6echarts01();
  402. this.getEventList();
  403. // this.getPage6echarts02();
  404. this.getAlarmData();
  405. // this.getRightScrollData();
  406. }
  407. },
  408. getPage1numerical() {
  409. let param = {
  410. cityId: this.$store.state.addr.selectCity.areaId,
  411. countyId: this.$store.state.addr.selectDistrict.areaId,
  412. townId: this.$store.state.addr.selectStreet.areaId
  413. };
  414. page1numerical(param)
  415. .then((res) => {
  416. // console.log('res',res);
  417. this.page1numerical = res.data;
  418. })
  419. .catch((err) => {
  420. console.log('echarts01 err', err);
  421. });
  422. },
  423. getPage1echarts01() {
  424. let param = {
  425. cityId: this.$store.state.addr.selectCity.areaId,
  426. countyId: this.$store.state.addr.selectDistrict.areaId,
  427. townId: this.$store.state.addr.selectStreet.areaId
  428. };
  429. // console.log('cityId',param.cityId);
  430. page1echarts01(param)
  431. .then((res) => {
  432. this.page1Char1.xAxis.data = res.data.map((item) => {
  433. return item.name;
  434. });
  435. this.page1Char1.series[0].data = res.data.map((item) => {
  436. return item.number;
  437. });
  438. //数量过小时隐藏滚动
  439. if (this.page1Char1.xAxis.data.length <= 5) {
  440. this.page1Char1.dataZoom[0].show = false;
  441. } else {
  442. this.page1Char1.dataZoom[0].show = true;
  443. }
  444. let charUuid = this.$refs.page1Char1.mid;
  445. this.$refs.page1Char1.intChar(charUuid);
  446. })
  447. .catch((err) => {
  448. console.log('getPage1echarts01 err', err);
  449. });
  450. },
  451. getPage1echarts02() {
  452. let param = {
  453. cityId: this.$store.state.addr.selectCity.areaId,
  454. countyId: this.$store.state.addr.selectDistrict.areaId,
  455. townId: this.$store.state.addr.selectStreet.areaId
  456. };
  457. // console.log('cityId',param.cityId);
  458. page1echarts02(param)
  459. .then((res) => {
  460. this.page1Char2.xAxis.data = res.data.map((item) => {
  461. return item.name;
  462. });
  463. this.page1Char2.series[0].data = res.data.map((item) => {
  464. return item.number;
  465. });
  466. //数量过小时隐藏滚动
  467. if (this.page1Char2.xAxis.data.length <= 5) {
  468. this.page1Char2.dataZoom[0].show = false;
  469. } else {
  470. this.page1Char2.dataZoom[0].show = true;
  471. }
  472. let charUuid = this.$refs.page1Char2.mid;
  473. this.$refs.page1Char2.intChar(charUuid);
  474. })
  475. .catch((err) => {
  476. console.log('getPage1echarts02 err', err);
  477. });
  478. },
  479. getRightScrollData() {
  480. let param = {
  481. smallNumber: this.xiaobaninput,
  482. cityId: this.$store.state.addr.selectCity.areaId,
  483. countyId: this.$store.state.addr.selectDistrict.areaId,
  484. townId: this.$store.state.addr.selectStreet.areaId
  485. };
  486. rightScrollData(param)
  487. .then((res) => {
  488. // console.log('res',res.rows.length);
  489. // console.log('this.scrollBoardConfig',this.scrollBoardConfig);
  490. //当小班滚动数据少时重设参数
  491. // if(res.rows.length<=15){
  492. // this.scrollBoardConfig.rowNum = 5;
  493. // this.scrollBoardStyle.height = '25vh'
  494. // }
  495. this.scrollBoardConfig.data = [];
  496. res.rows.forEach((element) => {
  497. this.scrollBoardConfig.data.push([
  498. element.smallNumber,
  499. element.treeComp,
  500. element.perAcreStock + 'm³',
  501. element.landArea + '亩'
  502. ]);
  503. });
  504. this.scrollBoardKey = Date.now();
  505. this.$refs.scrollBoard.updateRows(this.scrollBoardConfig.data);
  506. // console.log('this.scrollBoardConfig.data', this.scrollBoardConfig.data);
  507. // this.scrollBoardConfig = res.data;
  508. })
  509. .catch((err) => {
  510. console.log('echarts01 err', err);
  511. });
  512. },
  513. getBaseList() {
  514. let param = {
  515. baseName: this.baseinput,
  516. cityId: this.$store.state.addr.selectCity.areaId,
  517. countyId: this.$store.state.addr.selectDistrict.areaId,
  518. townId: this.$store.state.addr.selectStreet.areaId
  519. };
  520. baseList(param)
  521. .then((res) => {
  522. this.scrollBaseListConfig.data = [];
  523. res.rows.forEach((element) => {
  524. let cateInfoList = element.cateInfoList;
  525. let cropName = '';
  526. for (let index = 0; index < cateInfoList.length; index++) {
  527. const item = cateInfoList[index];
  528. cropName += item.cropName + ',';
  529. }
  530. cropName = cropName.substring(0, cropName.lastIndexOf(','));
  531. this.scrollBaseListConfig.data.push([
  532. element.baseName,
  533. cropName || '暂无作物',
  534. element.baseArea + '亩',
  535. element.id
  536. ]);
  537. });
  538. this.scrollBoardKey = Date.now();
  539. })
  540. .catch((err) => {
  541. console.log('echarts01 err', err);
  542. });
  543. },
  544. getEventList() {
  545. let param = {
  546. cityId: this.$store.state.addr.selectCity.areaId,
  547. countyId: this.$store.state.addr.selectDistrict.areaId,
  548. townId: this.$store.state.addr.selectStreet.areaId
  549. };
  550. eventList(param)
  551. .then((res) => {
  552. this.scrollEventConfig.data = [];
  553. res.rows.forEach((element) => {
  554. this.scrollEventConfig.data.push([
  555. element.createTime.slice(5, 16),
  556. element.townName + element.villageName,
  557. this.eventTypeFilter(element.eventType),
  558. // element.createBy,
  559. this.eventStateFilter(element.state),
  560. element.id
  561. ]);
  562. });
  563. this.scrollBoardKey = Date.now();
  564. })
  565. .catch((err) => {
  566. console.log('getEventList err', err);
  567. });
  568. },
  569. eventTypeFilter(e) {
  570. if (e == '1') {
  571. return '火灾';
  572. } else if (e == '2') {
  573. return '砍伐';
  574. } else if (e == '3') {
  575. return '病虫害';
  576. } else if (e == '4') {
  577. return '偷盗林木';
  578. }
  579. },
  580. eventStateFilter(e) {
  581. if (e == '0') {
  582. return '未反馈';
  583. } else if (e == '1') {
  584. return '已反馈';
  585. }
  586. },
  587. getAlarmData() {
  588. alarmDataApi()
  589. .then((res) => {
  590. // console.log('this.page',this.page);
  591. // console.log('res',res);
  592. this.alarmData = res.data;
  593. // console.log('alarmData.length',this.alarmData.length);
  594. })
  595. .catch((err) => {
  596. console.log('echarts01 err', err);
  597. });
  598. },
  599. getPage2numerical() {
  600. let param = {
  601. cityId: this.$store.state.addr.selectCity.areaId,
  602. countyId: this.$store.state.addr.selectDistrict.areaId,
  603. townId: this.$store.state.addr.selectStreet.areaId,
  604. smallNumber: this.xiaobaninput
  605. };
  606. page2numerical(param)
  607. .then((res) => {
  608. // console.log('res',res);
  609. this.page2numerical = res.data;
  610. })
  611. .catch((err) => {
  612. console.log('page2numerical err', err);
  613. });
  614. },
  615. getPage2echarts01() {
  616. let param = {
  617. smallNumber: this.xiaobaninput,
  618. cityId: this.$store.state.addr.selectCity.areaId,
  619. countyId: this.$store.state.addr.selectDistrict.areaId,
  620. townId: this.$store.state.addr.selectStreet.areaId
  621. };
  622. page2echarts01(param)
  623. .then((res) => {
  624. // console.log('res',res);
  625. this.page2Char1.series[0].data = [];
  626. this.page2Char1.series[0].data = res.data;
  627. let charUuid = this.$refs.page2Char1.mid;
  628. this.$refs.page2Char1.intChar(charUuid);
  629. })
  630. .catch((err) => {
  631. console.log('getPage2echarts01 err', err);
  632. });
  633. },
  634. getPage2echarts02() {
  635. let param = {
  636. smallNumber: this.xiaobaninput,
  637. cityId: this.$store.state.addr.selectCity.areaId,
  638. countyId: this.$store.state.addr.selectDistrict.areaId,
  639. townId: this.$store.state.addr.selectStreet.areaId
  640. };
  641. page2echarts02(param)
  642. .then((res) => {
  643. // console.log('res',res);
  644. // this.page2Char2 = res.data;
  645. // console.log('this.page2Char2.series', this.page2Char2.series);
  646. this.page2Char2.xAxis.data = [];
  647. this.page2Char2.series = [];
  648. const rows = res.data;
  649. // console.log(rows)
  650. // x坐标
  651. this.page2Char2.xAxis.data = rows.map((item) => {
  652. return item.smallNumber;
  653. });
  654. // console.log('x坐标', this.page2Char2.xAxis.data)
  655. // 获取所有项
  656. let seriesList = rows.map((item) => {
  657. return item.treeList;
  658. });
  659. // 数组扁平化
  660. seriesList = seriesList.flat();
  661. // 去重
  662. let obj = {};
  663. seriesList = seriesList.reduce((newArr, next) => {
  664. obj[next.name] ? '' : (obj[next.name] = true && newArr.push(next));
  665. return newArr;
  666. }, []);
  667. seriesList = seriesList.map((item, index) => {
  668. let itemColor = null;
  669. if (item.name == '杉木' || item.name == '杉') {
  670. itemColor = colorArr[0];
  671. } else if (item.name == '马尾松' || item.name == '马') {
  672. itemColor = colorArr[1];
  673. } else if (item.name == '软阔' || item.name == '软') {
  674. itemColor = colorArr[2];
  675. } else if (item.name == '硬阔' || item.name == '硬') {
  676. itemColor = colorArr[3];
  677. }
  678. return {
  679. name: item.name,
  680. type: 'bar',
  681. stack: 'total',
  682. label: {
  683. show: false
  684. },
  685. emphasis: {
  686. focus: 'series'
  687. },
  688. data: [],
  689. itemStyle: {
  690. normal: { color: itemColor || 'auto' }
  691. }
  692. };
  693. });
  694. // console.log(seriesList)
  695. rows.forEach((item) => {
  696. seriesList.forEach((jtem, index) => {
  697. let num = 0;
  698. item.treeList.map((ktem) => {
  699. if (ktem.name.indexOf(jtem.name) > -1) {
  700. num = ktem.value;
  701. }
  702. });
  703. seriesList[index].data.push(num);
  704. });
  705. });
  706. // console.log('page2echarts02 seriesList',seriesList)
  707. this.page2Char2.series = seriesList;
  708. //数量过小时隐藏滚动
  709. if (this.page2Char2.xAxis.data.length <= 5) {
  710. this.page2Char2.dataZoom[0].show = false;
  711. } else {
  712. this.page2Char2.dataZoom[0].show = true;
  713. }
  714. let charUuid = this.$refs.page2Char2.mid;
  715. this.$refs.page2Char2.intChar(charUuid);
  716. })
  717. .catch((err) => {
  718. console.log('getPage2echarts02 err', err);
  719. });
  720. },
  721. getPage2echarts03() {
  722. let param = {
  723. smallNumber: this.xiaobaninput,
  724. cityId: this.$store.state.addr.selectCity.areaId,
  725. countyId: this.$store.state.addr.selectDistrict.areaId,
  726. townId: this.$store.state.addr.selectStreet.areaId
  727. };
  728. page2echarts03(param)
  729. .then((res) => {
  730. // console.log('res',res);
  731. // this.page2Char2 = res.data;
  732. // console.log('this.page2Char2.series', this.page2Char2.series);
  733. this.page2Char3.xAxis.data = [];
  734. this.page2Char3.series = [];
  735. const rows = res.data;
  736. // console.log(rows)
  737. // x坐标
  738. this.page2Char3.xAxis.data = rows.map((item) => {
  739. return item.smallNumber;
  740. });
  741. // console.log('x坐标', this.page2Char2.xAxis.data)
  742. // 获取所有项
  743. let seriesList = rows.map((item) => {
  744. return item.treeList;
  745. });
  746. // 数组扁平化
  747. seriesList = seriesList.flat();
  748. // 去重
  749. let obj = {};
  750. seriesList = seriesList.reduce((newArr, next) => {
  751. obj[next.name] ? '' : (obj[next.name] = true && newArr.push(next));
  752. return newArr;
  753. }, []);
  754. seriesList = seriesList.map((item, index) => {
  755. let itemColor = null;
  756. if (item.name == '杉木' || item.name == '杉') {
  757. itemColor = colorArr[0];
  758. } else if (item.name == '马尾松' || item.name == '马') {
  759. itemColor = colorArr[1];
  760. } else if (item.name == '软阔' || item.name == '软') {
  761. itemColor = colorArr[2];
  762. } else if (item.name == '硬阔' || item.name == '硬') {
  763. itemColor = colorArr[3];
  764. }
  765. return {
  766. name: item.name,
  767. type: 'bar',
  768. stack: 'total',
  769. label: {
  770. show: false
  771. },
  772. emphasis: {
  773. focus: 'series'
  774. },
  775. data: [],
  776. itemStyle: {
  777. normal: { color: itemColor || 'auto' }
  778. }
  779. };
  780. });
  781. // console.log(seriesList)
  782. rows.forEach((item) => {
  783. seriesList.forEach((jtem, index) => {
  784. let num = 0;
  785. item.treeList.map((ktem) => {
  786. if (ktem.name.indexOf(jtem.name) > -1) {
  787. num = ktem.value;
  788. }
  789. });
  790. seriesList[index].data.push(num);
  791. });
  792. });
  793. // console.log(seriesList)
  794. this.page2Char3.series = seriesList;
  795. //数量过小时隐藏滚动
  796. if (this.page2Char3.xAxis.data.length <= 5) {
  797. this.page2Char3.dataZoom[0].show = false;
  798. } else {
  799. this.page2Char3.dataZoom[0].show = true;
  800. }
  801. let charUuid = this.$refs.page2Char3.mid;
  802. this.$refs.page2Char3.intChar(charUuid);
  803. })
  804. .catch((err) => {
  805. console.log('getPage2echarts03 err', err);
  806. });
  807. },
  808. getPage5numerical() {
  809. let param = {
  810. cityId: this.$store.state.addr.selectCity.areaId,
  811. countyId: this.$store.state.addr.selectDistrict.areaId,
  812. townId: this.$store.state.addr.selectStreet.areaId
  813. };
  814. page5numerical(param)
  815. .then((res) => {
  816. // console.log('res',res);
  817. this.page5numerical = res.data;
  818. })
  819. .catch((err) => {
  820. console.log('echarts01 err', err);
  821. });
  822. },
  823. getTypeSlideData() {
  824. let param = {
  825. cityId: this.$store.state.addr.selectCity.areaId,
  826. countyId: this.$store.state.addr.selectDistrict.areaId,
  827. townId: this.$store.state.addr.selectStreet.areaId
  828. };
  829. typeSlideApi(param)
  830. .then((res) => {
  831. this.typeSlideData = sliceArray(res.data, 3);
  832. // console.log(' this.typeSlideData', this.typeSlideData);
  833. })
  834. .catch((err) => {
  835. console.log('getTypeSlideData err', err);
  836. });
  837. },
  838. getPage5echarts01() {
  839. let param = {
  840. cityId: this.$store.state.addr.selectCity.areaId,
  841. countyId: this.$store.state.addr.selectDistrict.areaId,
  842. townId: this.$store.state.addr.selectStreet.areaId
  843. };
  844. page5echarts01(param)
  845. .then((res) => {
  846. // console.log('res',res);
  847. // this.page5Char1 = res.data;
  848. this.page5Char1.xAxis.data = res.data.map((item) => {
  849. return item.baseName;
  850. });
  851. this.page5Char1.series[0].data = res.data.map((item) => {
  852. return item.baseArea;
  853. });
  854. //数量过小时隐藏滚动
  855. if (this.page5Char1.xAxis.data.length <= 5) {
  856. this.page5Char1.dataZoom[0].show = false;
  857. } else {
  858. this.page5Char1.dataZoom[0].show = true;
  859. }
  860. let charUuid = this.$refs.page5Char1.mid;
  861. this.$refs.page5Char1.intChar(charUuid);
  862. })
  863. .catch((err) => {
  864. console.log('getPage5echarts01 err', err);
  865. });
  866. },
  867. getPage5echarts02() {
  868. let param = {
  869. cityId: this.$store.state.addr.selectCity.areaId,
  870. countyId: this.$store.state.addr.selectDistrict.areaId,
  871. townId: this.$store.state.addr.selectStreet.areaId
  872. };
  873. page5echarts02(param)
  874. .then((res) => {
  875. // console.log('res',res);
  876. // this.page5Char2 = res.data;
  877. this.page5Char2.xAxis.data = res.data.map((item) => {
  878. return item.name;
  879. });
  880. this.page5Char2.series[0].data = res.data.map((item) => {
  881. return item.number;
  882. });
  883. //数量过小时隐藏滚动
  884. if (this.page5Char2.xAxis.data.length <= 5) {
  885. this.page5Char2.dataZoom[0].show = false;
  886. } else {
  887. this.page5Char2.dataZoom[0].show = true;
  888. }
  889. let charUuid = this.$refs.page5Char2.mid;
  890. this.$refs.page5Char2.intChar(charUuid);
  891. })
  892. .catch((err) => {
  893. console.log('getPage5echarts02 err', err);
  894. });
  895. },
  896. getPage6numerical() {
  897. let param = {
  898. cityId: this.$store.state.addr.selectCity.areaId,
  899. countyId: this.$store.state.addr.selectDistrict.areaId,
  900. townId: this.$store.state.addr.selectStreet.areaId
  901. };
  902. //第一屏统计
  903. page6numerical(param)
  904. .then((res) => {
  905. // console.log('res',res);
  906. this.page6numerical = res.data;
  907. })
  908. .catch((err) => {
  909. console.log('getPage6numerical err', err);
  910. });
  911. },
  912. getPage6echarts01() {
  913. let param = {
  914. cityId: this.$store.state.addr.selectCity.areaId,
  915. countyId: this.$store.state.addr.selectDistrict.areaId,
  916. townId: this.$store.state.addr.selectStreet.areaId
  917. };
  918. page6echarts01(param)
  919. .then((res) => {
  920. // console.log('res',res);
  921. // this.page6Char1 = res.data;
  922. // this.page6Char1.xAxis[0].data = [];
  923. // this.page6Char1.series[0].data = [];
  924. // this.page6Char1.series[1].data = [];
  925. // this.page6Char1.series[2].data = [];
  926. // res.data &&
  927. // res.data.forEach((element) => {
  928. // this.page6Char1.xAxis[0].data.push(element.villageName);
  929. // this.page6Char1.series[0].data.push(element.fireCount);
  930. // this.page6Char1.series[1].data.push(element.cutCount);
  931. // this.page6Char1.series[2].data.push(element.pestCount);
  932. // });
  933. this.page6Char1.xAxis.data = [];
  934. this.page6Char1.series[0].data = [];
  935. this.page6Char1.series[1].data = [];
  936. this.page6Char1.series[2].data = [];
  937. this.page6Char1.series[3].data = [];
  938. const rows = res.data;
  939. // console.log(rows)
  940. // x坐标
  941. this.page6Char1.xAxis.data = rows.map((item) => {
  942. return item.villageName;
  943. });
  944. rows.forEach((element) => {
  945. this.page6Char1.series[0].data.push(element.pestCount);
  946. this.page6Char1.series[1].data.push(element.fireCount);
  947. this.page6Char1.series[2].data.push(element.cutCount);
  948. this.page6Char1.series[3].data.push(element.stealCount);
  949. });
  950. // console.log('x坐标', this.page6Char1.xAxis.data)
  951. //数量过小时隐藏滚动
  952. if (this.page6Char1.xAxis.data.length <= 5) {
  953. this.page6Char1.dataZoom[0].show = false;
  954. } else {
  955. this.page6Char1.dataZoom[0].show = true;
  956. }
  957. let charUuid = this.$refs.page6Char1.mid;
  958. this.$refs.page6Char1.intChar(charUuid);
  959. })
  960. .catch((err) => {
  961. console.log('getPage6echarts01 err', err);
  962. });
  963. },
  964. getPage6echarts02() {
  965. let param = {
  966. cityId: this.$store.state.addr.selectCity.areaId,
  967. countyId: this.$store.state.addr.selectDistrict.areaId,
  968. townId: this.$store.state.addr.selectStreet.areaId
  969. };
  970. page6echarts02(param)
  971. .then((res) => {
  972. console.log('page6echarts02 res', res);
  973. const rows = res.data;
  974. // console.log(rows)
  975. // x坐标
  976. this.page6Char2.xAxis.data = [];
  977. this.page6Char2.series[0].data = [];
  978. this.page6Char2.series[1].data = [];
  979. this.page6Char2.series[2].data = [];
  980. this.page6Char2.xAxis.data = rows.map((item) => {
  981. return item.month;
  982. });
  983. rows.forEach((element) => {
  984. // console.log('element',element.eventList);
  985. this.page6Char2.series[0].data.push(element.eventList[0].value);
  986. this.page6Char2.series[1].data.push(element.eventList[1].value);
  987. this.page6Char2.series[2].data.push(element.eventList[2].value);
  988. });
  989. console.log('this.page6Char2.series', this.page6Char2.series);
  990. let charUuid = this.$refs.page6Char2.mid;
  991. this.$refs.page6Char2.intChar(charUuid);
  992. })
  993. .catch((err) => {
  994. console.log('page6echarts02 err', err);
  995. });
  996. },
  997. xiaobansearch() {
  998. // console.log('xiaobansearch');
  999. this.getRightScrollData();
  1000. this.getPageData();
  1001. },
  1002. basesearch() {
  1003. // console.log('xiaobansearch');
  1004. this.getBaseList();
  1005. this.getPageData();
  1006. },
  1007. scrollBoardClick(e) {
  1008. let param = {
  1009. smallNumber: e.row[0]
  1010. };
  1011. smallInfo(param).then((res) => {
  1012. this.changeSearchSmallClass(res.data);
  1013. });
  1014. },
  1015. scrollOut() {
  1016. this.changeSearchSmallClass({ name: false });
  1017. },
  1018. scrollBaseListClick(e) {
  1019. console.log('scrollBaseListClick', e);
  1020. let param = {
  1021. baseId: e.row[3]
  1022. };
  1023. financeBaseDetail(param).then((res) => {
  1024. this.changeBaseDetail(res.data)
  1025. })
  1026. },
  1027. baseListClick(){
  1028. this.changeBaseDetail({ name: false })
  1029. },
  1030. scrollEventClick(e) {
  1031. let param = {
  1032. id: e.row[4]
  1033. };
  1034. eventDetail(param).then((res) => {
  1035. this.changeEvenData(res.data);
  1036. });
  1037. },
  1038. scrollEventOut() {
  1039. this.changeEvenData({ name: false });
  1040. },
  1041. toggleShowScrollBoard() {
  1042. this.showScrollBoard = !this.showScrollBoard;
  1043. }
  1044. }
  1045. };
  1046. </script>
  1047. <style lang='scss' scoped>
  1048. @import url(./index.scss);
  1049. </style>