investHome2.js 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228
  1. let app = new Vue({
  2. el: '#app',
  3. data() {
  4. return {
  5. year: '2022',
  6. time: '',
  7. timer: '',
  8. mapName: 'shanxi',
  9. geoCoordMap: {},
  10. config1: {
  11. number: [100],
  12. content: '{nt}个',
  13. },
  14. storageRecordConfig: {
  15. header: [],
  16. headerBGC: '#05507b33',
  17. oddRowBGC: '#05507b33',
  18. evenRowBGC: '',
  19. headerHeight: '40',
  20. rowNum: 4,
  21. align: ['center'],
  22. data: [
  23. ['工程建设项目'],
  24. ['施工图设计'],
  25. ['工程建设项目'],
  26. ['施工图设计'],
  27. ['工程建设项目'],
  28. ],
  29. },
  30. companyList: [
  31. { name: '山西焦煤' },
  32. { name: '晋能控股' },
  33. { name: '华新燃气' },
  34. { name: '山西建投' },
  35. { name: '潞安化工' },
  36. { name: '华远陆港' },
  37. { name: '航产集团' },
  38. { name: '大地控股' },
  39. { name: '国新能源' },
  40. { name: '汾酒集团' },
  41. { name: '云时代' },
  42. { name: '神农科技' },
  43. { name: '华阳新材' },
  44. { name: '华舰体育' },
  45. { name: '交控集团' },
  46. { name: '文旅集团' },
  47. { name: '水控集团' },
  48. { name: '太重集团' },
  49. ],
  50. }
  51. },
  52. created() {
  53. this.time = formatDate()
  54. this.timer = setInterval(() => {
  55. this.time = formatDate()
  56. }, 1000)
  57. },
  58. beforeDestroy() {
  59. if (this.timer) {
  60. clearInterval(this.timer);
  61. }
  62. },
  63. mounted() {
  64. // 左侧图表
  65. setTimeout(() => {
  66. this.initChartL1()
  67. this.initChartL2()
  68. this.initChartL3()
  69. this.initChartL4()
  70. this.initChartR1()
  71. this.initChartR2()
  72. this.initChartR3()
  73. this.initChartR4()
  74. }, 0)
  75. },
  76. methods: {
  77. convertData(data) {
  78. var res = []
  79. for (var i = 0; i < data.length; i++) {
  80. var geoCoord = this.geoCoordMap[data[i].name]
  81. if (geoCoord) {
  82. res.push({
  83. name: data[i].name,
  84. value: geoCoord.concat(data[i].value),
  85. })
  86. }
  87. }
  88. return res
  89. },
  90. initChinaChart() {
  91. var data = [
  92. { name: '吕梁市', value: 150 },
  93. { name: '大同市', value: 190 },
  94. { name: '忻州市', value: 140 },
  95. { name: '朔州市', value: 160 },
  96. { name: '晋中市', value: 100 },
  97. { name: '太原市', value: 300 },
  98. { name: '临汾市', value: 190 },
  99. { name: '长治市', value: 100 },
  100. { name: '晋城市', value: 280 },
  101. { name: '运城市', value: 180 },
  102. { name: '阳泉市', value: 110 },
  103. ]
  104. var moveLine = {
  105. normal: [
  106. {
  107. fromName: '太原市',
  108. toName: '吕梁市',
  109. coords: [
  110. [112.3352, 37.9413],
  111. [111.3574, 37.7325],
  112. ],
  113. },
  114. {
  115. fromName: '太原市',
  116. toName: '忻州市',
  117. coords: [
  118. [112.3352, 37.9413],
  119. [112.4561, 38.8971],
  120. ],
  121. },
  122. {
  123. fromName: '太原市',
  124. toName: '临汾市',
  125. coords: [
  126. [112.3352, 37.9413],
  127. [111.4783, 36.1615],
  128. ],
  129. },
  130. {
  131. fromName: '太原市',
  132. toName: '阳泉市',
  133. coords: [
  134. [112.3352, 37.9413],
  135. [113.4778, 38.0951],
  136. ],
  137. },
  138. {
  139. fromName: '太原市',
  140. toName: '晋中市',
  141. coords: [
  142. [112.3352, 37.9413],
  143. [112.7747, 37.37],
  144. ],
  145. },
  146. {
  147. fromName: '太原市',
  148. toName: '运城市',
  149. coords: [
  150. [112.3352, 37.9413],
  151. [111.1487, 35.2002],
  152. ],
  153. },
  154. {
  155. fromName: '太原市',
  156. toName: '大同市',
  157. coords: [
  158. [112.3352, 37.9413],
  159. [113.7854, 39.8035],
  160. ],
  161. },
  162. {
  163. fromName: '太原市',
  164. toName: '晋城市',
  165. coords: [
  166. [112.3352, 37.9413],
  167. [112.7856, 35.6342],
  168. ],
  169. },
  170. {
  171. fromName: '太原市',
  172. toName: '长治市',
  173. coords: [
  174. [112.3352, 37.9413],
  175. [112.8625, 36.4746],
  176. ],
  177. },
  178. {
  179. fromName: '太原市',
  180. toName: '朔州市',
  181. coords: [
  182. [112.3352, 37.9413],
  183. [113.0713, 39.6991],
  184. ],
  185. },
  186. ],
  187. }
  188. /*获取地图数据*/
  189. let myChart = echarts.init(this.$refs['echarts-map'])
  190. echarts.registerMap('shanxi', {
  191. type: 'FeatureCollection',
  192. features: [
  193. {
  194. type: 'Feature',
  195. id: '1409',
  196. properties: { name: '忻州市', cp: [112.4561, 38.8971], childNum: 14 },
  197. geometry: {
  198. type: 'Polygon',
  199. coordinates: [
  200. '@@Vx@lnbn¦WlnnUšmš°š²VšV‚VVVnUn„ºlz@l„„@Jƒ@kXWVXl@Lƒa@„ƒKUL„ŽlbnKlLnK‚LnKÆXn°šbVV@bUVl°Un@LnaVJUbW@UX²l‚@ČwlVVIšWnkÆa°„„anV‚Kn°™UW¯@™aVUVk@Un@„aV@ValwUanmWU„k@WVUUanaVwnLVl°@nk@mVU@UVK@w„LVKVU@ƒ„K@UUKVUV@@bnL„a‚V„aôšlIXmlKX_°KVV@bVV„@šzV`kblI„V„Ul‚šL@bnV@V„Ċll„„VlIXW@k„a‚U²blKšVnIlJ„albXXlWVn°JnšnL@l@XlJlaX@„X˜W²@l_VmnKšU„blU@mnkVK„¯@U@ƒma@kX¥VƒmakkƒLƒa@aƒ@WIUUVXWWnk@a°a@kkm@kUUmJm@WUUUIk`m@V—kaWWkX™KmƒXk¯ƒ@WKƒLkak@±bƒw@ƒaƒa@akaƒ@ma¯@ƒL—KÇÅkKWbkmġ™±ÅUƒLUK™VVkƒm¯LUVVbƒ„UwUW¯bm„ƒULƒxWJ—@ƒklmkUm@@KnwVkVK@akwƒ@@a¯bƒKkn›VUI™b¯mmbk@UbmKUL@xUUƒ@klmLUŽlVXI‚VVVUVUœU`mLXVWbXnW`Ų°xmŽxU@mĉƒƒwU@mbU@UƒmbkVW¦kJ™@ƒX@`¯Im@UlUVVnb@bWJXnmbƒJUU™UUaƒ@UamIkaƒxƒ@@x@b',
  201. ],
  202. encodeOffsets: [[113614, 39657]],
  203. },
  204. },
  205. {
  206. type: 'Feature',
  207. id: '1411',
  208. properties: { name: '吕梁市', cp: [111.3574, 37.7325], childNum: 13 },
  209. geometry: {
  210. type: 'Polygon',
  211. coordinates: [
  212. '@@@a@w„@„wlbnJVb„@VbšVVV„InaWmXI@a‚aUmVUVkn@°J@_„Wš@lIX¥lUnaV„V@naV@„xĊ„n‚V@‚wn¯wƱX_WmXaWUnKV_V›VUUUUWJkUVnKlk¯™@@kmKUaŁ±KkU@WmI@WUIlUUmVwXƒ‚w@ƒUlUVwœV‚@„Lnb‚W@anU@UšaVkô@l»n@na˜JnUÈLVaƃUUVm„VKVƒ²L@mU_lK@UVWkU‚a@a@U¯aUaƒÑóÑUb™„ƒKk@@aƒk¯mVaUwVƒÑkWUmK@UUKmXUWÝwUa™LUU@aWJUUU@Ua݄U@WL@VKVaVI@WnU@alIVKƒƒ@kIƒmIkJ@™m@ƒ™@@_™K@xƒ@kaW@U„@Vmn@ŽUK@mIƒJUXV¤XXWlkKƒkkK@XmJVakImJU@ó™¯LWKUV@nUVƒLkxmKkLma@kXKmmƒLƒab™LmK@V@mXVÆUxƒX@`nL„aV@@VmLUVnLlLš˜„b@„šŽ°²nx@b‚VUxlb@V¯bUV@zV‚XVĊXVx@lVn@VnnmŽUš@LlJXVƒz¯VWVXbšV@bmn™VUVk„Çþń@XVxmbUlV„Uln„W„@„Xl‚@VLXÒ@bÞJ°¦„L˜ò„@nU‚b@°„X@ŽXbmVU„V„nb@x‚x',
  213. ],
  214. encodeOffsets: [[113614, 39657]],
  215. },
  216. },
  217. {
  218. type: 'Feature',
  219. id: '1410',
  220. properties: { name: '临汾市', cp: [111.4783, 36.1615], childNum: 17 },
  221. geometry: {
  222. type: 'Polygon',
  223. coordinates: [
  224. '@@nW‚@@UnLšK‚a„b„KnnWL@lnblKnLlw„KVU@mVUXL°KôšV@nIlJUbnI@WlL„llLXkWWU£VW„InJ‚@VL@nm@UVƒX@lb„@@wšL@`‚@„šn@V@lw„@n„VmVX„WmwnUlƒœa@_lK„wVlUn°xVKVXXWlUšVVI@K@K„n°KœwlVlU@kna@V_„Wn‚m„UVm@kXml_@m„LlKXw°m@_ôJVUV@X™l@UaV@Va°I„lk»VwUkVmwUmmVn@V¯@KƒU—wmK@U¯wUVÝ@mJƒU—nWK™@@UnKVa„_lykUmKÛnm@™x@ƒUUlwVk™ƒXW@ƒa@Uƒ@@K@ƒkIV™nammVakUlƒ@wX@@kƒ™¯@ƒVVbml@„„°UbULmlVbnbÅK±VƒKVXUJWa@ULWaUU@@U@aWK@UkxUKƒLUUUJ±UkL@V±kk@kam@UV@l@LWl@n@VVUx„LlUUx@VUV™U@aƒIUl™L@°mLU‚ƒbkUUaWUUaUU@aWK—LWJ@bUL@VUVVbU@m@a@kmKmnĉlUK™XƒWUblb—xmIkƒƒU@xWb@lkšVx™LXŽmzVV@bklVVUzm˜@bk„@Vx@xlŽU„@lUbVnl@„Wxnl@n@ŽUbV„mL‚mƒb@`X@lUX@@xlnkLWaUJnnWV™Vn@l„@bULVV@l™V@XnJVX',
  225. ],
  226. encodeOffsets: [[113063, 37784]],
  227. },
  228. },
  229. {
  230. type: 'Feature',
  231. id: '1407',
  232. properties: { name: '晋中市', cp: [112.7747, 37.37], childNum: 11 },
  233. geometry: {
  234. type: 'Polygon',
  235. coordinates: [
  236. '@@@šlInJ„lJ„@‚„ULkJ@bmV@XUJUb‚L@UXKV@ރVbV@VVXI@bVVšKVbÞxVXnWVL@VnLV‚lX„ÒUŽVxUb°n„l@bl@„LšƒVaô҄ÒVb°b@VnLnnV@lmn@lb„U„V@„‚JœUVV‚Xkl@lUzmJ@xšXkl‚bUn„JVšUb„nU‚lb„V@nlLX@lakšV`Ub°š@XVJnU‚L²KlxnI@KV@lbUbVV„KnVl@„zlm@Uš@nŽšI@WUaVl@@mVU„@XkW@ƒnkVKVƒ„_Vw„y@knwVa‚@XalU„@šVnml@„X@V„L‚KVaÞbnnlJšI„mVKn„VVVInVlU„@„m@™mXK@UmyUI@mWUUakamw@wUwmLkakwVƒmK™w@wUam£y@am_ƒW@™UU@knmm„amU@WUa@knw@ƒUUUUV@nƒJm@mVUkKVUUUkKmwƒKULƒKUImV@lUn™nŽm@mbUK@°™bUnmbUmkkƒWUb@am@UXkK@a±@™V™@ĉř„V‚UXVxUVkLWl¯@@bULUlm@@nm`—XƒlWakIkm›VUbUL@Vm@kIƒ@@Kšm@—VaX‚I@W@aU@kUƒVU_™KƒbƒJkkǎ™b@nkKmL™wÅW@kVUUƒVU@WUIƒJmIXmma@_kyVaUUlkUm@ƒkU›x¯Lƒm@L@LUJ™UkVWXUWUL¯wVmUkƒxkL@`›bk„mVnxƒXUWUnmƒƒ@kxU@',
  237. ],
  238. encodeOffsets: [[114087, 37682]],
  239. },
  240. },
  241. {
  242. type: 'Feature',
  243. id: '1408',
  244. properties: { name: '运城市', cp: [111.1487, 35.2002], childNum: 13 },
  245. geometry: {
  246. type: 'Polygon',
  247. coordinates: [
  248. '@@„Vl„nJ˜wkaVa„XšWVLĊknmnL‚l@@bn‚V@UaVU@UVK@aXI˜KXL@bVVVbXVVblV„aVnK@¯šKVk„J@bšVVU@UVwkVƒKVwUUm@@Xk@K@kVUn@lbl@²l@UlK²VVIVV„KVLlw@VXL@b@VV@VŽXbVK‚@XbVIUW„L‚U²ÆLmaUankVKVaƒ¯@ƒnkUa„U°@„š‚n@@kWa„UVaXUW@IXKVw@U™ƒ„™WU@W@@UUƒU@mn@ƒ`m@UUULkUmJ™IUƒ@@UƒK@U@›anƒ™ak_@wmKUwmakV™kmK™V™k¯b™wƒ`kwUIÇx¯»ÇaŃmn@@™mƒmUkV@wkKW@kxmL™UkĉLÝk™xÝw¯lóVU„mV@ĀVVX¦W¤kz@`Vx°„²ĸ‚š@„Ul@x„êĸNJ°¤V„VlXLWnXxmV@nUl@„',
  249. ],
  250. encodeOffsets: [[113232, 36597]],
  251. },
  252. },
  253. {
  254. type: 'Feature',
  255. id: '1402',
  256. properties: { name: '大同市', cp: [113.7854, 39.8035], childNum: 8 },
  257. geometry: {
  258. type: 'Polygon',
  259. coordinates: [
  260. '@@²£šyl@Ȑ˜Ė@bĸŽĢbĸ„˜X„a‚KŤnn@ŎôllÈx„nVnÞDŽV@b‚nXllL°KšbVb@J@b—„‚„@ŽU„„xlKXLlKlXk„@Ulk„JlkUƒVKXUƒÇVIVm@_nǚLšašl‚w„VnU@UUwma@aƒaÝaLmUk@@Wƒ@U@@X™wVWÝUUUk@@VmLƒKV»nwUw™aUL@`mzƒJUIVƒUaUw™KUaVIlJôanÑlLVUn@ša„@VV„@@UUwVK°Vn_lJÆLœéW@UUUÅ@»lm@aÞIVwXW˜UUkkm@U@aƒU@mwU£VWU_kWmƒXwW_°yUkkK@UÇK@kkUVymóK—U@KWIƒbUak@mJ@bkbmLkŽ™UmƒkVU„W¦@lnb@„@Vƒ°ULml@nkVƒa™VmLUnk`±@—XƒWW@kbǦXŽ¯„WxI@xmbmxXlWV„„@bŎUz@J‚b@bÞb™ŽU@Wbk@ƒxk@WX¯VۙƒWÝbÝUkVUU@alI@a@akLWa™m@U¯UUmÇL@K@aU@¯VUkƒKmX@`@œkJ@nV‚Ub@lbVÆXVW„ULU`VbkLUV@XWl@bXJ˜@VbV@Vl',
  261. ],
  262. encodeOffsets: [[115335, 41209]],
  263. },
  264. },
  265. {
  266. type: 'Feature',
  267. id: '1404',
  268. properties: { name: '长治市', cp: [112.8625, 36.4746], childNum: 12 },
  269. geometry: {
  270. type: 'Polygon',
  271. coordinates: [
  272. '@@Uk™Lky@I‚JVa@mÞaWšy@_W@_WƒXVlUVwš@nw°K@m„UƒVaƒmVkU@mmmnLVUmKXa™U@IlKVUnK@UmWkX@WV_Vƒ@akU@a„KWIXyƒIUVmUn™Ua@WaXUVKVmkUWVkUƒLU@@VƒbƒKbƒIUmƒ@mbVL—x›WUUkn±V¯wƒbÅJUbmLkbmKÅKƒbVnUbƒV™KUb™KUbmLKmƒb™aƒKkUm@UŽnn‚VnxUVlUxl¼ƒk¯JUbU@Vbk@WšU@UVóI@`¯nWxkLƒK@nk`Wn@lUnƒVnm‚ƒXU`@mb@lkV@„VnklVVUblz@`nbWnnJ„IVJ@XUVV„UV@lÆXšxnKlL@mšaȍll„I„ašLV`„UlVV@@b@XJWUb@˜™n@L„@lJn@@UVKVaœUlnlJXb„k˜Wn_@mn@VkVK@a°@XklKVUUwVWUšƒĊƚ@šU²@@blLVWn@@bVa„XllVnnaVmša@¯VLnan@‚šmVm@knUVJ',
  273. ],
  274. encodeOffsets: [[116269, 37637]],
  275. },
  276. },
  277. {
  278. type: 'Feature',
  279. id: '1406',
  280. properties: { name: '朔州市', cp: [113.0713, 39.6991], childNum: 5 },
  281. geometry: {
  282. type: 'Polygon',
  283. coordinates: [
  284. '@@XXWVXVWnnlnn@èƼ@„„xlš„ŽV„nblšššVŽÈUVl‚š@„blnœL܃ĊmUkU@Ua‚—@WI@aXk@WVUlKUaV_VKXƒWUUÅka@VaU@mlI@›@_nW„LVl°UV@@b@LÈKVn°V@VšnXblK@b@bkJ@bVVlUÞVÞa„Xܚ°UXWl@„wl@XaV@šÝa@aa@IVyƍ@aƒƒXUWknwna@w‚JXw°ƒWÈ¥kI@W@kmKm™¯IUmkXWWkaƒbkImJ™UkL±aVƒb@lWXkJƒUkƒĉkƒ@UmU@a™KkƒVƒUkJlaU_™yƒ@UU@aUU¯LW`kLWnkJó™ƒbUƒbmK@aU@UVVL@VƒL@„UVULƒK@xUL@VUV@nml¯@UkmKUxmbVbUV@XƒlXVmnVbkxUbU@ƒbm@@VUlUVšb°@VX¯šm‚',
  285. ],
  286. encodeOffsets: [[114615, 40562]],
  287. },
  288. },
  289. {
  290. type: 'Feature',
  291. id: '1405',
  292. properties: { name: '晋城市', cp: [112.7856, 35.6342], childNum: 6 },
  293. geometry: {
  294. type: 'Polygon',
  295. coordinates: [
  296. '@@lV„Lšb„an‚LnKVašLVašL„UVaUm„aÆLnLlanKVaÆI„a°x²UlmVVœX˜wUKna„@Vn„J‚a„L„a@UV@@alUkKVKnkmmVwUk„w@ƒ™@kxWUXƒW@@mƒk@aUa@a¯aƒLkKmwkUm@kL@K@aWIXmƒVƒXƒWkUVakL@UVKƒw@aUK@UUKmLU@¯n™KUwVƒUIWJUWmka™@UXƒJƒk@UkmW@kLWKVƒx@bmI@VUaVU@a¯@UUmVKmX@±`kÝKVxUL±akL@V™bƒLkKmVƒ@XWVUbƒVXb@lm@@lW@@xk„lVUbnnmbUšlJ@„@L„@@V„b@‚WXš„UlkxVV@„šwn@ÜmnLlVkzƒ`UbmL@Vš@XL˜m„VnIÞ@VU°x@VnL˜x„V@LU°',
  297. ],
  298. encodeOffsets: [[115223, 36895]],
  299. },
  300. },
  301. {
  302. type: 'Feature',
  303. id: '1401',
  304. properties: { name: '太原市', cp: [112.3352, 37.9413], childNum: 5 },
  305. geometry: {
  306. type: 'Polygon',
  307. coordinates: [
  308. '@@„@VV@wVKnLVal@na°nšaVJœUlm„L°a@b„@lx@bULUlmx@Ln@lVkn„l˜@XI„w‚K„Vnƒ°aVXVx„ƒUaVU°K„nUlšUVL„KÆVš²Ģ‚lnXalLÈƘL„KUaVkUanmWU™a@WwkUWU¯y¯Ñ@anIl@@aVU„m„I„ymUƒLUUVakaU@@LmJkw±LKmVUI@W¯™VaU_l™kbW@kK@mƒUkaVƒmVaU™ƒIVmalk™W@wnIVy@klkWUU›VI@ƒƒUƒVkam@knU@mmmK@bblVUX@VkLV`@n±KU„ULƒ‚UnVVńUbÇKmV—Imbm@k¼ó@Ul™b@VmV@bXmaƒK@›UUxkV‚V@„xW„UxVnkVVJ@XnJ@XlV²LƂVbnL@lš@°',
  309. ],
  310. encodeOffsets: [[114503, 39134]],
  311. },
  312. },
  313. {
  314. type: 'Feature',
  315. id: '1403',
  316. properties: { name: '阳泉市', cp: [113.4778, 38.0951], childNum: 3 },
  317. geometry: {
  318. type: 'Polygon',
  319. coordinates: [
  320. '@@°@nb„@lb@b„b„b‚@„x²al@lb„KXU@m‚kUWkkmUUƒVwV@XUW@™naVklKXblKnL‚ƒnLVanImaXKlL„ašV@U@KUKW„alƒXK@£WKXUV@VU„ƒUUVW„_V™@W@@K„@šƒUƒƒIWmXUmƒULƒn™JkImmÝaUbLƒK@UƒWk@mn™Uƒ@kVWb@Ubmx@lƒzUxƒ`U„ULml@„XWlƒ@UV@nk@U‚Vb@X™Jm™@@Vknƒyk@ƒzƒJƒnUV@bk@mJ@b°Ò°zXVlVXx‚@šbXVmnVbUlVb',
  321. ],
  322. encodeOffsets: [[115864, 39336]],
  323. },
  324. },
  325. ],
  326. UTF8Encoding: true,
  327. })
  328. var mapFeatures = echarts.getMap(this.mapName).geoJson.features
  329. mapFeatures.forEach(v => {
  330. // 地区名称
  331. var name = v.properties.name
  332. // 地区经纬度
  333. this.geoCoordMap[name] = v.properties.cp
  334. })
  335. myChart.setOption({
  336. tooltip: {
  337. padding: 15,
  338. enterable: true,
  339. transitionDuration: 1,
  340. formatter: (params, ticket, callback) => {
  341. let tipHtml = `
  342. <div class="tooltip-cont">
  343. <p>新开工:<span>工程建设项目</span></p>
  344. <p>总投资额:<span>${params.data.value}亿</span></p>
  345. <p>当前阶段:<span>可论证阶段</span></p>
  346. <p>时间节点:<span>2021.10-2022.10</span></p>
  347. </div>`
  348. return tipHtml
  349. },
  350. },
  351. visualMap: {
  352. min: 0,
  353. max: 300,
  354. right: 0,
  355. bottom: 0,
  356. text: ['高', '低'],
  357. textStyle: {
  358. color: '#f1f1f1'
  359. },
  360. realtime: false,
  361. calculable: true,
  362. inRange: {
  363. color: ['lightskyblue', '#2754b7']
  364. }
  365. },
  366. geo: {
  367. show: true,
  368. map: 'shanxi',
  369. layoutCenter: ['50%', '50%'], //地图位置
  370. layoutSize: '100%',
  371. label: {
  372. normal: {
  373. show: false,
  374. },
  375. emphasis: {
  376. show: false,
  377. },
  378. },
  379. roam: false,
  380. itemStyle: {
  381. normal: {
  382. areaColor: '#1946a8',
  383. shadowColor: '#1946a8',
  384. borderWidth: 1, //设置外层边框
  385. borderColor: '#1946a8',
  386. shadowOffsetX: 10,
  387. shadowOffsetY: 5,
  388. shadowBlur: 2,
  389. },
  390. emphasis: {
  391. areaColor: '#1946a8',
  392. borderColor: '#d4bc1d',
  393. borderWidth: 2, //设置外层边框
  394. },
  395. },
  396. },
  397. series: [
  398. {
  399. name: '散点',
  400. type: 'scatter',
  401. coordinateSystem: 'geo',
  402. data: this.convertData(data),
  403. symbolSize: function (val) {
  404. return 10
  405. },
  406. label: {
  407. normal: {
  408. formatter: '{b}',
  409. position: [10, 10],
  410. fontSize: 15,
  411. fontWeight: 600,
  412. fontStyle: 'italic',
  413. color: '#fff',
  414. show: true,
  415. },
  416. emphasis: {
  417. show: true,
  418. },
  419. },
  420. itemStyle: {
  421. normal: {
  422. color: '#000',
  423. borderWidth: 2,
  424. borderColor: '#fff',
  425. },
  426. },
  427. },
  428. {
  429. type: 'map',
  430. map: this.mapName,
  431. geoIndex: 0,
  432. aspectScale: 0.75, //长宽比
  433. showLegendSymbol: true, // 存在legend时显示
  434. label: {
  435. normal: {
  436. show: true,
  437. },
  438. emphasis: {
  439. show: false,
  440. textStyle: {
  441. color: '#fff',
  442. },
  443. },
  444. },
  445. roam: true,
  446. itemStyle: {
  447. normal: {
  448. areaColor: '#031525',
  449. borderColor: '#3B5077',
  450. },
  451. emphasis: {
  452. areaColor: '#2B91B7',
  453. },
  454. },
  455. animation: false,
  456. data: data,
  457. },
  458. {
  459. name: '点',
  460. type: 'scatter',
  461. coordinateSystem: 'geo',
  462. zlevel: 6,
  463. },
  464. {
  465. name: 'Top 5',
  466. type: 'effectScatter',
  467. coordinateSystem: 'geo',
  468. data: this.convertData(
  469. data
  470. .sort(function (a, b) {
  471. return b.value - a.value
  472. })
  473. .slice(0, 5)
  474. ),
  475. symbolSize: function (val) {
  476. return 15
  477. },
  478. showEffectOn: 'render',
  479. rippleEffect: {
  480. brushType: 'stroke',
  481. },
  482. hoverAnimation: true,
  483. label: {
  484. normal: {
  485. formatter: '{b}',
  486. position: 'left',
  487. show: false,
  488. },
  489. },
  490. itemStyle: {
  491. normal: {
  492. color: 'yellow',
  493. shadowBlur: 10,
  494. shadowColor: 'yellow',
  495. },
  496. },
  497. zlevel: 1000,
  498. },
  499. {
  500. name: '线路',
  501. type: 'lines',
  502. zlevel: 2,
  503. effect: {
  504. show: true,
  505. period: 4, //箭头指向速度,值越小速度越快
  506. trailLength: 0.02, //特效尾迹长度[0,1]值越大,尾迹越长重
  507. symbol: 'arrow', //箭头图标
  508. symbolSize: 5, //图标大小
  509. },
  510. lineStyle: {
  511. normal: {
  512. color: '#00FFFF',
  513. width: 1,
  514. type: 'dashed',
  515. opacity: 0.5, //尾迹线条透明度
  516. curveness: -0.3, //尾迹线条曲直度
  517. },
  518. },
  519. data: moveLine.normal,
  520. },
  521. ],
  522. })
  523. },
  524. initChartL1() {
  525. let myChart = echarts.init(this.$refs['echartL1'])
  526. let option = {
  527. title: {
  528. text: '储备项目产业分布',
  529. x: 'center',
  530. y: '87%',
  531. textStyle: {
  532. color: 'rgba(255,255,255,0.6)',
  533. fontSize: 12,
  534. },
  535. },
  536. tooltip: {
  537. trigger: 'item',
  538. },
  539. color: ['#6682f5', '#8ba2ff', '#69c0ff', '#43ede3'],
  540. legend: {
  541. icon: 'circle',
  542. top: 'bottom',
  543. orient: 'vertical',
  544. right: '1%',
  545. textStyle: {
  546. color: '#9DB9EB',
  547. },
  548. },
  549. series: [
  550. {
  551. name: '',
  552. type: 'pie',
  553. radius: ['50%','70%',],
  554. center: ['50%', '45%'],
  555. itemStyle: {
  556. normal: {
  557. label: {
  558. show: false,
  559. },
  560. },
  561. },
  562. labelLine: {
  563. show: false,
  564. emphasis: {
  565. show: true
  566. }
  567. },
  568. data: [
  569. { value: 1048, name: '煤炭' },
  570. { value: 735, name: '火电' },
  571. { value: 580, name: '焦化' },
  572. { value: 484, name: '风电' },
  573. ],
  574. },
  575. ],
  576. }
  577. myChart.setOption(option)
  578. tools.loopShowTooltip(myChart, option, {
  579. nterval: 2000,
  580. loopSeries: true,
  581. })
  582. },
  583. initChartL2() {
  584. let myChart = echarts.init(this.$refs['echartL2'])
  585. var value = 0.45;
  586. var data = [value];
  587. let option = {
  588. backgroundColor: 'transparent',
  589. title: [
  590. {
  591. text: '450.12亿',
  592. x: '38%',
  593. y: '80%',
  594. textStyle: {
  595. fontSize: 24,
  596. fontWeight: 'bold',
  597. color: '#2CB7E0',
  598. lineHeight: 16,
  599. textAlign: 'center',
  600. },
  601. }
  602. ],
  603. series: [
  604. {
  605. type: 'liquidFill',
  606. radius: '70%',
  607. center: ['50%', '40%'],
  608. color: [
  609. {
  610. type: 'linear',
  611. x: 0,
  612. y: 0,
  613. x2: 0,
  614. y2: 1,
  615. colorStops: [
  616. {
  617. offset: 0,
  618. color: '#446bf5',
  619. },
  620. {
  621. offset: 1,
  622. color: '#2ca3e2',
  623. },
  624. ],
  625. globalCoord: false,
  626. },
  627. ],
  628. data: [value, value], // data个数代表波浪数
  629. backgroundStyle: {
  630. borderWidth: 1,
  631. color: 'RGBA(51, 66, 127, 0.7)',
  632. },
  633. label: {
  634. normal: {
  635. textStyle: {
  636. fontSize: 30,
  637. color: '#fff',
  638. },
  639. },
  640. },
  641. outline: {
  642. // show: false
  643. borderDistance: 0,
  644. itemStyle: {
  645. borderWidth: 2,
  646. borderColor: 'transparent',
  647. },
  648. },
  649. },
  650. ],
  651. }
  652. myChart.setOption(option)
  653. },
  654. initChartL3() {
  655. let myChart = echarts.init(this.$refs['echartL3'])
  656. let option = {
  657. tooltip: {
  658. trigger: 'axis',
  659. axisPointer: {
  660. type: 'shadow',
  661. },
  662. },
  663. grid: {
  664. top: '22%',
  665. right: '5%',
  666. left: '10%',
  667. bottom: '25%',
  668. },
  669. xAxis: {
  670. data: ['总投资收益率', '销售利润率'],
  671. axisLine: {
  672. show: true, //隐藏X轴轴线
  673. lineStyle: {
  674. color: '#005094',
  675. width: 1,
  676. },
  677. },
  678. axisTick: {
  679. show: true, //隐藏X轴刻度
  680. },
  681. axisLabel: {
  682. show: true,
  683. rotate: 15,
  684. textStyle: {
  685. color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  686. fontSize: 12,
  687. },
  688. },
  689. },
  690. yAxis: [
  691. {
  692. type: 'value',
  693. splitLine: {
  694. show: true,
  695. lineStyle: {
  696. color: '#68b4dd66',
  697. type: 'dashed',
  698. },
  699. },
  700. axisLine: {
  701. show: false
  702. },
  703. axisLabel: {
  704. show: true,
  705. formatter: '{value}',
  706. textStyle: {
  707. color: 'rgba(250,250,250,0.6)',
  708. },
  709. },
  710. nameTextStyle: {
  711. color: '#ebf8ac',
  712. fontSize: 16,
  713. },
  714. },
  715. ],
  716. series: [
  717. {
  718. name: '',
  719. type: 'bar',
  720. barWidth: 15,
  721. itemStyle: {
  722. normal: {
  723. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  724. {
  725. offset: 0,
  726. color: '#69c0ff',
  727. },
  728. {
  729. offset: 1,
  730. color: '#082550',
  731. },
  732. ]),
  733. },
  734. },
  735. data: [10, 20],
  736. markLine: {
  737. symbol: ['none', 'none'],
  738. data: [
  739. {
  740. name: '生存线',
  741. yAxis: 10,
  742. lineStyle: {
  743. color: '#FF8F0A',
  744. },
  745. label: {
  746. formatter: '{b}',
  747. position: 'middle',
  748. color: '#FF8F0A',
  749. fontSize: 12,
  750. },
  751. },
  752. {
  753. name: '发展线',
  754. yAxis: 15,
  755. lineStyle: {
  756. color: '#00EEA2',
  757. },
  758. label: {
  759. formatter: '{b}',
  760. position: 'middle',
  761. color: '#00EEA2',
  762. fontSize: 12,
  763. },
  764. },
  765. ],
  766. label: {
  767. distance: [50, 0],
  768. },
  769. },
  770. },
  771. ],
  772. }
  773. myChart.setOption(option)
  774. tools.loopShowTooltip(myChart, option, {
  775. nterval: 2000,
  776. loopSeries: true,
  777. })
  778. },
  779. initChartL4() {
  780. let myChart = echarts.init(this.$refs['echartL4'])
  781. let option = {
  782. title: {
  783. text: '储备项目产业分布',
  784. x: 'center',
  785. y: '87%',
  786. textStyle: {
  787. color: 'rgba(255,255,255,0.6)',
  788. fontSize: 12,
  789. },
  790. },
  791. tooltip: {
  792. trigger: 'item',
  793. },
  794. color: ['#6682f5', '#8ba2ff', '#69c0ff', '#43ede3'],
  795. legend: {
  796. icon: 'circle',
  797. top: 'bottom',
  798. orient: 'vertical',
  799. right: '1%',
  800. textStyle: {
  801. color: '#9DB9EB',
  802. },
  803. },
  804. series: [
  805. {
  806. name: '',
  807. type: 'pie',
  808. radius: ['50%', '70%'],
  809. center: ['50%', '45%'],
  810. itemStyle: {
  811. normal: {
  812. label: {
  813. show: false,
  814. },
  815. },
  816. },
  817. labelLine: {
  818. show: false,
  819. },
  820. data: [
  821. { value: 1048, name: '煤炭' },
  822. { value: 735, name: '火电' },
  823. { value: 580, name: '焦化' },
  824. { value: 484, name: '风电' },
  825. ],
  826. },
  827. ],
  828. }
  829. myChart.setOption(option)
  830. tools.loopShowTooltip(myChart, option, {
  831. nterval: 2000,
  832. loopSeries: true,
  833. })
  834. },
  835. initChartR1() {
  836. let myChart = echarts.init(this.$refs['echartR1'])
  837. let option = {
  838. title: {
  839. text: '储备项目产业分布',
  840. x: '15%',
  841. y: '87%',
  842. textStyle: {
  843. color: 'rgba(255,255,255,0.6)',
  844. fontSize: 12,
  845. },
  846. },
  847. tooltip: {
  848. trigger: 'item',
  849. },
  850. color: ['#6682f5', '#8ba2ff', '#69c0ff', '#43ede3'],
  851. legend: {
  852. icon: 'circle',
  853. top: 'bottom',
  854. orient: 'vertical',
  855. right: '1%',
  856. textStyle: {
  857. color: '#9DB9EB',
  858. },
  859. },
  860. series: [
  861. {
  862. name: '',
  863. type: 'pie',
  864. radius: ['40%', '60%'],
  865. center: ['40%', '45%'],
  866. itemStyle: {
  867. normal: {
  868. label: {
  869. show: false,
  870. },
  871. },
  872. },
  873. labelLine: {
  874. show: false,
  875. },
  876. data: [
  877. { value: 1048, name: '煤炭' },
  878. { value: 735, name: '火电' },
  879. { value: 580, name: '焦化' },
  880. { value: 484, name: '风电' },
  881. ],
  882. },
  883. ],
  884. }
  885. myChart.setOption(option)
  886. tools.loopShowTooltip(myChart, option, {
  887. nterval: 2000,
  888. loopSeries: true,
  889. })
  890. },
  891. initChartR2() {
  892. let myChart = echarts.init(this.$refs['echartR2'])
  893. let option = {
  894. title: {
  895. text: '储备项目产业分布',
  896. x: '15%',
  897. y: '87%',
  898. textStyle: {
  899. color: 'rgba(255,255,255,0.6)',
  900. fontSize: 12,
  901. },
  902. },
  903. tooltip: {
  904. trigger: 'item',
  905. },
  906. color: ['#6682f5', '#8ba2ff', '#69c0ff', '#43ede3'],
  907. legend: {
  908. icon: 'circle',
  909. top: 'bottom',
  910. orient: 'vertical',
  911. right: '1%',
  912. textStyle: {
  913. color: '#9DB9EB',
  914. },
  915. },
  916. series: [
  917. {
  918. name: '',
  919. type: 'pie',
  920. radius: ['40%', '60%'],
  921. center: ['40%', '45%'],
  922. itemStyle: {
  923. normal: {
  924. label: {
  925. show: false,
  926. },
  927. },
  928. },
  929. labelLine: {
  930. show: false,
  931. },
  932. data: [
  933. { value: 1048, name: '煤炭' },
  934. { value: 735, name: '火电' },
  935. { value: 580, name: '焦化' },
  936. { value: 484, name: '风电' },
  937. ],
  938. },
  939. ],
  940. }
  941. myChart.setOption(option)
  942. tools.loopShowTooltip(myChart, option, {
  943. nterval: 2000,
  944. loopSeries: true,
  945. })
  946. },
  947. initChartR3() {
  948. let myChart = echarts.init(this.$refs['echartR3'])
  949. let option = {
  950. title: {
  951. text: '固定资产项目',
  952. textStyle: {
  953. color: '#69C0FF',
  954. },
  955. top: '10',
  956. left: '10'
  957. },
  958. textStyle: {
  959. color: '#fff',
  960. },
  961. tooltip: {
  962. trigger: "axis",
  963. axisPointer: {
  964. lineStyle: {
  965. type: 'dashed',
  966. width: 2,
  967. color: 'rgba(255,255,255,0.6)'
  968. },
  969. animation: true
  970. }
  971. },
  972. grid: {
  973. show: false
  974. },
  975. yAxis: {
  976. data: ['批量备案', '特别监管'],
  977. splitLine: {
  978. show: true,
  979. lineStyle: {
  980. color: '#68b4dd66',
  981. type: 'dashed',
  982. },
  983. },
  984. axisLine: {
  985. show: false
  986. },
  987. axisLabel: {
  988. show: true,
  989. formatter: '{value}',
  990. textStyle: {
  991. color: 'rgba(250,250,250,0.6)',
  992. },
  993. },
  994. nameTextStyle: {
  995. color: '#ebf8ac',
  996. fontSize: 16,
  997. },
  998. },
  999. xAxis: {
  1000. data: ['项目储备', '项目立项', '项目可研', '可研论证', '投资决策'],
  1001. axisLine: {
  1002. show: true, //隐藏X轴轴线
  1003. lineStyle: {
  1004. color: '#005094',
  1005. width: 1,
  1006. },
  1007. },
  1008. axisTick: {
  1009. show: false, //隐藏X轴刻度
  1010. },
  1011. axisLabel: {
  1012. show: true,
  1013. textStyle: {
  1014. color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  1015. fontSize: 12,
  1016. },
  1017. },
  1018. },
  1019. series: [
  1020. {
  1021. name: '',
  1022. type: 'scatter',
  1023. symbol: 'circle',//'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'
  1024. symbolSize: function (data) {
  1025. return Math.sqrt(data[2]) * 0.5;
  1026. },
  1027. label: {
  1028. emphasis: {
  1029. show: true,
  1030. formatter: function (param) {
  1031. return param.data[2];
  1032. },
  1033. position: 'top'
  1034. }
  1035. },
  1036. itemStyle: {
  1037. normal: {
  1038. color: 'red'
  1039. }
  1040. },
  1041. data: [
  1042. ['项目储备', '批量备案', 200],
  1043. ['项目立项', '批量备案', 1500],
  1044. ['项目可研', '批量备案', 2000],
  1045. ['可研论证', '批量备案', 2500],
  1046. ['投资决策', '批量备案', 3000],
  1047. ['福建', '批量备案', 3500],
  1048. ]
  1049. },
  1050. {
  1051. name: '',
  1052. type: 'scatter',
  1053. symbol: 'circle',//'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'
  1054. symbolSize: function (data) {
  1055. return Math.sqrt(data[2]) * 0.5;
  1056. },
  1057. label: {
  1058. emphasis: {
  1059. show: true,
  1060. formatter: function (param) {
  1061. return param.data[2];
  1062. },
  1063. position: 'top'
  1064. }
  1065. },
  1066. itemStyle: {
  1067. normal: {
  1068. color: '#C94C15'
  1069. }
  1070. },
  1071. data: [
  1072. ['项目储备', '特别监管', 1400],
  1073. ['项目立项', '特别监管', 1500],
  1074. ['项目可研', '特别监管', 5500],
  1075. ['可研论证', '特别监管', 500],
  1076. ]
  1077. }
  1078. ]
  1079. }
  1080. myChart.setOption(option)
  1081. tools.loopShowTooltip(myChart, option, {
  1082. nterval: 2000,
  1083. loopSeries: true,
  1084. })
  1085. },
  1086. initChartR4() {
  1087. let myChart = echarts.init(this.$refs['echartR4'])
  1088. let option = {
  1089. title: {
  1090. text: '股权投资项目',
  1091. textStyle: {
  1092. color: '#69C0FF',
  1093. },
  1094. top: '10',
  1095. left: '10'
  1096. },
  1097. textStyle: {
  1098. color: '#fff',
  1099. },
  1100. tooltip: {
  1101. trigger: "axis",
  1102. axisPointer: {
  1103. lineStyle: {
  1104. type: 'dashed',
  1105. width: 2,
  1106. color: 'rgba(255,255,255,0.6)'
  1107. },
  1108. animation: true
  1109. }
  1110. },
  1111. grid: {
  1112. show: false
  1113. },
  1114. yAxis: {
  1115. data: ['批量备案', '特别监管'],
  1116. splitLine: {
  1117. show: true,
  1118. lineStyle: {
  1119. color: '#68b4dd66',
  1120. type: 'dashed',
  1121. },
  1122. },
  1123. axisLine: {
  1124. show: false
  1125. },
  1126. axisLabel: {
  1127. show: true,
  1128. formatter: '{value}',
  1129. textStyle: {
  1130. color: 'rgba(250,250,250,0.6)',
  1131. },
  1132. },
  1133. nameTextStyle: {
  1134. color: '#ebf8ac',
  1135. fontSize: 16,
  1136. },
  1137. },
  1138. xAxis: {
  1139. data: ['项目储备', '项目立项', '项目可研', '可研论证', '投资决策'],
  1140. axisLine: {
  1141. show: true, //隐藏X轴轴线
  1142. lineStyle: {
  1143. color: '#005094',
  1144. width: 1,
  1145. },
  1146. },
  1147. axisTick: {
  1148. show: false, //隐藏X轴刻度
  1149. },
  1150. axisLabel: {
  1151. show: true,
  1152. textStyle: {
  1153. color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  1154. fontSize: 12,
  1155. },
  1156. },
  1157. },
  1158. series: [
  1159. {
  1160. name: '',
  1161. type: 'scatter',
  1162. symbol: 'circle',//'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'
  1163. symbolSize: function (data) {
  1164. return Math.sqrt(data[2]) * 0.5;
  1165. },
  1166. label: {
  1167. emphasis: {
  1168. show: true,
  1169. formatter: function (param) {
  1170. return param.data[2];
  1171. },
  1172. position: 'top'
  1173. }
  1174. },
  1175. itemStyle: {
  1176. normal: {
  1177. color: 'red'
  1178. }
  1179. },
  1180. data: [
  1181. ['项目储备', '批量备案', 200],
  1182. ['项目立项', '批量备案', 1500],
  1183. ['项目可研', '批量备案', 2000],
  1184. ['可研论证', '批量备案', 2500],
  1185. ['投资决策', '批量备案', 3000],
  1186. ['福建', '批量备案', 3500],
  1187. ]
  1188. },
  1189. {
  1190. name: '',
  1191. type: 'scatter',
  1192. symbol: 'circle',//'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'
  1193. symbolSize: function (data) {
  1194. return Math.sqrt(data[2]) * 0.5;
  1195. },
  1196. label: {
  1197. emphasis: {
  1198. show: true,
  1199. formatter: function (param) {
  1200. return param.data[2];
  1201. },
  1202. position: 'top'
  1203. }
  1204. },
  1205. itemStyle: {
  1206. normal: {
  1207. color: '#C94C15'
  1208. }
  1209. },
  1210. data: [
  1211. ['项目储备', '特别监管', 1400],
  1212. ['项目立项', '特别监管', 1500],
  1213. ['项目可研', '特别监管', 5500],
  1214. ['可研论证', '特别监管', 500],
  1215. ]
  1216. }
  1217. ]
  1218. }
  1219. myChart.setOption(option)
  1220. tools.loopShowTooltip(myChart, option, {
  1221. nterval: 2000,
  1222. loopSeries: true,
  1223. })
  1224. }
  1225. },
  1226. })