index.vue 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592
  1. <!--
  2. * @Description:
  3. * @Author: wangcc
  4. * @Date: 2022-07-06 15:56:45
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2023-03-10 17:53:02
  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" pageName="forest" />
  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" pageName="treeSpecies" />
  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" pageName="economics" />
  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
  106. v-if="$store.state.addr.mapLevel == 'city'"
  107. >{{ $store.state.addr.selectAddr }}各县事件发生记录</span>
  108. <span
  109. v-if="$store.state.addr.mapLevel == 'district'"
  110. >{{ $store.state.addr.selectAddr }}各乡镇事件发生记录</span>
  111. <span
  112. v-if="$store.state.addr.mapLevel == 'street'"
  113. >{{ $store.state.addr.selectAddr }}各村事件发生记录</span>
  114. </div>
  115. <dv-scroll-board
  116. :key="scrollBoardKey"
  117. class="scroll-event"
  118. :config="scrollEventConfig"
  119. ref="scrollBoard"
  120. @click="scrollEventClick"
  121. @mouseout="scrollEventOut"
  122. />
  123. </div>
  124. </section>
  125. <section class="right-wrap">
  126. <PickerAddr />
  127. <div v-if="showbase" class="xiaoban u-flex" style="width:100%;justify-content: right;">
  128. <div class="selectBox">
  129. <div class="title">基地查询:</div>
  130. <el-input v-model="baseinput" placeholder="请输入基地名称">
  131. <i class="el-icon-search el-input__icon" slot="suffix" @click="basesearch"></i>
  132. </el-input>
  133. </div>
  134. </div>
  135. <div class="right_xiaoban">
  136. <div class="tab-box" v-if="showxiaoban">
  137. <div
  138. class="tab-btn"
  139. :class="classFunc(index)"
  140. @click="tabLink(index)"
  141. v-for="(item, index) in tabData"
  142. :key="index"
  143. >
  144. <span class="tab-span">{{ item.name }}</span>
  145. </div>
  146. </div>
  147. <div v-if="showxiaoban" class="xiaoban u-flex">
  148. <div class="tab-class-search" v-if="cur == 1">
  149. <!-- <div class="title">小班查询:</div> -->
  150. <el-input v-model="xiaobaninput" placeholder="请输入小班号">
  151. <i class="el-icon-search el-input__icon" slot="suffix" @click="xiaobansearch"></i>
  152. </el-input>
  153. </div>
  154. <div class="tab-class-search" v-if="cur == 0">
  155. <!-- <div class="title">项目查询:</div> -->
  156. <el-input v-model="projectInput" placeholder="请输入项目名称">
  157. <i class="el-icon-search el-input__icon" slot="suffix" @click="projectSearch"></i>
  158. </el-input>
  159. </div>
  160. </div>
  161. <section
  162. v-if="showxiaoban || showbase"
  163. class="scroll-board-wrap"
  164. :class="{ close: showScrollBoard == true }"
  165. >
  166. <dv-scroll-board
  167. v-if="showbase"
  168. :key="scrollBoardKey"
  169. class="scroll-board-01 scroll-base"
  170. :config="scrollBaseListConfig"
  171. ref="scrollBaseList"
  172. @click="scrollBaseListClick"
  173. @mouseout="baseListClick"
  174. />
  175. <div class="scroll-board-table-box" v-show="showxiaoban && cur == 1">
  176. <el-table
  177. height="580"
  178. ref="tableFrom"
  179. highlight-current-row
  180. size="small"
  181. :data="tableData"
  182. @mouseenter.native="stopScroll"
  183. @mouseleave.native="startScroll"
  184. @cell-click="scrollBoardClick"
  185. stripe
  186. >
  187. <el-table-column prop="smallNumber" label="小班号" align="center"></el-table-column>
  188. <el-table-column prop="treeComp" label="树种组成" align="center"></el-table-column>
  189. <el-table-column prop="perAcreStock" label="每亩蓄积" align="center">
  190. <template slot-scope="{row}">
  191. <span>{{row.perAcreStock}}m³</span>
  192. </template>
  193. </el-table-column>
  194. <el-table-column prop="landArea" label="小班面积" align="center">
  195. <template slot-scope="{row}">
  196. <span>{{row.landArea}}亩</span>
  197. </template>
  198. </el-table-column>
  199. </el-table>
  200. <div class="pagination-box" v-if="total > 0">
  201. <pagination
  202. :total="total"
  203. :page.sync="queryParams.pageNum"
  204. :limit.sync="queryParams.pageSize"
  205. :layout="'prev, pager, next'"
  206. @pagination="getRightScrollData"
  207. />
  208. </div>
  209. </div>
  210. <!-- <dv-scroll-board
  211. v-if="showxiaoban && cur == 1"
  212. :key="scrollBoardKey"
  213. class="scroll-board-01"
  214. :config="scrollBoardConfig"
  215. ref="scrollBoard"
  216. @click="scrollBoardClick"
  217. :style="scrollBoardStyle"
  218. />-->
  219. <dv-scroll-board
  220. v-if="showxiaoban && cur == 0"
  221. :key="scrollBoardKey"
  222. class="scroll-board-01"
  223. id="projectId"
  224. :config="scrollPeojectConfig"
  225. ref="scrollProjectBoard"
  226. @click="scrollProjectClick"
  227. @mouseout="scrollOutPro"
  228. :style="scrollBoardStyle"
  229. />
  230. <div
  231. class="scroll-board-tool"
  232. v-if="showxiaoban && cur == 0"
  233. @click="toggleShowScrollBoard"
  234. >
  235. <div class="inner">
  236. <img src="../assets/img/jiantou.png" alt />
  237. </div>
  238. </div>
  239. </section>
  240. </div>
  241. </section>
  242. <!-- </dv-full-screen-container> -->
  243. </div>
  244. </template>
  245. <script>
  246. import Map from '../components/amapPow.vue';
  247. import Header from '../components/header';
  248. import MyEcharts from '../components/echarts';
  249. import Numerical from '../components/numerical';
  250. import Alarm from '../components/alarm';
  251. import PickerAddr from '../components/pickerAddr';
  252. import Typeslide from '../components/typeslide';
  253. import { Message } from 'element-ui';
  254. import { debounce } from '@/utils/mdebounce';
  255. import { sliceArray } from '@/utils/sliceArray';
  256. import { mapMutations, mapState, mapGetters } from 'vuex';
  257. import {
  258. page1numerical,
  259. page1echarts01,
  260. page1echarts02,
  261. rightScrollData,
  262. baseList,
  263. alarmDataApi,
  264. page2numerical,
  265. page2echarts01,
  266. page2echarts02,
  267. page2echarts03,
  268. page5numerical,
  269. typeSlideApi,
  270. page5echarts01,
  271. page5echarts02,
  272. page6numerical,
  273. page6echarts01,
  274. page6echarts02,
  275. eventList,
  276. smallClassDetail,
  277. smallInfo,
  278. eventDetail,
  279. financeBaseDetail,
  280. projectList,
  281. projectSmallClass
  282. } from '../service/index';
  283. import scrollBoardSchema from '../dataSchema/scrollBoardSchema';
  284. import scrollPeojectSchema from '../dataSchema/scrollPeojectSchema';
  285. import scrollBaseListSchema from '../dataSchema/scrollBaseListSchema';
  286. import page1Char1Schema from '../dataSchema/page1Char1Schema';
  287. import page1Char2Schema from '../dataSchema/page1Char2Schema';
  288. import page2Char1Schema from '../dataSchema/page2Char1Schema';
  289. import page2Char2Schema from '../dataSchema/page2Char2Schema';
  290. import page2Char3Schema from '../dataSchema/page2Char3Schema';
  291. import page5Char1Schema from '../dataSchema/page5Char1Schema';
  292. import page5Char2Schema from '../dataSchema/page5Char2Schema';
  293. import page6Char1Schema from '../dataSchema/page6Char1Schema';
  294. import page6Char2Schema from '../dataSchema/page6Char2Schema';
  295. import scrollEventSchema from '../dataSchema/scrollEventSchema';
  296. //柱状图颜色
  297. let colorArr = ['#00FAFD', '#FF4E46', '#FFAA00', '#19D800'];
  298. // import { provinceAndCityData, regionData, provinceAndCityDataPlus, regionDataPlus, CodeToText, TextToCode } from 'element-china-area-data';
  299. export default {
  300. name: '',
  301. components: {
  302. Map,
  303. Header,
  304. MyEcharts,
  305. Numerical,
  306. Alarm,
  307. PickerAddr,
  308. Typeslide
  309. },
  310. data() {
  311. return {
  312. tabData: [
  313. {
  314. id: 1,
  315. name: '项目查询'
  316. },
  317. {
  318. id: 2,
  319. name: '小班查询'
  320. }
  321. ],
  322. timer: null,
  323. tableData: [],
  324. rowList: [],
  325. cur: 0,
  326. total: 0,
  327. queryParams: {
  328. pageNum: 1,
  329. pageSize: 300
  330. },
  331. showxiaoban: true,
  332. showbase: false,
  333. showScrollBoard: false,
  334. alarData: {},
  335. page: 1,
  336. // addrOptions: regionDataPlus,
  337. addrSelectedOptions: ['520000', ''],
  338. navList: [
  339. { text: '森林资源', en: 'forest' },
  340. { text: '林木结构', en: 'treeSpecies' },
  341. { text: '碳汇管理', en: 'sink' },
  342. { text: '林下经济', en: 'economics' },
  343. { text: '土地流转', en: 'circulation' },
  344. { text: '事件信息', en: 'event' }
  345. ],
  346. scrollBoardKey: Date.now(),
  347. scrollBoardStyle: {
  348. // width: '100%',
  349. // height: '60vh'
  350. },
  351. scrollBoardConfig: scrollBoardSchema,
  352. scrollBaseListConfig: scrollBaseListSchema,
  353. scrollPeojectConfig: scrollPeojectSchema,
  354. page1numerical: [
  355. { name: '蓄积量', number: '2309', unit: '立方米' },
  356. { name: '占地面积', number: '55.4', unit: '万亩' }
  357. ],
  358. alarmData: [
  359. // {msg:'三都林场01小班于15:00:00发现火情,请尽快处理!'},
  360. // {msg:'测试1!'},
  361. // {msg:'测试22222222!'},
  362. ],
  363. page1Char1: page1Char1Schema,
  364. page1Char2: page1Char2Schema,
  365. page2numerical: [],
  366. page2Char1: page2Char1Schema,
  367. page2Char2: page2Char2Schema,
  368. page2Char3: page2Char3Schema,
  369. page5numerical: [],
  370. typeSlideData: [],
  371. page5Char1: page5Char1Schema,
  372. page5Char2: page5Char2Schema,
  373. page6numerical: [],
  374. page6Char1: page6Char1Schema,
  375. page6Char2: page6Char2Schema,
  376. scrollEventConfig: scrollEventSchema,
  377. xiaobaninput: '',
  378. projectInput: '',
  379. baseinput: ''
  380. };
  381. },
  382. created() {},
  383. computed: {
  384. ...mapGetters(['vuexCityList', 'vuexDistrictList', 'vuexStreetList'])
  385. },
  386. mounted() {
  387. this.getPageData();
  388. // this.getRightScrollData();
  389. setInterval(() => {
  390. this.getPageData();
  391. }, 1160000);
  392. window.onresize = () => {
  393. //图表resize
  394. if (this.$store.state.addr.page == 'forest') {
  395. let page1Char1Uuid = this.$refs.page1Char1.mid;
  396. this.$refs.page1Char1.resizeChar(page1Char1Uuid);
  397. let page1Char2Uuid = this.$refs.page1Char2.mid;
  398. this.$refs.page1Char2.resizeChar(page1Char2Uuid);
  399. } else if (this.$store.state.addr.page == 'treeSpecies') {
  400. let page2Char2Uuid = this.$refs.page2Char2.mid;
  401. this.$refs.page2Char2.resizeChar(page2Char2Uuid);
  402. let page2Char3Uuid = this.$refs.page2Char3.mid;
  403. this.$refs.page2Char3.resizeChar(page2Char3Uuid);
  404. } else if (this.$store.state.addr.page == 'economics') {
  405. let page5Char1Uuid = this.$refs.page5Char1.mid;
  406. this.$refs.page5Char1.resizeChar(page5Char1Uuid);
  407. let page5Char2Uuid = this.$refs.page5Char2.mid;
  408. this.$refs.page5Char2.resizeChar(page5Char2Uuid);
  409. } else if (this.$store.state.addr.page == 'event') {
  410. let page6Char1Uuid = this.$refs.page6Char1.mid;
  411. this.$refs.page6Char1.resizeChar(page6Char1Uuid);
  412. let page6Char2Uuid = this.$refs.page6Char2.mid;
  413. this.$refs.page6Char2.resizeChar(page6Char2Uuid);
  414. }
  415. };
  416. },
  417. watch: {
  418. xiaobaninput: {
  419. handler: function () {
  420. debounce(this.xiaobansearch, 500, false);
  421. }
  422. },
  423. projectInput: {
  424. handler: function () {
  425. debounce(this.projectSearch, 500, false);
  426. }
  427. },
  428. baseinput: {
  429. handler: function () {
  430. debounce(this.basesearch, 500, false);
  431. }
  432. },
  433. '$store.state.addr.selectCity'(val) {
  434. // debounce(this.getPageData(), 1000, false)
  435. this.getPageData();
  436. },
  437. '$store.state.addr.selectDistrict'(val) {
  438. this.getPageData();
  439. },
  440. '$store.state.addr.selectStreet'(val) {
  441. this.getPageData();
  442. },
  443. '$store.state.addr.mapLevel': {
  444. handler(val) {
  445. if (val === 'city' && this.$store.state.addr.selectCity.prop == '2') {
  446. this.jumpDistrict();
  447. }
  448. }
  449. },
  450. '$store.state.addr.selectProject'(val) {
  451. // console.log('addr.selectProject',val);
  452. this.getPageData();
  453. }
  454. },
  455. methods: {
  456. ...mapMutations([
  457. 'changeSearchSmallClass',
  458. 'changeEvenData',
  459. 'changeBaseDetail',
  460. 'changeSelectCity',
  461. 'changeSelectDistrict',
  462. 'changeSelectStreet',
  463. 'getProjectSmallClassMap',
  464. 'changeSelectProject'
  465. ]),
  466. addrChange(value) {
  467. console.log('addrChange', value);
  468. },
  469. navClick(index) {
  470. let pageName = this.navList[index - 1].en;
  471. if (pageName == 'sink' || pageName == 'circulation') {
  472. Message('暂未开放!');
  473. return;
  474. }
  475. this.$store.commit('changePage', this.navList[index - 1].en);
  476. this.page = index;
  477. if (this.navList[index - 1].en == 'economics') {
  478. this.showbase = true;
  479. this.showxiaoban = false;
  480. } else if (this.navList[index - 1].en == 'event') {
  481. this.showbase = false;
  482. this.showxiaoban = false;
  483. } else {
  484. this.showbase = false;
  485. this.showxiaoban = true;
  486. }
  487. // 切换专题时,重置区域
  488. // this.$store.dispatch('searchArea', {
  489. // parentId: '520000',
  490. // name: '贵州省',
  491. // mapLevel: 'province'
  492. // });
  493. this.getPageData();
  494. },
  495. getPageData() {
  496. debounce(this.debounceGetData, 300, false);
  497. },
  498. debounceGetData() {
  499. console.log('请求数据');
  500. // console.log('page', this.$store.state.addr.page);
  501. // {text:'森林资源',en:'forest'},
  502. // {text:'林木结构',en:'treeSpecies'},
  503. // {text:'碳汇管理',en:'sink'},
  504. // {text:'林下经济',en:'economics'},
  505. // {text:'土地流转',en:'circulation'},
  506. // {text:'事件信息',en:'event'},
  507. if (this.$store.state.addr.page == 'forest') {
  508. this.getPage1numerical();
  509. this.getPage1echarts01();
  510. this.getPage1echarts02();
  511. this.getRightScrollData();
  512. this.getProjectScrollData();
  513. } else if (this.$store.state.addr.page == 'treeSpecies') {
  514. this.getPage2numerical();
  515. // this.getPage2echarts01();
  516. this.getPage2echarts02();
  517. this.getPage2echarts03();
  518. this.getRightScrollData();
  519. this.getProjectScrollData();
  520. } else if (this.$store.state.addr.page == 'economics') {
  521. this.getPage5numerical();
  522. // this.getTypeSlideData();
  523. this.getPage5echarts01();
  524. this.getPage5echarts02();
  525. this.getBaseList();
  526. } else if (this.$store.state.addr.page == 'event') {
  527. this.getPage6numerical();
  528. this.getPage6echarts01();
  529. this.getEventList();
  530. // this.getPage6echarts02();
  531. this.getAlarmData();
  532. // this.getRightScrollData();
  533. }
  534. },
  535. getPage1numerical() {
  536. let param = {
  537. cityId: this.$store.state.addr.selectCity.areaId,
  538. countyId: this.$store.state.addr.selectDistrict.areaId,
  539. townId: this.$store.state.addr.selectStreet.areaId,
  540. courseId: this.$store.state.addr.selectProject.ProjectID
  541. };
  542. page1numerical(param)
  543. .then((res) => {
  544. // console.log('res',res);
  545. this.page1numerical = res.data;
  546. })
  547. .catch((err) => {
  548. console.log('echarts01 err', err);
  549. });
  550. },
  551. getPage1echarts01() {
  552. let param = {
  553. cityId: this.$store.state.addr.selectCity.areaId,
  554. countyId: this.$store.state.addr.selectDistrict.areaId,
  555. townId: this.$store.state.addr.selectStreet.areaId,
  556. courseId: this.$store.state.addr.selectProject.ProjectID
  557. };
  558. // console.log('cityId',param.cityId);
  559. page1echarts01(param)
  560. .then((res) => {
  561. this.page1Char1.xAxis.data = res.data.map((item) => {
  562. return item.name;
  563. });
  564. this.page1Char1.series[0].data = res.data.map((item) => {
  565. return item.number;
  566. });
  567. //数量过小时隐藏滚动
  568. if (this.page1Char1.xAxis.data.length <= 5) {
  569. this.page1Char1.dataZoom[0].show = false;
  570. } else {
  571. this.page1Char1.dataZoom[0].show = true;
  572. }
  573. let charUuid = this.$refs.page1Char1.mid;
  574. this.$refs.page1Char1.intChar(charUuid);
  575. })
  576. .catch((err) => {
  577. console.log('getPage1echarts01 err', err);
  578. });
  579. },
  580. getPage1echarts02() {
  581. let param = {
  582. cityId: this.$store.state.addr.selectCity.areaId,
  583. countyId: this.$store.state.addr.selectDistrict.areaId,
  584. townId: this.$store.state.addr.selectStreet.areaId,
  585. courseId: this.$store.state.addr.selectProject.ProjectID
  586. };
  587. // console.log('cityId',param.cityId);
  588. page1echarts02(param)
  589. .then((res) => {
  590. this.page1Char2.xAxis.data = res.data.map((item) => {
  591. return item.name;
  592. });
  593. this.page1Char2.series[0].data = res.data.map((item) => {
  594. return item.number;
  595. });
  596. //数量过小时隐藏滚动
  597. if (this.page1Char2.xAxis.data.length <= 5) {
  598. this.page1Char2.dataZoom[0].show = false;
  599. } else {
  600. this.page1Char2.dataZoom[0].show = true;
  601. }
  602. let charUuid = this.$refs.page1Char2.mid;
  603. this.$refs.page1Char2.intChar(charUuid);
  604. })
  605. .catch((err) => {
  606. console.log('getPage1echarts02 err', err);
  607. });
  608. },
  609. getRightScrollData() {
  610. let param = {
  611. smallNumber: this.xiaobaninput,
  612. cityId: this.$store.state.addr.selectCity.areaId,
  613. countyId: this.$store.state.addr.selectDistrict.areaId,
  614. townId: this.$store.state.addr.selectStreet.areaId,
  615. courseId: this.$store.state.addr.selectProject.ProjectID,
  616. pageNum: this.queryParams.pageNum,
  617. pageSize: this.queryParams.pageSize
  618. };
  619. rightScrollData(param)
  620. .then((res) => {
  621. // console.log('res',res.rows.length);
  622. // console.log('this.scrollBoardConfig',this.scrollBoardConfig);
  623. //当小班滚动数据少时重设参数
  624. // if(res.rows.length<=15){
  625. // this.scrollBoardConfig.rowNum = 5;
  626. // this.scrollBoardStyle.height = '25vh'
  627. // }
  628. this.tableData = res.rows;
  629. this.total = res.total;
  630. // this.scrollBoardConfig.data = [];
  631. // res.rows.forEach((element) => {
  632. // this.scrollBoardConfig.data.push([
  633. // element.smallNumber,
  634. // element.treeComp,
  635. // element.perAcreStock + 'm³',
  636. // element.landArea + '亩',
  637. // element.id
  638. // ]);
  639. // });
  640. // this.scrollBoardKey = Date.now();
  641. // this.$refs.scrollBoard &&
  642. // this.$refs.scrollBoard.updateRows(this.scrollBoardConfig.data);
  643. // console.log('this.scrollBoardConfig.data', this.scrollBoardConfig.data);
  644. // this.scrollBoardConfig = res.data;
  645. })
  646. .catch((err) => {
  647. console.log('scrollBoard err', err);
  648. });
  649. },
  650. getProjectScrollData() {
  651. let param = {
  652. courseName: this.projectInput,
  653. cityId: this.$store.state.addr.selectCity.areaId,
  654. countyId: this.$store.state.addr.selectDistrict.areaId,
  655. townId: this.$store.state.addr.selectStreet.areaId,
  656. pageNum: 1,
  657. pageSize: 50
  658. };
  659. projectList(param)
  660. .then((res) => {
  661. // console.log('res',res.rows.length);
  662. // console.log('this.scrollBoardConfig',this.scrollBoardConfig);
  663. //当小班滚动数据少时重设参数
  664. // if(res.rows.length<=15){
  665. // this.scrollBoardConfig.rowNum = 5;
  666. // this.scrollBoardStyle.height = '25vh'
  667. // }
  668. let that = this;
  669. this.scrollPeojectConfig.data = [];
  670. res.rows.forEach((element) => {
  671. this.scrollPeojectConfig.data.push([
  672. element.courseName,
  673. element.smallClassStock + 'm³',
  674. element.landArea + '亩',
  675. element.classNumber,
  676. element.id
  677. ]);
  678. });
  679. this.scrollBoardKey = Date.now();
  680. this.$refs.scrollProjectBoard.updateRows(
  681. this.scrollPeojectConfig.data
  682. );
  683. //监听是否有选中项目,有的话高亮
  684. let timer1 = setInterval(function () {
  685. // 每 10 毫秒检查一下 html 是否已存在
  686. let domId = that.$store.state.addr.selectProject.ProjectID;
  687. let dom = document.getElementById(
  688. that.$store.state.addr.selectProject.ProjectID
  689. );
  690. // console.log('dom',domId);
  691. if (domId && dom) {
  692. // console.log('dom',dom.classList);
  693. if (dom.classList.contains('active') == true) {
  694. // clearInterval(timer1);
  695. } else {
  696. dom.classList.add('active');
  697. }
  698. }
  699. }, 500);
  700. // setTimeout(() => {
  701. // this.$store.state.addr.selectProject.ProjectID&&document.getElementById(this.$store.state.addr.selectProject.ProjectID).classList.add('active');
  702. // }, 2000);
  703. // console.log('this.scrollBoardConfig.data', this.scrollBoardConfig.data);
  704. // this.scrollBoardConfig = res.data;
  705. })
  706. .catch((err) => {
  707. console.log('scrollProjectBoard err', err);
  708. });
  709. },
  710. getBaseList() {
  711. let param = {
  712. baseName: this.baseinput,
  713. cityId: this.$store.state.addr.selectCity.areaId,
  714. countyId: this.$store.state.addr.selectDistrict.areaId,
  715. townId: this.$store.state.addr.selectStreet.areaId
  716. };
  717. baseList(param)
  718. .then((res) => {
  719. this.scrollBaseListConfig.data = [];
  720. res.rows.forEach((element) => {
  721. let cateInfoList = element.cateInfoList;
  722. let cropName = '';
  723. for (let index = 0; index < cateInfoList.length; index++) {
  724. const item = cateInfoList[index];
  725. cropName += item.cropName + ',';
  726. }
  727. cropName = cropName.substring(0, cropName.lastIndexOf(','));
  728. this.scrollBaseListConfig.data.push([
  729. element.baseName,
  730. cropName || '暂无作物',
  731. element.baseArea + '亩',
  732. element.id
  733. ]);
  734. });
  735. this.scrollBoardKey = Date.now();
  736. })
  737. .catch((err) => {
  738. console.log('echarts01 err', err);
  739. });
  740. },
  741. getEventList() {
  742. let param = {
  743. cityId: this.$store.state.addr.selectCity.areaId,
  744. countyId: this.$store.state.addr.selectDistrict.areaId,
  745. townId: this.$store.state.addr.selectStreet.areaId
  746. };
  747. eventList(param)
  748. .then((res) => {
  749. this.scrollEventConfig.data = [];
  750. res.rows.forEach((element) => {
  751. this.scrollEventConfig.data.push([
  752. element.createTime.slice(5, 16),
  753. element.townName + element.villageName,
  754. this.eventTypeFilter(element.eventType),
  755. // element.createBy,
  756. this.eventStateFilter(element.state),
  757. element.id
  758. ]);
  759. });
  760. this.scrollBoardKey = Date.now();
  761. })
  762. .catch((err) => {
  763. console.log('getEventList err', err);
  764. });
  765. },
  766. eventTypeFilter(e) {
  767. if (e == '1') {
  768. return '火灾';
  769. } else if (e == '2') {
  770. return '砍伐';
  771. } else if (e == '3') {
  772. return '病虫害';
  773. } else if (e == '4') {
  774. return '偷盗林木';
  775. }
  776. },
  777. eventStateFilter(e) {
  778. if (e == '0') {
  779. return '未反馈';
  780. } else if (e == '1') {
  781. return '已反馈';
  782. }
  783. },
  784. getAlarmData() {
  785. alarmDataApi()
  786. .then((res) => {
  787. // console.log('this.page',this.page);
  788. // console.log('res',res);
  789. this.alarmData = res.data;
  790. // console.log('alarmData.length',this.alarmData.length);
  791. })
  792. .catch((err) => {
  793. console.log('echarts01 err', err);
  794. });
  795. },
  796. getPage2numerical() {
  797. let param = {
  798. cityId: this.$store.state.addr.selectCity.areaId,
  799. countyId: this.$store.state.addr.selectDistrict.areaId,
  800. townId: this.$store.state.addr.selectStreet.areaId,
  801. smallNumber: this.xiaobaninput,
  802. courseId: this.$store.state.addr.selectProject.ProjectID
  803. };
  804. page2numerical(param)
  805. .then((res) => {
  806. // console.log('res',res);
  807. this.page2numerical = res.data;
  808. })
  809. .catch((err) => {
  810. console.log('page2numerical err', err);
  811. });
  812. },
  813. getPage2echarts01() {
  814. let param = {
  815. smallNumber: this.xiaobaninput,
  816. cityId: this.$store.state.addr.selectCity.areaId,
  817. countyId: this.$store.state.addr.selectDistrict.areaId,
  818. townId: this.$store.state.addr.selectStreet.areaId,
  819. courseId: this.$store.state.addr.selectProject.ProjectID
  820. };
  821. page2echarts01(param)
  822. .then((res) => {
  823. // console.log('res',res);
  824. this.page2Char1.series[0].data = [];
  825. this.page2Char1.series[0].data = res.data;
  826. let charUuid = this.$refs.page2Char1.mid;
  827. this.$refs.page2Char1.intChar(charUuid);
  828. })
  829. .catch((err) => {
  830. console.log('getPage2echarts01 err', err);
  831. });
  832. },
  833. getPage2echarts02() {
  834. let param = {
  835. smallNumber: this.xiaobaninput,
  836. cityId: this.$store.state.addr.selectCity.areaId,
  837. countyId: this.$store.state.addr.selectDistrict.areaId,
  838. townId: this.$store.state.addr.selectStreet.areaId,
  839. courseId: this.$store.state.addr.selectProject.ProjectID
  840. };
  841. page2echarts02(param)
  842. .then((res) => {
  843. // console.log('res',res);
  844. // this.page2Char2 = res.data;
  845. // console.log('this.page2Char2.series', this.page2Char2.series);
  846. this.page2Char2.xAxis.data = [];
  847. this.page2Char2.series = [];
  848. const rows = res.data;
  849. // console.log(rows)
  850. // x坐标
  851. this.page2Char2.xAxis.data = rows.map((item) => {
  852. return item.smallNumber;
  853. });
  854. // console.log('x坐标', this.page2Char2.xAxis.data)
  855. // 获取所有项
  856. let seriesList = rows.map((item) => {
  857. return item.treeList || [];
  858. });
  859. // 数组扁平化
  860. seriesList = seriesList.flat();
  861. // 去重
  862. let obj = {};
  863. seriesList = seriesList.reduce((newArr, next) => {
  864. // console.log('page2Char2 seriesList',seriesList);
  865. // console.log('page2Char2 next',next);
  866. obj[next.name] ? '' : (obj[next.name] = true && newArr.push(next));
  867. return newArr;
  868. }, []);
  869. seriesList.sort((star, next) => {
  870. // 按name的指定顺序排序,不排序可以删掉
  871. var order = ['杉木', '马尾松', '软阔', '硬阔'];
  872. return order.indexOf(star.name) - order.indexOf(next.name);
  873. });
  874. seriesList = seriesList.map((item, index) => {
  875. let itemColor = null;
  876. if (item.name == '杉木' || item.name == '杉') {
  877. itemColor = colorArr[0];
  878. } else if (item.name == '马尾松' || item.name == '马') {
  879. itemColor = colorArr[1];
  880. } else if (item.name == '软阔' || item.name == '软') {
  881. itemColor = colorArr[2];
  882. } else if (item.name == '硬阔' || item.name == '硬') {
  883. itemColor = colorArr[3];
  884. }
  885. return {
  886. name: item.name,
  887. type: 'bar',
  888. stack: 'total',
  889. label: {
  890. show: false
  891. },
  892. emphasis: {
  893. focus: 'series'
  894. },
  895. data: [],
  896. itemStyle: {
  897. normal: { color: itemColor || 'auto' }
  898. }
  899. };
  900. });
  901. // console.log(seriesList)
  902. rows.forEach((item) => {
  903. seriesList.forEach((jtem, index) => {
  904. let num = 0;
  905. item.treeList &&
  906. item.treeList.map((ktem) => {
  907. if (ktem.name.indexOf(jtem.name) > -1) {
  908. num = ktem.value;
  909. }
  910. });
  911. seriesList[index].data.push(num);
  912. });
  913. });
  914. // console.log('page2echarts02 seriesList',seriesList)
  915. this.page2Char2.series = seriesList;
  916. //数量过小时隐藏滚动
  917. if (this.page2Char2.xAxis.data.length <= 5) {
  918. this.page2Char2.dataZoom[0].show = false;
  919. } else {
  920. this.page2Char2.dataZoom[0].show = true;
  921. }
  922. let charUuid = this.$refs.page2Char2.mid;
  923. this.$refs.page2Char2.intChar(charUuid);
  924. })
  925. .catch((err) => {
  926. console.log('getPage2echarts02 err', err);
  927. });
  928. },
  929. getPage2echarts03() {
  930. let param = {
  931. smallNumber: this.xiaobaninput,
  932. cityId: this.$store.state.addr.selectCity.areaId,
  933. countyId: this.$store.state.addr.selectDistrict.areaId,
  934. townId: this.$store.state.addr.selectStreet.areaId,
  935. courseId: this.$store.state.addr.selectProject.ProjectID
  936. };
  937. page2echarts03(param)
  938. .then((res) => {
  939. // console.log('res',res);
  940. // this.page2Char2 = res.data;
  941. // console.log('this.page2Char2.series', this.page2Char2.series);
  942. this.page2Char3.xAxis.data = [];
  943. this.page2Char3.series = [];
  944. const rows = res.data;
  945. // console.log(rows)
  946. // x坐标
  947. this.page2Char3.xAxis.data = rows.map((item) => {
  948. return item.smallNumber;
  949. });
  950. // console.log('x坐标', this.page2Char2.xAxis.data)
  951. // 获取所有项
  952. let seriesList = rows.map((item) => {
  953. return item.treeList || [];
  954. });
  955. // 数组扁平化
  956. seriesList = seriesList.flat();
  957. // 去重
  958. let obj = {};
  959. seriesList = seriesList.reduce((newArr, next) => {
  960. obj[next.name] ? '' : (obj[next.name] = true && newArr.push(next));
  961. return newArr;
  962. }, []);
  963. // console.log('seriesList',seriesList);
  964. seriesList.sort((star, next) => {
  965. // 按name的指定顺序排序,不排序可以删掉
  966. var order = ['杉木', '马尾松', '软阔', '硬阔'];
  967. return order.indexOf(star.name) - order.indexOf(next.name);
  968. });
  969. seriesList = seriesList.map((item, index) => {
  970. let itemColor = null;
  971. if (item.name == '杉木' || item.name == '杉') {
  972. itemColor = colorArr[0];
  973. } else if (item.name == '马尾松' || item.name == '马') {
  974. itemColor = colorArr[1];
  975. } else if (item.name == '软阔' || item.name == '软') {
  976. itemColor = colorArr[2];
  977. } else if (item.name == '硬阔' || item.name == '硬') {
  978. itemColor = colorArr[3];
  979. }
  980. return {
  981. name: item.name,
  982. type: 'bar',
  983. stack: 'total',
  984. label: {
  985. show: false
  986. },
  987. emphasis: {
  988. focus: 'series'
  989. },
  990. data: [],
  991. itemStyle: {
  992. normal: { color: itemColor || 'auto' }
  993. }
  994. };
  995. });
  996. // console.log(seriesList)
  997. rows.forEach((item) => {
  998. seriesList.forEach((jtem, index) => {
  999. let num = 0;
  1000. item.treeList &&
  1001. item.treeList.map((ktem) => {
  1002. if (ktem.name.indexOf(jtem.name) > -1) {
  1003. num = ktem.value;
  1004. }
  1005. });
  1006. seriesList[index].data.push(num);
  1007. });
  1008. });
  1009. // console.log(seriesList)
  1010. this.page2Char3.series = seriesList;
  1011. //数量过小时隐藏滚动
  1012. if (this.page2Char3.xAxis.data.length <= 5) {
  1013. this.page2Char3.dataZoom[0].show = false;
  1014. } else {
  1015. this.page2Char3.dataZoom[0].show = true;
  1016. }
  1017. let charUuid = this.$refs.page2Char3.mid;
  1018. this.$refs.page2Char3.intChar(charUuid);
  1019. })
  1020. .catch((err) => {
  1021. console.log('getPage2echarts03 err', err);
  1022. });
  1023. },
  1024. getPage5numerical() {
  1025. let param = {
  1026. cityId: this.$store.state.addr.selectCity.areaId,
  1027. countyId: this.$store.state.addr.selectDistrict.areaId,
  1028. townId: this.$store.state.addr.selectStreet.areaId
  1029. };
  1030. page5numerical(param)
  1031. .then((res) => {
  1032. // console.log('res',res);
  1033. this.page5numerical = res.data;
  1034. })
  1035. .catch((err) => {
  1036. console.log('echarts01 err', err);
  1037. });
  1038. },
  1039. getTypeSlideData() {
  1040. let param = {
  1041. cityId: this.$store.state.addr.selectCity.areaId,
  1042. countyId: this.$store.state.addr.selectDistrict.areaId,
  1043. townId: this.$store.state.addr.selectStreet.areaId
  1044. };
  1045. typeSlideApi(param)
  1046. .then((res) => {
  1047. this.typeSlideData = sliceArray(res.data, 3);
  1048. // console.log(' this.typeSlideData', this.typeSlideData);
  1049. })
  1050. .catch((err) => {
  1051. console.log('getTypeSlideData err', err);
  1052. });
  1053. },
  1054. getPage5echarts01() {
  1055. let param = {
  1056. cityId: this.$store.state.addr.selectCity.areaId,
  1057. countyId: this.$store.state.addr.selectDistrict.areaId,
  1058. townId: this.$store.state.addr.selectStreet.areaId
  1059. };
  1060. page5echarts01(param)
  1061. .then((res) => {
  1062. // console.log('res',res);
  1063. // this.page5Char1 = res.data;
  1064. this.page5Char1.xAxis.data = res.data.map((item) => {
  1065. return item.baseName;
  1066. });
  1067. this.page5Char1.series[0].data = res.data.map((item) => {
  1068. return item.baseArea;
  1069. });
  1070. //数量过小时隐藏滚动
  1071. if (this.page5Char1.xAxis.data.length <= 5) {
  1072. this.page5Char1.dataZoom[0].show = false;
  1073. } else {
  1074. this.page5Char1.dataZoom[0].show = true;
  1075. }
  1076. let charUuid = this.$refs.page5Char1.mid;
  1077. this.$refs.page5Char1.intChar(charUuid);
  1078. })
  1079. .catch((err) => {
  1080. console.log('getPage5echarts01 err', err);
  1081. });
  1082. },
  1083. getPage5echarts02() {
  1084. let param = {
  1085. cityId: this.$store.state.addr.selectCity.areaId,
  1086. countyId: this.$store.state.addr.selectDistrict.areaId,
  1087. townId: this.$store.state.addr.selectStreet.areaId
  1088. };
  1089. page5echarts02(param)
  1090. .then((res) => {
  1091. // console.log('res',res);
  1092. // this.page5Char2 = res.data;
  1093. this.page5Char2.xAxis.data = res.data.map((item) => {
  1094. return item.name;
  1095. });
  1096. this.page5Char2.series[0].data = res.data.map((item) => {
  1097. return item.number;
  1098. });
  1099. //数量过小时隐藏滚动
  1100. if (this.page5Char2.xAxis.data.length <= 5) {
  1101. this.page5Char2.dataZoom[0].show = false;
  1102. } else {
  1103. this.page5Char2.dataZoom[0].show = true;
  1104. }
  1105. let charUuid = this.$refs.page5Char2.mid;
  1106. this.$refs.page5Char2.intChar(charUuid);
  1107. })
  1108. .catch((err) => {
  1109. console.log('getPage5echarts02 err', err);
  1110. });
  1111. },
  1112. getPage6numerical() {
  1113. let param = {
  1114. cityId: this.$store.state.addr.selectCity.areaId,
  1115. countyId: this.$store.state.addr.selectDistrict.areaId,
  1116. townId: this.$store.state.addr.selectStreet.areaId
  1117. };
  1118. //第一屏统计
  1119. page6numerical(param)
  1120. .then((res) => {
  1121. // console.log('res',res);
  1122. this.page6numerical = res.data;
  1123. })
  1124. .catch((err) => {
  1125. console.log('getPage6numerical err', err);
  1126. });
  1127. },
  1128. getPage6echarts01() {
  1129. let param = {
  1130. cityId: this.$store.state.addr.selectCity.areaId,
  1131. countyId: this.$store.state.addr.selectDistrict.areaId,
  1132. townId: this.$store.state.addr.selectStreet.areaId
  1133. };
  1134. page6echarts01(param)
  1135. .then((res) => {
  1136. // console.log('res',res);
  1137. // this.page6Char1 = res.data;
  1138. // this.page6Char1.xAxis[0].data = [];
  1139. // this.page6Char1.series[0].data = [];
  1140. // this.page6Char1.series[1].data = [];
  1141. // this.page6Char1.series[2].data = [];
  1142. // res.data &&
  1143. // res.data.forEach((element) => {
  1144. // this.page6Char1.xAxis[0].data.push(element.villageName);
  1145. // this.page6Char1.series[0].data.push(element.fireCount);
  1146. // this.page6Char1.series[1].data.push(element.cutCount);
  1147. // this.page6Char1.series[2].data.push(element.pestCount);
  1148. // });
  1149. this.page6Char1.xAxis.data = [];
  1150. this.page6Char1.series[0].data = [];
  1151. this.page6Char1.series[1].data = [];
  1152. this.page6Char1.series[2].data = [];
  1153. this.page6Char1.series[3].data = [];
  1154. const rows = res.data;
  1155. // console.log(rows)
  1156. // x坐标
  1157. this.page6Char1.xAxis.data = rows.map((item) => {
  1158. return item.villageName;
  1159. });
  1160. rows.forEach((element) => {
  1161. this.page6Char1.series[0].data.push(element.pestCount);
  1162. this.page6Char1.series[1].data.push(element.fireCount);
  1163. this.page6Char1.series[2].data.push(element.cutCount);
  1164. this.page6Char1.series[3].data.push(element.stealCount);
  1165. });
  1166. // console.log('x坐标', this.page6Char1.xAxis.data)
  1167. //数量过小时隐藏滚动
  1168. if (this.page6Char1.xAxis.data.length <= 5) {
  1169. this.page6Char1.dataZoom[0].show = false;
  1170. } else {
  1171. this.page6Char1.dataZoom[0].show = true;
  1172. }
  1173. let charUuid = this.$refs.page6Char1.mid;
  1174. this.$refs.page6Char1.intChar(charUuid);
  1175. })
  1176. .catch((err) => {
  1177. console.log('getPage6echarts01 err', err);
  1178. });
  1179. },
  1180. getPage6echarts02() {
  1181. let param = {
  1182. cityId: this.$store.state.addr.selectCity.areaId,
  1183. countyId: this.$store.state.addr.selectDistrict.areaId,
  1184. townId: this.$store.state.addr.selectStreet.areaId
  1185. };
  1186. page6echarts02(param)
  1187. .then((res) => {
  1188. const rows = res.data;
  1189. // console.log(rows)
  1190. // x坐标
  1191. this.page6Char2.xAxis.data = [];
  1192. this.page6Char2.series[0].data = [];
  1193. this.page6Char2.series[1].data = [];
  1194. this.page6Char2.series[2].data = [];
  1195. this.page6Char2.xAxis.data = rows.map((item) => {
  1196. return item.month;
  1197. });
  1198. rows.forEach((element) => {
  1199. // console.log('element',element.eventList);
  1200. this.page6Char2.series[0].data.push(element.eventList[0].value);
  1201. this.page6Char2.series[1].data.push(element.eventList[1].value);
  1202. this.page6Char2.series[2].data.push(element.eventList[2].value);
  1203. });
  1204. let charUuid = this.$refs.page6Char2.mid;
  1205. this.$refs.page6Char2.intChar(charUuid);
  1206. })
  1207. .catch((err) => {
  1208. console.log('page6echarts02 err', err);
  1209. });
  1210. },
  1211. xiaobansearch() {
  1212. // console.log('xiaobansearch');
  1213. this.getRightScrollData();
  1214. this.getPageData();
  1215. },
  1216. projectSearch() {
  1217. // console.log('projectSearch');
  1218. this.getProjectScrollData();
  1219. // this.getPageData();
  1220. },
  1221. basesearch() {
  1222. // console.log('xiaobansearch');
  1223. this.getBaseList();
  1224. this.getPageData();
  1225. },
  1226. scrollBoardClick(row) {
  1227. console.log(row);
  1228. let param = {
  1229. id: row.id
  1230. };
  1231. smallClassDetail(param).then((res) => {
  1232. this.changeSearchSmallClass(res.data);
  1233. this.alarData = res.data;
  1234. // if (this.$store.state.addr.mapLevel == 'city') {
  1235. // this.jumpDistrict();
  1236. // } else {
  1237. // this.vuexCityList.forEach((element) => {
  1238. // if (res.data.cityId === element.areaId) {
  1239. // this.changeSelectCity({
  1240. // value: element.areaCode,
  1241. // label: res.data.cityName,
  1242. // areaId: element.areaId
  1243. // });
  1244. // this.$store.dispatch('searchArea', {
  1245. // parentId: element.areaCode.substring(0, 6),
  1246. // name: res.data.cityName,
  1247. // mapLevel: 'city'
  1248. // });
  1249. // }
  1250. // });
  1251. // }
  1252. });
  1253. },
  1254. removeAllClass(className) {
  1255. //找到所有包含className的结点
  1256. let nodeList = document.querySelectorAll(
  1257. `.dv-scroll-board .${className}`
  1258. );
  1259. // let nodeList = document.getElementsByClassName('row-item');
  1260. //删除这些标签对应的class
  1261. Array.prototype.forEach.call(nodeList, (el) => {
  1262. el && el.classList.remove(className);
  1263. });
  1264. },
  1265. scrollProjectClick(e) {
  1266. // 点击添加class
  1267. // let removeAllClass = (className)=>{
  1268. // //找到所有包含className的结点
  1269. // let nodeList = document.querySelectorAll(`.dv-scroll-board .${className}`);
  1270. // // let nodeList = document.getElementsByClassName('row-item');
  1271. // //删除这些标签对应的class
  1272. // Array.prototype.forEach.call(nodeList,(el)=>{
  1273. // el.classList.remove(className)
  1274. // })
  1275. // }
  1276. let proClass = document.getElementsByClassName('row-item');
  1277. // proClass[e.rowIndex].style.background = 'rgb(4, 145, 110)';
  1278. this.removeAllClass('active');
  1279. // console.log('proClass',proClass);
  1280. // proClass[e.rowIndex]&&proClass[e.rowIndex].classList.add('active');
  1281. let rowId = e.row[4];
  1282. console.log(rowId);
  1283. this.changeSelectProject({ ProjectID: rowId, ProjectName: e.row[0] });
  1284. document.getElementById(rowId).classList.add('active');
  1285. let param = {
  1286. courseId: rowId
  1287. // pageNum: 1,
  1288. // pageSize: 50
  1289. };
  1290. projectSmallClass(param).then((res) => {
  1291. if (res.code == 200) {
  1292. this.getProjectSmallClassMap(res.rows);
  1293. }
  1294. });
  1295. },
  1296. jumpDistrict() {
  1297. if (this.vuexDistrictList) {
  1298. this.vuexDistrictList.forEach((element) => {
  1299. if (this.alarData.countyId === element.areaId) {
  1300. this.changeSelectDistrict({
  1301. value: element.areaCode,
  1302. label: this.alarData.cityName,
  1303. areaId: element.areaId,
  1304. prop: '2'
  1305. });
  1306. this.$store.dispatch('searchArea', {
  1307. parentId: element.areaCode.substring(0, 6),
  1308. name: element.areaName,
  1309. mapLevel: 'district'
  1310. });
  1311. }
  1312. });
  1313. }
  1314. },
  1315. scrollOut(e) {
  1316. // console.log(e);
  1317. this.changeSearchSmallClass({ name: false });
  1318. },
  1319. scrollOutPro(e) {
  1320. // let proClass = document.getElementsByClassName('row-item')
  1321. // proClass[e.rowIndex].style.background = '';
  1322. },
  1323. scrollBaseListClick(e) {
  1324. let param = {
  1325. baseId: e.row[3]
  1326. };
  1327. financeBaseDetail(param).then((res) => {
  1328. this.changeBaseDetail(res.data);
  1329. });
  1330. },
  1331. baseListClick() {
  1332. this.changeBaseDetail({ name: false });
  1333. },
  1334. scrollEventClick(e) {
  1335. let param = {
  1336. id: e.row[4]
  1337. };
  1338. eventDetail(param).then((res) => {
  1339. this.changeEvenData(res.data);
  1340. });
  1341. },
  1342. scrollEventOut() {
  1343. this.changeEvenData({ name: false });
  1344. },
  1345. toggleShowScrollBoard() {
  1346. this.showScrollBoard = !this.showScrollBoard;
  1347. },
  1348. tabLink(e) {
  1349. this.cur = e;
  1350. if (this.cur == '1') {
  1351. this.removeAllClass('active');
  1352. this.tableScroll(false);
  1353. } else {
  1354. clearInterval(this.timer);
  1355. }
  1356. },
  1357. classFunc(index) {
  1358. if (this.cur == index) {
  1359. return `active active${index}`;
  1360. }
  1361. },
  1362. startScroll() {
  1363. this.tableScroll(false);
  1364. },
  1365. stopScroll() {
  1366. this.tableScroll(true);
  1367. },
  1368. //滚动方法
  1369. tableScroll(stop) {
  1370. if (stop) {
  1371. clearInterval(this.timer);
  1372. return;
  1373. }
  1374. const table = this.$refs.tableFrom;
  1375. const divData = table.bodyWrapper;
  1376. this.timer = setInterval(() => {
  1377. divData.scrollTop += 1;
  1378. if (
  1379. divData.clientHeight + divData.scrollTop + 1 >
  1380. divData.scrollHeight
  1381. ) {
  1382. if (table.tableData.length > 5) {
  1383. divData.scrollTop = 0;
  1384. }
  1385. }
  1386. }, 80);
  1387. }
  1388. }
  1389. };
  1390. </script>
  1391. <style lang='scss' scoped>
  1392. @import url(./index.scss);
  1393. .tab-box {
  1394. // background-color: rgba(1, 33, 35, 0.7);
  1395. // background: linear-gradient(90deg, rgba(0,99,113,0.9) 0%, #00ADAF 54%, rgba(0,50,57,0.9) 100%);
  1396. background-color: rgba(0, 161, 173, 0.2);
  1397. box-shadow: inset 0px -2px 9px -3px rgba(0, 250, 253, 0.4);
  1398. width: 100%;
  1399. .tab-btn {
  1400. float: left;
  1401. width: 148px;
  1402. height: 46px;
  1403. line-height: 46px;
  1404. text-align: center;
  1405. color: rgba(255, 255, 255, 0.6);
  1406. &:first-of-type {
  1407. text-indent: -10px;
  1408. }
  1409. cursor: pointer;
  1410. &.active0 {
  1411. background: url(../assets/img/tab-btn-first.png) no-repeat;
  1412. }
  1413. &.active1 {
  1414. background: url(../assets/img/tab-btn-center.png) no-repeat;
  1415. transform: translateX(-22px);
  1416. }
  1417. &.active {
  1418. background-size: 100%;
  1419. color: #00fafd;
  1420. }
  1421. .tab-span {
  1422. display: inline-block;
  1423. }
  1424. }
  1425. }
  1426. .tab-class-search {
  1427. // display: flex;
  1428. height: 40px;
  1429. width: 100%;
  1430. align-items: center;
  1431. margin: 0 15px;
  1432. }
  1433. /deep/ .row-item {
  1434. line-height: normal !important;
  1435. align-items: center;
  1436. }
  1437. /deep/ .dv-scroll-board .rows .ceil {
  1438. white-space: normal;
  1439. overflow: unset;
  1440. text-overflow: unset;
  1441. display: grid;
  1442. height: 100%;
  1443. align-items: center;
  1444. }
  1445. .right_xiaoban {
  1446. background-color: rgba(1, 33, 35, 0.7);
  1447. display: flex;
  1448. flex-direction: column;
  1449. /* justify-content: right; */
  1450. // width: 59%;
  1451. float: right;
  1452. }
  1453. .rowClass {
  1454. box-shadow: inset 0px 0px 31px 1px rgba(0, 250, 253, 0.4);
  1455. border-radius: 0px 0px 0px 0px;
  1456. opacity: 1;
  1457. border: 1px solid rgba(0, 250, 253, 1);
  1458. background: #04916e;
  1459. }
  1460. .selectBox {
  1461. display: flex;
  1462. align-items: center;
  1463. justify-content: center;
  1464. }
  1465. /deep/ .el-table thead {
  1466. color: #fff;
  1467. }
  1468. /deep/ .el-table tr {
  1469. background-color: transparent;
  1470. }
  1471. /deep/ .el-table th.el-table__cell {
  1472. background-color: rgba(8, 238, 255, 0.3);
  1473. }
  1474. /deep/ .el-table {
  1475. background-color: transparent;
  1476. color: #08eeff;
  1477. }
  1478. /deep/ .el-table td.el-table__cell,
  1479. .el-table th.el-table__cell.is-leaf {
  1480. border-bottom: unset;
  1481. }
  1482. /deep/ .el-table th.el-table__cell.is-leaf {
  1483. border-bottom: unset;
  1484. }
  1485. /deep/
  1486. .el-table--striped
  1487. .el-table__body
  1488. tr.el-table__row--striped
  1489. td.el-table__cell {
  1490. background-color: rgba(0, 175, 169, 0.15);
  1491. }
  1492. /deep/ .el-table::before {
  1493. background-color: transparent;
  1494. }
  1495. /deep/ .el-table__body .el-table__row.hover-row td {
  1496. background-color: rgba(255, 170, 0, 0.20) !important;
  1497. cursor: pointer;
  1498. }
  1499. /deep/ .el-table tbody tr:hover > td {
  1500. background-color: rgba(255, 170, 0, 0.20) !important;
  1501. cursor: pointer;
  1502. }
  1503. .el-table {
  1504. /deep/ .el-table__body-wrapper::-webkit-scrollbar {
  1505. width: 6px; /*滚动条宽度*/
  1506. height: 10px; /*滚动条高度*/
  1507. }
  1508. /*定义滚动条轨道 内阴影+圆角*/
  1509. /deep/ .el-table__body-wrapper::-webkit-scrollbar-track {
  1510. box-shadow: 0px 1px 3px rgba(255, 255, 255, 0.1) inset; /*滚动条的背景区域的内阴影*/
  1511. border-radius: 10px; /*滚动条的背景区域的圆角*/
  1512. background-color: rgba(255, 255, 255, 0.1); /*滚动条的背景颜色*/
  1513. }
  1514. /*定义滑块 内阴影+圆角*/
  1515. /deep/ .el-table__body-wrapper::-webkit-scrollbar-thumb {
  1516. box-shadow: 0px 1px 3px rgba(8, 238, 255, 0.3) inset; /*滚动条的内阴影*/
  1517. border-radius: 10px; /*滚动条的圆角*/
  1518. background-color: rgba(8, 238, 255, 0.3); /*滚动条的背景颜色*/
  1519. }
  1520. }
  1521. /deep/ .el-table__body tr.current-row > td.el-table__cell {
  1522. background-color: transparent;
  1523. }
  1524. .scroll-board-table-box {
  1525. height: calc(100vh - var(--header-height) - 200px);
  1526. -webkit-box-sizing: border-box;
  1527. box-sizing: border-box;
  1528. padding: 0 15px;
  1529. }
  1530. </style>