investHome.js 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. let app = new Vue({
  2. el: '#app',
  3. data() {
  4. return {
  5. showTip: false,
  6. showTip2: false,
  7. timeOut: '',
  8. tipTitle: '',
  9. tipTitle2: '',
  10. year: '2022',
  11. time: '',
  12. timer: '',
  13. mapName: 'shanxi',
  14. geoCoordMap: {},
  15. config1: {
  16. number: [100],
  17. content: '{nt}个',
  18. },
  19. storageRecordConfig: null,
  20. companyList: [
  21. { name: '山西焦煤' },
  22. { name: '晋能控股' },
  23. { name: '华新燃气' },
  24. { name: '山西建投' },
  25. { name: '潞安化工' },
  26. { name: '华远陆港' },
  27. { name: '航产集团' },
  28. { name: '大地控股' },
  29. { name: '国新能源' },
  30. { name: '汾酒集团' },
  31. { name: '云时代' },
  32. { name: '神农科技' },
  33. { name: '华阳新材' },
  34. { name: '华舰体育' },
  35. { name: '交控集团' },
  36. { name: '文旅集团' },
  37. { name: '水控集团' },
  38. { name: '太重集团' },
  39. ],
  40. amountList: amountList,
  41. amountTotal: 0,
  42. classOption: {
  43. step: 0.5
  44. }
  45. }
  46. },
  47. created() {
  48. this.amountList.map(item => {
  49. this.amountTotal += Number(item.value)
  50. })
  51. this.time = formatDate()
  52. this.timer = setInterval(() => {
  53. this.time = formatDate()
  54. }, 1000)
  55. },
  56. beforeDestroy() {
  57. if (this.timer) {
  58. clearInterval(this.timer);
  59. }
  60. clearInterval(this.timeOut)
  61. },
  62. mounted() {
  63. setTimeout(() => {
  64. // 左侧图表
  65. //this.initChartTip()
  66. this.initChartTip2()
  67. this.initChartTip3()
  68. this.initChartTip4()
  69. this.initChartL1()
  70. this.initChartL2()
  71. this.initChartR1()
  72. this.initChartR2()
  73. this.initChinaChart()
  74. this.initProjectList()
  75. }, 0)
  76. },
  77. methods: {
  78. numFormat(value) {
  79. if (!value) return '0'
  80. var intPart = Number(value).toFixed(0) // 获取整数部分
  81. var intPartFormat = intPart.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,') // 将整数部分逢三一断
  82. var floatPart = '.00' // 预定义小数部分
  83. var value2Array = value.toString().split('.')
  84. // =2表示数据有小数位
  85. if (value2Array.length === 2) {
  86. floatPart = value2Array[1].toString() // 拿到小数部分
  87. if (floatPart.length === 1) {
  88. // 补0
  89. return intPartFormat + '.' + floatPart + '0'
  90. } else {
  91. return intPartFormat + '.' + floatPart
  92. }
  93. } else {
  94. return intPartFormat
  95. }
  96. },
  97. convertData(data) {
  98. var res = []
  99. for (var i = 0; i < data.length; i++) {
  100. var geoCoord = this.geoCoordMap[data[i].name]
  101. if (geoCoord) {
  102. res.push({
  103. name: data[i].name,
  104. value: geoCoord.concat(data[i].value),
  105. })
  106. }
  107. }
  108. return res
  109. },
  110. initChinaChart() {
  111. var data = [
  112. { name: '大同市', value: 60.35, value2: 28 },
  113. { name: '朔州市', value: 33.61, value2: 13 },
  114. { name: '忻州市', value: 73.35, value2: 25 },
  115. { name: '吕梁市', value: 109.04, value2: 45 },
  116. { name: '太原市', value: 251.67, value2: 113 },
  117. { name: '阳泉市', value: 25.12, value2: 28 },
  118. { name: '晋中市', value: 148.57, value2: 52 },
  119. { name: '临汾市', value: 130.55, value2: 30 },
  120. { name: '长治市', value: 103.00, value2: 23 },
  121. { name: '运城市', value: 41.06, value2: 23 },
  122. { name: '晋城市', value: 45.43, value2: 31 }
  123. ]
  124. var moveLine = {
  125. normal: [
  126. {
  127. fromName: '太原市',
  128. toName: '吕梁市',
  129. coords: [
  130. [112.3352, 37.9413],
  131. [111.3574, 37.7325],
  132. ],
  133. },
  134. {
  135. fromName: '太原市',
  136. toName: '忻州市',
  137. coords: [
  138. [112.3352, 37.9413],
  139. [112.4561, 38.8971],
  140. ],
  141. },
  142. {
  143. fromName: '太原市',
  144. toName: '临汾市',
  145. coords: [
  146. [112.3352, 37.9413],
  147. [111.4783, 36.1615],
  148. ],
  149. },
  150. {
  151. fromName: '太原市',
  152. toName: '阳泉市',
  153. coords: [
  154. [112.3352, 37.9413],
  155. [113.4778, 38.0951],
  156. ],
  157. },
  158. {
  159. fromName: '太原市',
  160. toName: '晋中市',
  161. coords: [
  162. [112.3352, 37.9413],
  163. [112.7747, 37.37],
  164. ],
  165. },
  166. {
  167. fromName: '太原市',
  168. toName: '运城市',
  169. coords: [
  170. [112.3352, 37.9413],
  171. [111.1487, 35.2002],
  172. ],
  173. },
  174. {
  175. fromName: '太原市',
  176. toName: '大同市',
  177. coords: [
  178. [112.3352, 37.9413],
  179. [113.7854, 39.8035],
  180. ],
  181. },
  182. {
  183. fromName: '太原市',
  184. toName: '晋城市',
  185. coords: [
  186. [112.3352, 37.9413],
  187. [112.7856, 35.6342],
  188. ],
  189. },
  190. {
  191. fromName: '太原市',
  192. toName: '长治市',
  193. coords: [
  194. [112.3352, 37.9413],
  195. [112.8625, 36.4746],
  196. ],
  197. },
  198. {
  199. fromName: '太原市',
  200. toName: '朔州市',
  201. coords: [
  202. [112.3352, 37.9413],
  203. [113.0713, 39.6991],
  204. ],
  205. },
  206. ],
  207. }
  208. /*获取地图数据*/
  209. let myChart = echarts.init(this.$refs['echarts-map'])
  210. echarts.registerMap('shanxi', {
  211. type: 'FeatureCollection',
  212. features: [
  213. {
  214. type: 'Feature',
  215. id: '1409',
  216. properties: { name: '忻州市', cp: [112.4561, 38.8971], childNum: 14 },
  217. geometry: {
  218. type: 'Polygon',
  219. coordinates: [
  220. '@@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',
  221. ],
  222. encodeOffsets: [[113614, 39657]],
  223. },
  224. },
  225. {
  226. type: 'Feature',
  227. id: '1411',
  228. properties: { name: '吕梁市', cp: [111.3574, 37.7325], childNum: 13 },
  229. geometry: {
  230. type: 'Polygon',
  231. coordinates: [
  232. '@@@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',
  233. ],
  234. encodeOffsets: [[113614, 39657]],
  235. },
  236. },
  237. {
  238. type: 'Feature',
  239. id: '1410',
  240. properties: { name: '临汾市', cp: [111.4783, 36.1615], childNum: 17 },
  241. geometry: {
  242. type: 'Polygon',
  243. coordinates: [
  244. '@@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',
  245. ],
  246. encodeOffsets: [[113063, 37784]],
  247. },
  248. },
  249. {
  250. type: 'Feature',
  251. id: '1407',
  252. properties: { name: '晋中市', cp: [112.7747, 37.37], childNum: 11 },
  253. geometry: {
  254. type: 'Polygon',
  255. coordinates: [
  256. '@@@š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@',
  257. ],
  258. encodeOffsets: [[114087, 37682]],
  259. },
  260. },
  261. {
  262. type: 'Feature',
  263. id: '1408',
  264. properties: { name: '运城市', cp: [111.1487, 35.2002], childNum: 13 },
  265. geometry: {
  266. type: 'Polygon',
  267. coordinates: [
  268. '@@„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@„',
  269. ],
  270. encodeOffsets: [[113232, 36597]],
  271. },
  272. },
  273. {
  274. type: 'Feature',
  275. id: '1402',
  276. properties: { name: '大同市', cp: [113.7854, 39.8035], childNum: 8 },
  277. geometry: {
  278. type: 'Polygon',
  279. coordinates: [
  280. '@@²£š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',
  281. ],
  282. encodeOffsets: [[115335, 41209]],
  283. },
  284. },
  285. {
  286. type: 'Feature',
  287. id: '1404',
  288. properties: { name: '长治市', cp: [112.8625, 36.4746], childNum: 12 },
  289. geometry: {
  290. type: 'Polygon',
  291. coordinates: [
  292. '@@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',
  293. ],
  294. encodeOffsets: [[116269, 37637]],
  295. },
  296. },
  297. {
  298. type: 'Feature',
  299. id: '1406',
  300. properties: { name: '朔州市', cp: [113.0713, 39.6991], childNum: 5 },
  301. geometry: {
  302. type: 'Polygon',
  303. coordinates: [
  304. '@@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‚',
  305. ],
  306. encodeOffsets: [[114615, 40562]],
  307. },
  308. },
  309. {
  310. type: 'Feature',
  311. id: '1405',
  312. properties: { name: '晋城市', cp: [112.7856, 35.6342], childNum: 6 },
  313. geometry: {
  314. type: 'Polygon',
  315. coordinates: [
  316. '@@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°',
  317. ],
  318. encodeOffsets: [[115223, 36895]],
  319. },
  320. },
  321. {
  322. type: 'Feature',
  323. id: '1401',
  324. properties: { name: '太原市', cp: [112.3352, 37.9413], childNum: 5 },
  325. geometry: {
  326. type: 'Polygon',
  327. coordinates: [
  328. '@@„@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š@°',
  329. ],
  330. encodeOffsets: [[114503, 39134]],
  331. },
  332. },
  333. {
  334. type: 'Feature',
  335. id: '1403',
  336. properties: { name: '阳泉市', cp: [113.4778, 38.0951], childNum: 3 },
  337. geometry: {
  338. type: 'Polygon',
  339. coordinates: [
  340. '@@°@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',
  341. ],
  342. encodeOffsets: [[115864, 39336]],
  343. },
  344. },
  345. ],
  346. UTF8Encoding: true,
  347. })
  348. var mapFeatures = echarts.getMap(this.mapName).geoJson.features
  349. mapFeatures.forEach(v => {
  350. // 地区名称
  351. var name = v.properties.name
  352. // 地区经纬度
  353. this.geoCoordMap[name] = v.properties.cp
  354. })
  355. // <p>当前阶段:<span>可论证阶段</span></p>
  356. // <p>时间节点:<span>2021.10-2022.10</span></p>
  357. let option = {
  358. tooltip: {
  359. padding: 15,
  360. enterable: true,
  361. transitionDuration: 1,
  362. formatter: (params, ticket, callback) => {
  363. // 清空所有轮播
  364. for (var k in this.geoCoordMap) {
  365. myChart.dispatchAction({
  366. // type: 'geoUnSelect',
  367. type: 'downplay',
  368. name: k,
  369. })
  370. }
  371. // 如果鼠标滑动到线线上面,则返回空
  372. myChart.dispatchAction({
  373. // type: 'geoSelect',
  374. type: 'highlight',
  375. name: params.name,
  376. })
  377. if (params.componentSubType == 'lines') {
  378. return
  379. }
  380. if (params.componentSubType == 'scatter') {
  381. let tipHtml = `
  382. <div class="tooltip-cont">
  383. <p>项目数量:<span>${data[params.dataIndex].value2}个</span></p>
  384. <p>总投资额:<span>${params.data.value[2]}亿</span></p>
  385. </div>`
  386. callback(ticket, tipHtml)
  387. return tipHtml
  388. }
  389. if (params.componentSubType == 'map') {
  390. let tipHtml = `
  391. <div class="tooltip-cont">
  392. <p>项目数量:<span>${data[params.dataIndex].value2}个</span></p>
  393. <p>总投资额:<span>${params.data.value}亿</span></p>
  394. </div>`
  395. callback(ticket, tipHtml)
  396. return tipHtml
  397. }
  398. },
  399. },
  400. visualMap: {
  401. show: false,
  402. min: 0,
  403. max: 300,
  404. right: 0,
  405. bottom: 0,
  406. text: ['高', '低'],
  407. textStyle: {
  408. color: '#f1f1f1'
  409. },
  410. realtime: false,
  411. calculable: false,
  412. inRange: {
  413. color: ['lightskyblue', '#2754b7']
  414. }
  415. },
  416. geo: {
  417. show: true,
  418. map: 'shanxi',
  419. layoutCenter: ['50%', '50%'], //地图位置
  420. layoutSize: '100%',
  421. label: {
  422. normal: {
  423. show: false,
  424. },
  425. emphasis: {
  426. show: false,
  427. },
  428. },
  429. roam: false,
  430. itemStyle: {
  431. normal: {
  432. areaColor: '#1946a8',
  433. shadowColor: '#1946a8',
  434. borderWidth: 1, //设置外层边框
  435. borderColor: '#1946a8',
  436. shadowOffsetX: 10,
  437. shadowOffsetY: 5,
  438. shadowBlur: 2,
  439. },
  440. emphasis: {
  441. areaColor: '#1946a8',
  442. borderColor: '#d4bc1d',
  443. borderWidth: 2, //设置外层边框
  444. },
  445. },
  446. },
  447. series: [
  448. {
  449. name: '散点',
  450. type: 'scatter',
  451. coordinateSystem: 'geo',
  452. data: this.convertData(data),
  453. symbolSize: function (val) {
  454. return 10
  455. },
  456. label: {
  457. normal: {
  458. formatter: '{b}',
  459. position: [10, 10],
  460. fontSize: 15,
  461. fontWeight: 600,
  462. fontStyle: 'italic',
  463. color: '#fff',
  464. show: true,
  465. },
  466. emphasis: {
  467. show: true,
  468. },
  469. },
  470. itemStyle: {
  471. normal: {
  472. color: '#000',
  473. borderWidth: 2,
  474. borderColor: '#fff',
  475. },
  476. },
  477. },
  478. {
  479. type: 'map',
  480. map: this.mapName,
  481. geoIndex: 0,
  482. aspectScale: 1.5, //长宽比
  483. showLegendSymbol: true, // 存在legend时显示
  484. label: {
  485. normal: {
  486. show: true,
  487. },
  488. emphasis: {
  489. show: false,
  490. textStyle: {
  491. color: '#fff',
  492. },
  493. },
  494. },
  495. roam: true,
  496. itemStyle: {
  497. normal: {
  498. areaColor: '#031525',
  499. borderColor: '#3B5077',
  500. },
  501. emphasis: {
  502. areaColor: '#2B91B7',
  503. },
  504. },
  505. animation: false,
  506. data: data,
  507. },
  508. {
  509. name: '点',
  510. type: 'scatter',
  511. coordinateSystem: 'geo',
  512. zlevel: 6,
  513. },
  514. {
  515. name: 'Top 5',
  516. type: 'effectScatter',
  517. coordinateSystem: 'geo',
  518. data: this.convertData(
  519. data
  520. .sort(function (a, b) {
  521. return b.value - a.value
  522. })
  523. .slice(0, 5)
  524. ),
  525. symbolSize: function (val) {
  526. return 15
  527. },
  528. showEffectOn: 'render',
  529. rippleEffect: {
  530. brushType: 'stroke',
  531. },
  532. hoverAnimation: true,
  533. label: {
  534. normal: {
  535. formatter: '{b}',
  536. position: 'left',
  537. show: false,
  538. },
  539. },
  540. itemStyle: {
  541. normal: {
  542. color: 'yellow',
  543. shadowBlur: 10,
  544. shadowColor: 'yellow',
  545. },
  546. },
  547. zlevel: 1000,
  548. },
  549. {
  550. name: '线路',
  551. type: 'lines',
  552. zlevel: 2,
  553. effect: {
  554. show: true,
  555. period: 4, //箭头指向速度,值越小速度越快
  556. trailLength: 0.02, //特效尾迹长度[0,1]值越大,尾迹越长重
  557. symbol: 'arrow', //箭头图标
  558. symbolSize: 5, //图标大小
  559. },
  560. lineStyle: {
  561. normal: {
  562. color: '#00FFFF',
  563. width: 1,
  564. type: 'dashed',
  565. opacity: 0.5, //尾迹线条透明度
  566. curveness: -0.3, //尾迹线条曲直度
  567. },
  568. },
  569. data: moveLine.normal,
  570. },
  571. ],
  572. }
  573. let that = this
  574. myChart.on('click', function (params) {
  575. console.log(params)
  576. if (params.name == '太原市') {
  577. that.showTip = true
  578. }
  579. // window.open('https://www.baidu.com')
  580. })
  581. tools.loopShowTooltip(myChart, option, {
  582. interval: 2000,
  583. loopSeries: false,
  584. });
  585. myChart.setOption(option)
  586. },
  587. // initChartTip(){
  588. // let myChart = echarts.init(this.$refs['echartTip'])
  589. // let option = {
  590. // tooltip: {
  591. // trigger: 'item',
  592. // },
  593. // color: ['#6682f5', '#69c0ff', '#43ede3','#8ba2ff'],
  594. // legend: {
  595. // top: '0',
  596. // orient: 'vertical',
  597. // left: '2%',
  598. // textStyle: {
  599. // color: '#9DB9EB',
  600. // },
  601. // },
  602. // series: [
  603. // {
  604. // name: '',
  605. // type: 'pie',
  606. // center: ['45%','40%'],
  607. // radius: ['35%', '50%'],
  608. // labelLine: {
  609. // normal: {
  610. // lineStyle: {
  611. // width: 1,
  612. // },
  613. // },
  614. // },
  615. // data: statusList,
  616. // },
  617. // ],
  618. // }
  619. // myChart.setOption(option)
  620. // tools.loopShowTooltip(myChart, option, {
  621. // nterval: 2000,
  622. // loopSeries: true,
  623. // })
  624. // myChart.on('click', function(param) {
  625. // console.log(param)
  626. // window.open('https://www.baidu.com')
  627. // })
  628. // },
  629. initChartTip2() {
  630. let myChart = echarts.init(this.$refs['echartTip2'])
  631. let option = {
  632. tooltip: {
  633. trigger: 'axis',
  634. axisPointer: {
  635. type: 'cross',
  636. },
  637. },
  638. // dataZoom:[
  639. // {
  640. // // start: 9,//默认为@
  641. // // end: 100,//黑认认为1@0
  642. // type: "slider",
  643. // show: true,
  644. // // xAxisIndex: [0]
  645. // handlesize: 0,//滑动条的 左右2个滑动条的大小
  646. // startValue: 9,// 初始显示值
  647. // endValue: 6,// 结束显示值
  648. // height: 10,//组件高度
  649. // left:"5%",
  650. // right: "4%",//右边的距离
  651. // bottom: "25%",//底边的距离
  652. // borderColor:"#939",
  653. // fillerColor:"#269cdb",
  654. // borderRadius: 5,
  655. // backgroundColor: "#33384b",//两边未选中的滑动条区域的额色
  656. // showDataShadow: false,//是否显示数据阴影
  657. // showDetail: false,//即拖拽时候是否显示详细数值信息
  658. // truerealtime: false,//是否实时更新
  659. // filterMode: "filter"
  660. // },{
  661. // type:'inside',
  662. // show: true,
  663. // start: 1,
  664. // end: 100
  665. // }
  666. // ],
  667. grid: {
  668. top: '10%',
  669. right: '3%',
  670. left: '10%',
  671. bottom: '30%',
  672. },
  673. legend: {
  674. top: '1',
  675. right: '20',
  676. textStyle: {
  677. color: 'rgba(250,250,250,0.6)',
  678. },
  679. },
  680. xAxis: {
  681. data: tipData.map(item => item.name),
  682. axisLine: {
  683. show: true, //隐藏X轴轴线
  684. lineStyle: {
  685. color: '#005094',
  686. width: 1,
  687. },
  688. },
  689. axisTick: {
  690. show: false, //隐藏X轴刻度
  691. },
  692. axisLabel: {
  693. show: true,
  694. rotate: 40,
  695. textStyle: {
  696. color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
  697. },
  698. },
  699. },
  700. yAxis: [
  701. {
  702. type: 'value',
  703. nameTextStyle: {
  704. color: '#ebf8ac',
  705. },
  706. splitLine: {
  707. show: true,
  708. lineStyle: {
  709. color: '#68b4dd66',
  710. type: 'dashed',
  711. },
  712. },
  713. axisLine: {
  714. show: true,
  715. lineStyle: {
  716. color: '#3D7495',
  717. },
  718. },
  719. axisLabel: {
  720. show: true,
  721. formatter: '{value} 亿',
  722. textStyle: {
  723. color: 'rgba(250,250,250,0.6)',
  724. },
  725. },
  726. },
  727. ],
  728. series: [
  729. {
  730. name: '投资金额',
  731. type: 'bar',
  732. barWidth: 15,
  733. itemStyle: {
  734. normal: {
  735. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  736. {
  737. offset: 0,
  738. color: '#69c0ff',
  739. },
  740. {
  741. offset: 1,
  742. color: '#082550',
  743. },
  744. ]),
  745. },
  746. },
  747. data: tipData.map(item => item.value),
  748. },
  749. // {
  750. // name: '实际投资',
  751. // type: 'bar',
  752. // barWidth: 10,
  753. // itemStyle: {
  754. // normal: {
  755. // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  756. // {
  757. // offset: 0,
  758. // color: '#957DFF',
  759. // },
  760. // {
  761. // offset: 1,
  762. // color: '#082550',
  763. // },
  764. // ]),
  765. // },
  766. // },
  767. // data: executeList.map(item=>item.value2),
  768. // },
  769. ],
  770. }
  771. myChart.on('click', function (data) {
  772. if (data.name == '交控集团') {
  773. window.location.href = './investHomeChild.html?type=1'
  774. }
  775. })
  776. tools.loopShowTooltip(myChart, option, {
  777. nterval: 2000,
  778. loopSeries: true,
  779. })
  780. myChart.setOption(option)
  781. },
  782. initChartTip3() {
  783. let myChart = echarts.init(this.$refs['echartTip3'])
  784. let option = {
  785. title: {
  786. //text : '产业类别',
  787. x: 'center',
  788. textStyle: {
  789. color: '#fff'
  790. }
  791. },
  792. tooltip: {
  793. trigger: 'axis',
  794. axisPointer: {
  795. type: 'cross',
  796. },
  797. },
  798. grid: {
  799. top: '15%',
  800. right: '3%',
  801. left: '10%',
  802. bottom: '30%',
  803. },
  804. legend: {
  805. top: '1',
  806. right: '15',
  807. textStyle: {
  808. color: 'rgba(250,250,250,0.6)',
  809. },
  810. },
  811. xAxis: {
  812. data: tipTopData.map(item => item.name),
  813. axisLine: {
  814. show: true, //隐藏X轴轴线
  815. lineStyle: {
  816. color: '#005094',
  817. width: 1,
  818. },
  819. },
  820. axisTick: {
  821. show: false, //隐藏X轴刻度
  822. },
  823. axisLabel: {
  824. show: true,
  825. rotate: 30,
  826. textStyle: {
  827. color: '#fff'//color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  828. },
  829. },
  830. },
  831. yAxis: [
  832. {
  833. type: 'value',
  834. nameTextStyle: {
  835. color: '#ebf8ac',
  836. },
  837. splitLine: {
  838. show: true,
  839. lineStyle: {
  840. color: '#68b4dd66',
  841. type: 'dashed',
  842. },
  843. },
  844. axisLine: {
  845. show: true,
  846. lineStyle: {
  847. color: '#3D7495',
  848. },
  849. },
  850. axisLabel: {
  851. show: true,
  852. formatter: '{value} 亿',
  853. textStyle: {
  854. color: 'rgba(250,250,250,0.6)',
  855. },
  856. },
  857. },
  858. ],
  859. series: [
  860. {
  861. name: '2022年投资完成额',
  862. type: 'line',
  863. barWidth: 15,
  864. itemStyle: {
  865. normal: {
  866. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  867. {
  868. offset: 0,
  869. color: '#69c0ff',
  870. },
  871. {
  872. offset: 1,
  873. color: '#69c0ff',
  874. },
  875. ]),
  876. },
  877. },
  878. data: tipTopData.map(item => item.value),
  879. },
  880. // {
  881. // name: '实际投资',
  882. // type: 'bar',
  883. // barWidth: 10,
  884. // itemStyle: {
  885. // normal: {
  886. // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  887. // {
  888. // offset: 0,
  889. // color: '#957DFF',
  890. // },
  891. // {
  892. // offset: 1,
  893. // color: '#082550',
  894. // },
  895. // ]),
  896. // },
  897. // },
  898. // data: executeList.map(item=>item.value2),
  899. // },
  900. ],
  901. }
  902. myChart.setOption(option)
  903. tools.loopShowTooltip(myChart, option, {
  904. nterval: 2000,
  905. loopSeries: true,
  906. })
  907. },
  908. initChartTip4() {
  909. let myChart = echarts.init(this.$refs['echartTip4'])
  910. let option = {
  911. title: {
  912. //text : '投资项目列表',
  913. x: 'center',
  914. textStyle: {
  915. color: '#fff'
  916. }
  917. },
  918. tooltip: {
  919. trigger: 'axis',
  920. axisPointer: {
  921. type: 'cross',
  922. },
  923. },
  924. // dataZoom:[
  925. // {
  926. // // start: 9,//默认为@
  927. // // end: 100,//黑认认为1@0
  928. // type: "slider",
  929. // show: true,
  930. // // xAxisIndex: [0]
  931. // handlesize: 0,//滑动条的 左右2个滑动条的大小
  932. // startValue: 9,// 初始显示值
  933. // endValue: 6,// 结束显示值
  934. // height: 10,//组件高度
  935. // left:"5%",
  936. // right: "4%",//右边的距离
  937. // bottom: "25%",//底边的距离
  938. // borderColor:"#939",
  939. // fillerColor:"#269cdb",
  940. // borderRadius: 5,
  941. // backgroundColor: "#33384b",//两边未选中的滑动条区域的额色
  942. // showDataShadow: false,//是否显示数据阴影
  943. // showDetail: false,//即拖拽时候是否显示详细数值信息
  944. // truerealtime: false,//是否实时更新
  945. // filterMode: "filter"
  946. // },{
  947. // type:'inside',
  948. // show: true,
  949. // start: 1,
  950. // end: 100
  951. // }
  952. // ],
  953. grid: {
  954. top: '15%',
  955. right: '3%',
  956. left: '10%',
  957. bottom: '20%',
  958. },
  959. legend: {
  960. top: '0',
  961. right: '20',
  962. textStyle: {
  963. color: 'rgba(250,250,250,0.6)',
  964. },
  965. },
  966. xAxis: {
  967. data: tipBottomData.map(item => item.name),
  968. axisLine: {
  969. show: true, //隐藏X轴轴线
  970. lineStyle: {
  971. color: '#005094',
  972. width: 1,
  973. },
  974. },
  975. axisTick: {
  976. show: false, //隐藏X轴刻度
  977. },
  978. axisLabel: {
  979. show: true,
  980. rotate: 30,
  981. textStyle: {
  982. color: '#fff'//color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  983. },
  984. },
  985. },
  986. yAxis: [
  987. {
  988. type: 'value',
  989. nameTextStyle: {
  990. color: '#ebf8ac',
  991. },
  992. splitLine: {
  993. show: true,
  994. lineStyle: {
  995. color: '#68b4dd66',
  996. type: 'dashed',
  997. },
  998. },
  999. axisLine: {
  1000. show: true,
  1001. lineStyle: {
  1002. color: '#3D7495',
  1003. },
  1004. },
  1005. axisLabel: {
  1006. show: true,
  1007. formatter: '{value} 亿',
  1008. textStyle: {
  1009. color: 'rgba(250,250,250,0.6)',
  1010. },
  1011. },
  1012. },
  1013. ],
  1014. series: [
  1015. {
  1016. name: '2022年投资完成额',
  1017. type: 'bar',
  1018. barWidth: 15,
  1019. itemStyle: {
  1020. normal: {
  1021. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1022. {
  1023. offset: 0,
  1024. color: '#69c0ff',
  1025. },
  1026. {
  1027. offset: 1,
  1028. color: '#082550',
  1029. },
  1030. ]),
  1031. },
  1032. },
  1033. data: tipBottomData.map(item => item.value),
  1034. },
  1035. ],
  1036. }
  1037. myChart.on('click', function (data) {
  1038. if (data.name == '华阳新材') {
  1039. window.location.href = './investHomeChild.html?type=2'
  1040. }
  1041. })
  1042. myChart.setOption(option)
  1043. tools.loopShowTooltip(myChart, option, {
  1044. nterval: 2000,
  1045. loopSeries: true,
  1046. })
  1047. },
  1048. // initChartL1() {
  1049. // let myChart = echarts.init(this.$refs['echartR1'])
  1050. // // 生成扇形的曲面参数方程,用于 series-surface.parametricEquation
  1051. // function getParametricEquation(startRatio, endRatio, isSelected, isHovered, k) {
  1052. // // 计算
  1053. // let midRatio = (startRatio + endRatio) / 2;
  1054. // let startRadian = startRatio * Math.PI * 2;
  1055. // let endRadian = endRatio * Math.PI * 2;
  1056. // let midRadian = midRatio * Math.PI * 2;
  1057. // // 如果只有一个扇形,则不实现选中效果。
  1058. // if (startRatio === 0 && endRatio === 1) {
  1059. // isSelected = false;
  1060. // }
  1061. // // 通过扇形内径/外径的值,换算出辅助参数 k(默认值 1/3)
  1062. // k = typeof k !== 'undefined' ? k : 1 / 3;
  1063. // // 计算选中效果分别在 x 轴、y 轴方向上的位移(未选中,则位移均为 0)
  1064. // let offsetX = isSelected ? Math.cos(midRadian) * 0.1 : 0;
  1065. // let offsetY = isSelected ? Math.sin(midRadian) * 0.1 : 0;
  1066. // // 计算高亮效果的放大比例(未高亮,则比例为 1)
  1067. // let hoverRate = isHovered ? 1.07 : 1;
  1068. // // 返回曲面参数方程
  1069. // return {
  1070. // u: {
  1071. // min: -Math.PI,
  1072. // max: Math.PI * 3,
  1073. // step: Math.PI / 32,
  1074. // },
  1075. // v: {
  1076. // min: 0,
  1077. // max: Math.PI * 2,
  1078. // step: Math.PI / 20,
  1079. // },
  1080. // x: function (u, v) {
  1081. // if (u < startRadian) {
  1082. // return offsetX + Math.cos(startRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1083. // }
  1084. // if (u > endRadian) {
  1085. // return offsetX + Math.cos(endRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1086. // }
  1087. // return offsetX + Math.cos(u) * (1 + Math.cos(v) * k) * hoverRate;
  1088. // },
  1089. // y: function (u, v) {
  1090. // if (u < startRadian) {
  1091. // return offsetY + Math.sin(startRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1092. // }
  1093. // if (u > endRadian) {
  1094. // return offsetY + Math.sin(endRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1095. // }
  1096. // return offsetY + Math.sin(u) * (1 + Math.cos(v) * k) * hoverRate;
  1097. // },
  1098. // z: function (u, v) {
  1099. // if (u < -Math.PI * 0.5) {
  1100. // return Math.sin(u);
  1101. // }
  1102. // if (u > Math.PI * 2.5) {
  1103. // return Math.sin(u);
  1104. // }
  1105. // return Math.sin(v) > 0 ? 1 : -1;
  1106. // },
  1107. // };
  1108. // }
  1109. // // 生成模拟 3D 饼图的配置项
  1110. // function getPie3D(pieData, internalDiameterRatio) {
  1111. // let series = [];
  1112. // let sumValue = 0;
  1113. // let startValue = 0;
  1114. // let endValue = 0;
  1115. // let legendData = [];
  1116. // let k =
  1117. // typeof internalDiameterRatio !== 'undefined'
  1118. // ? (1 - internalDiameterRatio) / (1 + internalDiameterRatio)
  1119. // : 1 / 5;
  1120. // // 新增标签 series @20210613
  1121. // let labelSeries = {
  1122. // id: 'labelSeries',
  1123. // type: 'bar3D',
  1124. // //zlevel:-9,
  1125. // barSize: [0.1, 0.1],
  1126. // data: [],
  1127. // label: {
  1128. // show: true,
  1129. // formatter: function (params) {
  1130. // return `${params.name}\n${params.value[3]}`;
  1131. // },
  1132. // backgroundColor: '#fff',
  1133. // },
  1134. // };
  1135. // // 为每一个饼图数据,生成一个 series-surface 配置
  1136. // for (let i = 0; i < pieData.length; i++) {
  1137. // sumValue += pieData[i].value;
  1138. // let seriesItem = {
  1139. // name: typeof pieData[i].name === 'undefined' ? `series${i}` : pieData[i].name,
  1140. // type: 'surface',
  1141. // parametric: true,
  1142. // wireframe: {
  1143. // show: false,
  1144. // },
  1145. // pieData: pieData[i],
  1146. // pieStatus: {
  1147. // selected: false,
  1148. // hovered: false,
  1149. // k: k,
  1150. // },
  1151. // };
  1152. // if (typeof pieData[i].itemStyle != 'undefined') {
  1153. // let itemStyle = {};
  1154. // typeof pieData[i].itemStyle.color != 'undefined' ? (itemStyle.color = pieData[i].itemStyle.color) : null;
  1155. // typeof pieData[i].itemStyle.opacity != 'undefined'
  1156. // ? (itemStyle.opacity = pieData[i].itemStyle.opacity)
  1157. // : null;
  1158. // seriesItem.itemStyle = itemStyle;
  1159. // }
  1160. // series.push(seriesItem);
  1161. // }
  1162. // // 使用上一次遍历时,计算出的数据和 sumValue,调用 getParametricEquation 函数,
  1163. // // 向每个 series-surface 传入不同的参数方程 series-surface.parametricEquation,也就是实现每一个扇形。
  1164. // for (let i = 0; i < series.length; i++) {
  1165. // endValue = startValue + series[i].pieData.value;
  1166. // series[i].pieData.startRatio = startValue / sumValue;
  1167. // series[i].pieData.endRatio = endValue / sumValue;
  1168. // series[i].parametricEquation = getParametricEquation(
  1169. // series[i].pieData.startRatio,
  1170. // series[i].pieData.endRatio,
  1171. // false,
  1172. // false,
  1173. // k
  1174. // );
  1175. // startValue = endValue;
  1176. // legendData.push(series[i].name);
  1177. // // 判断增加 label 效果 @20210613
  1178. // if (pieData[i].label && pieData[i].label.show) {
  1179. // labelRadian = (series[i].pieData.startRatio + series[i].pieData.endRatio) * Math.PI;
  1180. // labelSeries.data.push({
  1181. // name: series[i].name,
  1182. // value: [Math.cos(labelRadian), Math.sin(labelRadian), 1.2, series[i].pieData.value],
  1183. // itemStyle: {
  1184. // opacity: 1,
  1185. // },
  1186. // });
  1187. // }
  1188. // }
  1189. // // 补充一个透明的圆环,用于支撑高亮功能的近似实现。
  1190. // series.push({
  1191. // name: 'mouseoutSeries',
  1192. // type: 'surface',
  1193. // parametric: true,
  1194. // wireframe: {
  1195. // show: false,
  1196. // },
  1197. // itemStyle: {
  1198. // opacity: 0,
  1199. // },
  1200. // parametricEquation: {
  1201. // u: {
  1202. // min: 0,
  1203. // max: Math.PI * 2,
  1204. // step: Math.PI / 20,
  1205. // },
  1206. // v: {
  1207. // min: 0,
  1208. // max: Math.PI,
  1209. // step: Math.PI / 20,
  1210. // },
  1211. // x: function (u, v) {
  1212. // return Math.sin(v) * Math.sin(u) + Math.sin(u);
  1213. // },
  1214. // y: function (u, v) {
  1215. // return Math.sin(v) * Math.cos(u) + Math.cos(u);
  1216. // },
  1217. // z: function (u, v) {
  1218. // return Math.cos(v) > 0 ? 0.1 : -0.1;
  1219. // },
  1220. // },
  1221. // });
  1222. // // 将 labelSeries 添加进去 @20210613
  1223. // series.push(labelSeries);
  1224. // // 准备待返回的配置项,把准备好的 legendData、series 传入。
  1225. // let option = {
  1226. // //animation: false,
  1227. // legend: {
  1228. // data: legendData,
  1229. // op: '5%',
  1230. // //orient: 'vertical',
  1231. // textStyle: {
  1232. // color: '#fff',
  1233. // },
  1234. // },
  1235. // tooltip: {
  1236. // formatter: (params) => {
  1237. // if (params.seriesName !== 'mouseoutSeries') {
  1238. // return `${
  1239. // params.seriesName
  1240. // }<br/><span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:${
  1241. // params.color
  1242. // };"></span>${option.series[params.seriesIndex].pieData.value}`;
  1243. // }
  1244. // },
  1245. // },
  1246. // // 增加渐变色尝试(手动通过 seriesIndex 指定系列) @20211228
  1247. // xAxis3D: {
  1248. // min: -1,
  1249. // max: 1,
  1250. // },
  1251. // yAxis3D: {
  1252. // min: -1,
  1253. // max: 1,
  1254. // },
  1255. // zAxis3D: {
  1256. // min: -1,
  1257. // max: 1,
  1258. // },
  1259. // grid3D: {
  1260. // show: false,
  1261. // boxHeight: 10,
  1262. // //top: '30%',
  1263. // bottom: '50%',
  1264. // viewControl: {
  1265. // //3d效果可以放大、旋转等,请自己去查看官方配置
  1266. // alpha: 30, //角度
  1267. // distance: 150, //调整视角到主体的距离,类似调整zoom
  1268. // rotateSensitivity: 0, //设置为0无法旋转
  1269. // zoomSensitivity: 0, //设置为0无法缩放
  1270. // panSensitivity: 0, //设置为0无法平移
  1271. // autoRotate: false, //自动旋转
  1272. // },
  1273. // },
  1274. // series: series,
  1275. // };
  1276. // return option;
  1277. // }
  1278. // // 传入数据生成 option
  1279. // option = getPie3D([
  1280. // {
  1281. // name: '传统产业投资',
  1282. // value: 405.29,
  1283. // itemStyle: {
  1284. // color: '#6682f5'
  1285. // }
  1286. // }, {
  1287. // name: '战略新兴产业投资',
  1288. // value: 196.44,
  1289. // itemStyle: {
  1290. // color: '#69c0ff'
  1291. // }
  1292. // }, {
  1293. // name: '基础产业投资',
  1294. // value: 722.34,
  1295. // itemStyle: {
  1296. // color: '#43ede3'
  1297. // }
  1298. // }
  1299. // ]);
  1300. // myChart.setOption(option);
  1301. // // 监听鼠标事件,实现饼图选中效果(单选),近似实现高亮(放大)效果。
  1302. // let selectedIndex = '';
  1303. // let hoveredIndex = '';
  1304. // let that = this
  1305. // // 监听点击事件,实现选中效果(单选)
  1306. // myChart.on('click', function (param) {
  1307. // console.log(param)
  1308. // if (param.seriesName == '战略新兴产业投资') {
  1309. // that.tipTitle2 = param.seriesName
  1310. // that.showTip2 = true
  1311. // }
  1312. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否选中取反。
  1313. // // let isSelected = !option.series[params.seriesIndex].pieStatus.selected;
  1314. // // let isHovered = option.series[params.seriesIndex].pieStatus.hovered;
  1315. // // let k = option.series[params.seriesIndex].pieStatus.k;
  1316. // // let startRatio = option.series[params.seriesIndex].pieData.startRatio;
  1317. // // let endRatio = option.series[params.seriesIndex].pieData.endRatio;
  1318. // // // 如果之前选中过其他扇形,将其取消选中(对 option 更新)
  1319. // // if (selectedIndex !== '' && selectedIndex !== params.seriesIndex) {
  1320. // // option.series[selectedIndex].parametricEquation = getParametricEquation(
  1321. // // option.series[selectedIndex].pieData.startRatio,
  1322. // // option.series[selectedIndex].pieData.endRatio,
  1323. // // false,
  1324. // // false,
  1325. // // k
  1326. // // );
  1327. // // option.series[selectedIndex].pieStatus.selected = false;
  1328. // // }
  1329. // // // 对当前点击的扇形,执行选中/取消选中操作(对 option 更新)
  1330. // // option.series[params.seriesIndex].parametricEquation = getParametricEquation(
  1331. // // startRatio,
  1332. // // endRatio,
  1333. // // isSelected,
  1334. // // isHovered,
  1335. // // k
  1336. // // );
  1337. // // option.series[params.seriesIndex].pieStatus.selected = isSelected;
  1338. // // // 如果本次是选中操作,记录上次选中的扇形对应的系列号 seriesIndex
  1339. // // isSelected ? (selectedIndex = params.seriesIndex) : null;
  1340. // // // 使用更新后的 option,渲染图表
  1341. // // myChart.setOption(option);
  1342. // });
  1343. // let i = 0
  1344. // this.timeOut = setInterval(function() {
  1345. // console.log(i)
  1346. // let startRatio = option.series[i].pieData.startRatio;
  1347. // let endRatio = option.series[i].pieData.endRatio;
  1348. // let isSelected = option.series[i].pieStatus.selected;
  1349. // let k = option.series[i].pieStatus.k;
  1350. // if(i == 0){
  1351. // let startRatio2 = option.series[2].pieData.startRatio;
  1352. // let endRatio2 = option.series[2].pieData.endRatio;
  1353. // let isSelected2 = option.series[2].pieStatus.selected;
  1354. // let k2 = option.series[2].pieStatus.k;
  1355. // option.series[2].parametricEquation = getParametricEquation(startRatio2, endRatio2, isSelected2, false, k2)
  1356. // } else {
  1357. // let startRatio3 = option.series[i-1].pieData.startRatio;
  1358. // let endRatio3 = option.series[i-1].pieData.endRatio;
  1359. // let isSelected3 = option.series[i-1].pieStatus.selected;
  1360. // let k3 = option.series[i-1].pieStatus.k;
  1361. // option.series[i-1].parametricEquation = getParametricEquation(startRatio3, endRatio3, isSelected3, false, k3)
  1362. // }
  1363. // option.series[i].parametricEquation = getParametricEquation(startRatio, endRatio, isSelected, true, k)
  1364. // myChart.setOption(option);
  1365. // i ++
  1366. // if(i == 3) {
  1367. // i = 0
  1368. // }
  1369. // }, 3000);
  1370. // // 监听 mouseover,近似实现高亮(放大)效果
  1371. // myChart.on('mouseover', function (params) {
  1372. // // 准备重新渲染扇形所需的参数
  1373. // let isSelected;
  1374. // let isHovered;
  1375. // let startRatio;
  1376. // let endRatio;
  1377. // let k;
  1378. // // 如果触发 mouseover 的扇形当前已高亮,则不做操作
  1379. // if (hoveredIndex === params.seriesIndex) {
  1380. // return;
  1381. // // 否则进行高亮及必要的取消高亮操作
  1382. // } else {
  1383. // // 如果当前有高亮的扇形,取消其高亮状态(对 option 更新)
  1384. // if (hoveredIndex !== '') {
  1385. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否高亮设置为 false。
  1386. // isSelected = option.series[hoveredIndex].pieStatus.selected;
  1387. // isHovered = false;
  1388. // startRatio = option.series[hoveredIndex].pieData.startRatio;
  1389. // endRatio = option.series[hoveredIndex].pieData.endRatio;
  1390. // k = option.series[hoveredIndex].pieStatus.k;
  1391. // // 对当前点击的扇形,执行取消高亮操作(对 option 更新)
  1392. // option.series[hoveredIndex].parametricEquation = getParametricEquation(
  1393. // startRatio,
  1394. // endRatio,
  1395. // isSelected,
  1396. // isHovered,
  1397. // k
  1398. // );
  1399. // option.series[hoveredIndex].pieStatus.hovered = isHovered;
  1400. // // 将此前记录的上次选中的扇形对应的系列号 seriesIndex 清空
  1401. // hoveredIndex = '';
  1402. // }
  1403. // // 如果触发 mouseover 的扇形不是透明圆环,将其高亮(对 option 更新)
  1404. // if (params.seriesName !== 'mouseoutSeries') {
  1405. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否高亮设置为 true。
  1406. // isSelected = option.series[params.seriesIndex].pieStatus.selected;
  1407. // isHovered = true;
  1408. // startRatio = option.series[params.seriesIndex].pieData.startRatio;
  1409. // endRatio = option.series[params.seriesIndex].pieData.endRatio;
  1410. // k = option.series[params.seriesIndex].pieStatus.k;
  1411. // // 对当前点击的扇形,执行高亮操作(对 option 更新)
  1412. // option.series[params.seriesIndex].parametricEquation = getParametricEquation(
  1413. // startRatio,
  1414. // endRatio,
  1415. // isSelected,
  1416. // isHovered,
  1417. // k
  1418. // );
  1419. // option.series[params.seriesIndex].pieStatus.hovered = isHovered;
  1420. // // 记录上次高亮的扇形对应的系列号 seriesIndex
  1421. // hoveredIndex = params.seriesIndex;
  1422. // }
  1423. // // 使用更新后的 option,渲染图表
  1424. // myChart.setOption(option);
  1425. // }
  1426. // });
  1427. // // 修正取消高亮失败的 bug
  1428. // myChart.on('globalout', function () {
  1429. // if (hoveredIndex !== '') {
  1430. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否高亮设置为 true。
  1431. // isSelected = option.series[hoveredIndex].pieStatus.selected;
  1432. // isHovered = false;
  1433. // k = option.series[hoveredIndex].pieStatus.k;
  1434. // startRatio = option.series[hoveredIndex].pieData.startRatio;
  1435. // endRatio = option.series[hoveredIndex].pieData.endRatio;
  1436. // // 对当前点击的扇形,执行取消高亮操作(对 option 更新)
  1437. // option.series[hoveredIndex].parametricEquation = getParametricEquation(
  1438. // startRatio,
  1439. // endRatio,
  1440. // isSelected,
  1441. // isHovered,
  1442. // k
  1443. // );
  1444. // option.series[hoveredIndex].pieStatus.hovered = isHovered;
  1445. // // 将此前记录的上次选中的扇形对应的系列号 seriesIndex 清空
  1446. // hoveredIndex = '';
  1447. // }
  1448. // // 使用更新后的 option,渲染图表
  1449. // myChart.setOption(option);
  1450. // });
  1451. // // 新增监听图例事件,同步显示隐藏对应 label @20210613
  1452. // myChart.on('legendselectchanged', function (params) {
  1453. // let seriesLength = option.series.length;
  1454. // console.log(option.series[seriesLength - 1].data);
  1455. // for (let i = 0; i < option.series[seriesLength - 1].data.length; i++) {
  1456. // console.log(option.series[seriesLength - 1].data[i]);
  1457. // if (option.series[seriesLength - 1].data[i].name == params.name) {
  1458. // console.log(option.series[seriesLength - 1].data[i]);
  1459. // params.selected[params.name]
  1460. // ? (option.series[seriesLength - 1].data[i].itemStyle.opacity = 1)
  1461. // : (option.series[seriesLength - 1].data[i].itemStyle.opacity = 0);
  1462. // }
  1463. // }
  1464. // myChart.setOption(option);
  1465. // });
  1466. // console.log('66', myChart);
  1467. // },
  1468. initChartL1 () {
  1469. let myChart = echarts.init(this.$refs['echartR1'])
  1470. let option = {
  1471. tooltip: {
  1472. trigger: 'item',
  1473. //position: ['65%', '42%'],
  1474. position: (point,params,dom,rect,size) => {
  1475. if(params.name == '传统产业'){
  1476. return ['55%','25%']
  1477. } else if (params.name == '战略新兴产业') {
  1478. return ['55%','65%']
  1479. } else if (params.name == '基础产业') {
  1480. return ['18%','35%']
  1481. }
  1482. },
  1483. formatter: params => {
  1484. return `<span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${params.color}"></span> ${params.name}:${params.percent}% <br/><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${params.color}"></span> 金额:${params.value}亿`
  1485. }, //+ '<br/>'+ '{a1}:{c1}' + '%',
  1486. axisPointer: {
  1487. type: 'cross',
  1488. },
  1489. },
  1490. color: ['#6682f5', '#69c0ff', '#43ede3', '#8ba2ff'],
  1491. legend: {
  1492. left: '2%',
  1493. bottom: '2%',
  1494. orient: 'vertical',
  1495. //right: '2%',
  1496. textStyle: {
  1497. color: '#9DB9EB',
  1498. },
  1499. },
  1500. series: [
  1501. // {
  1502. // hoverOffset: 0,
  1503. // startAngle: 90,
  1504. // type: "pie",
  1505. // radius: [48, 55],
  1506. // center: ["50%", "50%"],
  1507. // itemStyle: {
  1508. // normal: {
  1509. // borderColor: 'rgba(1,31,6,0.7)',
  1510. // borderWidth: 4
  1511. // }
  1512. // },
  1513. // tooltip: {
  1514. // show: false
  1515. // },
  1516. // labelLine: {
  1517. // show: false
  1518. // },
  1519. // label: {
  1520. // show: false
  1521. // },
  1522. // data: industryList
  1523. // },
  1524. {
  1525. name: '',
  1526. type: 'pie',
  1527. radius: ['50%', '75%'],
  1528. center: ["50%", "50%"],
  1529. label:{
  1530. show: false,
  1531. },
  1532. itemStyle: {
  1533. normal: {
  1534. borderColor: 'rgba(1,31,64,0.7)',
  1535. borderWidth: 6
  1536. }
  1537. },
  1538. labelLine: {
  1539. show: false,
  1540. },
  1541. data: industryList,
  1542. },
  1543. ],
  1544. }
  1545. let that = this
  1546. myChart.on('click', function (param) {
  1547. console.log(param)
  1548. if (param.name == '战略新兴产业') {
  1549. that.tipTitle2 = param.name
  1550. that.showTip2 = true
  1551. }
  1552. })
  1553. myChart.setOption(option)
  1554. tools.loopShowTooltip(myChart, option, {
  1555. nterval: 2000,
  1556. loopSeries: true,
  1557. })
  1558. },
  1559. initChartL2() {
  1560. let myChart = echarts.init(this.$refs['echartL2'])
  1561. let option = {
  1562. tooltip: {
  1563. formatter: data => {
  1564. console.log(data)
  1565. return `${data[0].name}<br /><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[0].color.colorStops[0].color}"></span> ${data[0].seriesName}:${data[0].value}亿 <br/><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[1].color.colorStops[0].color}"></span> ${data[1].seriesName}:${data[1].value}亿`
  1566. },
  1567. trigger: 'axis',
  1568. axisPointer: {
  1569. type: 'cross',
  1570. },
  1571. },
  1572. dataZoom:[
  1573. {
  1574. // start: 9,//默认为@
  1575. // end: 100,//黑认认为1@0
  1576. type: "slider",
  1577. show: false,
  1578. // xAxisIndex: [0]
  1579. handlesize: 0,//滑动条的 左右2个滑动条的大小
  1580. startValue: 5,// 初始显示值
  1581. endValue: 0,// 结束显示值
  1582. height: 10,//组件高度
  1583. left:"5%",
  1584. right: "4%",//右边的距离
  1585. bottom: "25%",//底边的距离
  1586. borderColor:"#939",
  1587. fillerColor:"#269cdb",
  1588. borderRadius: 5,
  1589. backgroundColor: "#33384b",//两边未选中的滑动条区域的额色
  1590. showDataShadow: false,//是否显示数据阴影
  1591. showDetail: false,//即拖拽时候是否显示详细数值信息
  1592. truerealtime: true,//是否实时更新
  1593. filterMode: "filter"
  1594. },{
  1595. type:'inside',
  1596. show: true,
  1597. start: 1,
  1598. end: 100
  1599. }
  1600. ],
  1601. grid: {
  1602. top: '16%',
  1603. right: '3%',
  1604. left: '10%',
  1605. bottom: '23%',
  1606. },
  1607. legend: {
  1608. top: '1',
  1609. right: '10',
  1610. textStyle: {
  1611. color: 'rgba(250,250,250,0.6)',
  1612. },
  1613. },
  1614. xAxis: {
  1615. data: executeList.map(item => item.name),
  1616. axisLine: {
  1617. show: true, //隐藏X轴轴线
  1618. lineStyle: {
  1619. color: '#005094',
  1620. width: 1,
  1621. },
  1622. },
  1623. axisTick: {
  1624. show: false, //隐藏X轴刻度
  1625. },
  1626. axisLabel: {
  1627. show: true,
  1628. rotate: 40,
  1629. textStyle: {
  1630. color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
  1631. },
  1632. },
  1633. },
  1634. yAxis: [
  1635. {
  1636. type: 'value',
  1637. name: '亿元',
  1638. nameTextStyle: {
  1639. color: 'rgba(255,255,255,0.6)',
  1640. },
  1641. splitLine: {
  1642. show: true,
  1643. lineStyle: {
  1644. color: '#68b4dd66',
  1645. type: 'dashed',
  1646. },
  1647. },
  1648. axisLine: {
  1649. show: true,
  1650. lineStyle: {
  1651. color: '#3D7495',
  1652. },
  1653. },
  1654. axisLabel: {
  1655. show: true,
  1656. textStyle: {
  1657. color: 'rgba(250,250,250,0.6)',
  1658. },
  1659. },
  1660. },
  1661. ],
  1662. series: [
  1663. {
  1664. name: '计划投资',
  1665. type: 'bar',
  1666. barWidth: 10,
  1667. itemStyle: {
  1668. normal: {
  1669. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1670. {
  1671. offset: 0,
  1672. color: '#69c0ff',
  1673. },
  1674. {
  1675. offset: 1,
  1676. color: '#082550',
  1677. },
  1678. ]),
  1679. },
  1680. },
  1681. data: executeList.map(item => item.value),
  1682. },
  1683. {
  1684. name: '实际投资',
  1685. type: 'bar',
  1686. barWidth: 10,
  1687. itemStyle: {
  1688. normal: {
  1689. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1690. {
  1691. offset: 0,
  1692. color: '#957DFF',
  1693. },
  1694. {
  1695. offset: 1,
  1696. color: '#082550',
  1697. },
  1698. ]),
  1699. },
  1700. },
  1701. data: executeList.map(item => item.value2),
  1702. },
  1703. ],
  1704. }
  1705. myChart.setOption(option)
  1706. tools.loopShowTooltip(myChart, option, {
  1707. nterval: 2000,
  1708. loopSeries: true,
  1709. })
  1710. let arr = executeList.map(item => item.value2)
  1711. this.timeOut = setInterval(function () {
  1712. let startValue = myChart.getModel().option.dataZoom[0].startValue;
  1713. let endValue = myChart.getModel().option.dataZoom[0].endValue;
  1714. let start = myChart.getModel().option.xAxis[0].data[startValue];//起始X轴
  1715. let end = myChart.getModel().option.xAxis[0].data[endValue];//结束X轴
  1716. // 每次向后滚动一个,最后一个从头开始。
  1717. // console.log(option.dataZoom[0].endValue);
  1718. if (option.dataZoom[0].endValue >= 12) {
  1719. option.dataZoom[0].endValue = 5
  1720. option.dataZoom[0].startValue = 0
  1721. } else {
  1722. option.dataZoom[0].endValue = option.dataZoom[0].endValue + 6
  1723. option.dataZoom[0].startValue = option.dataZoom[0].startValue + 6
  1724. }
  1725. // myChart.dispatchAction({
  1726. // type: 'showTip',
  1727. // seriesIndex: 0,
  1728. // dataIndex: startValue +1,
  1729. // });
  1730. myChart.setOption(option);
  1731. }, 12000);
  1732. },
  1733. initChartR1() {
  1734. let myChart = echarts.init(this.$refs['echartL1'])
  1735. let option = {
  1736. tooltip: {
  1737. trigger: 'axis',
  1738. formatter: '{a0}:{c0}' + '亿元', //+ '<br/>'+ '{a1}:{c1}' + '%',
  1739. axisPointer: {
  1740. type: 'cross',
  1741. },
  1742. },
  1743. grid: {
  1744. top: '16%',
  1745. right: '10%',
  1746. left: '10%',
  1747. bottom: '22%',
  1748. },
  1749. // legend: {
  1750. // top: '1',
  1751. // textStyle: {
  1752. // color: 'rgba(250,250,250,0.6)',
  1753. // },
  1754. // },
  1755. xAxis: {
  1756. data: statusList.map(item => item.name),
  1757. axisLine: {
  1758. show: true, //隐藏X轴轴线
  1759. lineStyle: {
  1760. color: '#005094',
  1761. width: 1,
  1762. },
  1763. },
  1764. axisTick: {
  1765. show: false, //隐藏X轴刻度
  1766. },
  1767. axisLabel: {
  1768. show: true,
  1769. rotate: 20,
  1770. textStyle: {
  1771. color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
  1772. },
  1773. },
  1774. },
  1775. yAxis: [
  1776. {
  1777. type: 'value',
  1778. name: '亿元',
  1779. nameTextStyle: {
  1780. color: 'rgba(255,255,255,0.6)',
  1781. },
  1782. splitLine: {
  1783. show: true,
  1784. lineStyle: {
  1785. color: '#68b4dd66',
  1786. type: 'dashed',
  1787. },
  1788. },
  1789. axisLine: {
  1790. show: true,
  1791. lineStyle: {
  1792. color: '#3D7495',
  1793. },
  1794. },
  1795. axisLabel: {
  1796. show: true,
  1797. textStyle: {
  1798. color: 'rgba(250,250,250,0.6)',
  1799. },
  1800. },
  1801. },
  1802. {
  1803. type: 'value',
  1804. axisLine: {
  1805. show: false,
  1806. },
  1807. splitLine: {
  1808. show: false,
  1809. },
  1810. axisLabel: {
  1811. show: true,
  1812. formatter: '{value} %',
  1813. textStyle: {
  1814. color: 'rgba(250,250,250,0.6)',
  1815. },
  1816. },
  1817. },
  1818. ],
  1819. series: [
  1820. {
  1821. type: 'bar',
  1822. name: '投资金额',
  1823. barWidth: 15,
  1824. itemStyle: {
  1825. normal: {
  1826. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1827. {
  1828. offset: 0,
  1829. color: '#69c0ff',
  1830. },
  1831. {
  1832. offset: 1,
  1833. color: '#082550',
  1834. },
  1835. ]),
  1836. },
  1837. },
  1838. data: statusList.map(item => item.value),
  1839. },
  1840. ],
  1841. }
  1842. myChart.setOption(option)
  1843. tools.loopShowTooltip(myChart, option, {
  1844. nterval: 2000,
  1845. loopSeries: true,
  1846. })
  1847. },
  1848. initChartR2() {
  1849. let myChart = echarts.init(this.$refs['echartR2'])
  1850. let option = {
  1851. tooltip: {
  1852. trigger: 'item',
  1853. position: (point,params,dom,rect,size) => {
  1854. if(params.name == '新建'){
  1855. return ['55%','45%']
  1856. } else {
  1857. return ['15%','40%']
  1858. }
  1859. },
  1860. formatter: params => {
  1861. return `<span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${params.color}"></span> ${params.name}:${params.value}个 <br/><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${params.color}"></span> 投资完成额:${params.data.value2}亿`
  1862. }, //+ '<br/>'+ '{a1}:{c1}' + '%',
  1863. axisPointer: {
  1864. type: 'cross',
  1865. },
  1866. },
  1867. color: [ '#43ede3', '#8ba2ff'],
  1868. legend: {
  1869. left: '5%',
  1870. bottom: '2%',
  1871. orient: 'vertical',
  1872. //right: '2%',
  1873. textStyle: {
  1874. color: '#9DB9EB',
  1875. },
  1876. },
  1877. series: [
  1878. {
  1879. name: '',
  1880. type: 'pie',
  1881. radius: ['50%', '75%'],
  1882. center: ["50%", "50%"],
  1883. label:{
  1884. show: false,
  1885. },
  1886. itemStyle: {
  1887. normal: {
  1888. borderColor: 'rgba(1,31,64,0.7)',
  1889. borderWidth: 6
  1890. }
  1891. },
  1892. labelLine: {
  1893. show: false,
  1894. },
  1895. data: chartDateR2,
  1896. },
  1897. ],
  1898. }
  1899. myChart.setOption(option)
  1900. tools.loopShowTooltip(myChart, option, {
  1901. nterval: 10000,
  1902. loopSeries: true,
  1903. })
  1904. },
  1905. initProjectList() {
  1906. let dataList = []
  1907. projectList.map(item => {
  1908. dataList.push([item.office,item.name, item.value + '亿'])
  1909. })
  1910. this.storageRecordConfig = {
  1911. header: ['企业集团', '项目名称', '投资金额'],
  1912. headerBGC: '#05507b33',
  1913. oddRowBGC: '#05507b33',
  1914. evenRowBGC: '',
  1915. headerHeight: '40',
  1916. rowNum: 5,
  1917. columnWidth: [100, 350],
  1918. align: ['center', 'center', 'center'],
  1919. data: dataList,
  1920. }
  1921. }
  1922. },
  1923. })