investHome.js 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980
  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. if (params.name == '太原市') {
  576. that.showTip = true
  577. }
  578. // window.open('https://www.baidu.com')
  579. })
  580. tools.loopShowTooltip(myChart, option, {
  581. interval: 2000,
  582. loopSeries: false,
  583. });
  584. myChart.setOption(option)
  585. },
  586. // initChartTip(){
  587. // let myChart = echarts.init(this.$refs['echartTip'])
  588. // let option = {
  589. // tooltip: {
  590. // trigger: 'item',
  591. // },
  592. // color: ['#6682f5', '#69c0ff', '#43ede3','#8ba2ff'],
  593. // legend: {
  594. // top: '0',
  595. // orient: 'vertical',
  596. // left: '2%',
  597. // textStyle: {
  598. // color: '#9DB9EB',
  599. // },
  600. // },
  601. // series: [
  602. // {
  603. // name: '',
  604. // type: 'pie',
  605. // center: ['45%','40%'],
  606. // radius: ['35%', '50%'],
  607. // labelLine: {
  608. // normal: {
  609. // lineStyle: {
  610. // width: 1,
  611. // },
  612. // },
  613. // },
  614. // data: statusList,
  615. // },
  616. // ],
  617. // }
  618. // myChart.setOption(option)
  619. // tools.loopShowTooltip(myChart, option, {
  620. // nterval: 2000,
  621. // loopSeries: true,
  622. // })
  623. // myChart.on('click', function(param) {
  624. // console.log(param)
  625. // window.open('https://www.baidu.com')
  626. // })
  627. // },
  628. initChartTip2() {
  629. let myChart = echarts.init(this.$refs['echartTip2'])
  630. let option = {
  631. tooltip: {
  632. trigger: 'axis',
  633. axisPointer: {
  634. type: 'cross',
  635. },
  636. },
  637. // dataZoom:[
  638. // {
  639. // // start: 9,//默认为@
  640. // // end: 100,//黑认认为1@0
  641. // type: "slider",
  642. // show: true,
  643. // // xAxisIndex: [0]
  644. // handlesize: 0,//滑动条的 左右2个滑动条的大小
  645. // startValue: 9,// 初始显示值
  646. // endValue: 6,// 结束显示值
  647. // height: 10,//组件高度
  648. // left:"5%",
  649. // right: "4%",//右边的距离
  650. // bottom: "25%",//底边的距离
  651. // borderColor:"#939",
  652. // fillerColor:"#269cdb",
  653. // borderRadius: 5,
  654. // backgroundColor: "#33384b",//两边未选中的滑动条区域的额色
  655. // showDataShadow: false,//是否显示数据阴影
  656. // showDetail: false,//即拖拽时候是否显示详细数值信息
  657. // truerealtime: false,//是否实时更新
  658. // filterMode: "filter"
  659. // },{
  660. // type:'inside',
  661. // show: true,
  662. // start: 1,
  663. // end: 100
  664. // }
  665. // ],
  666. grid: {
  667. top: '10%',
  668. right: '3%',
  669. left: '10%',
  670. bottom: '30%',
  671. },
  672. legend: {
  673. top: '1',
  674. right: '20',
  675. textStyle: {
  676. color: 'rgba(250,250,250,0.6)',
  677. },
  678. },
  679. xAxis: {
  680. data: tipData.map(item => item.name),
  681. axisLine: {
  682. show: true, //隐藏X轴轴线
  683. lineStyle: {
  684. color: '#005094',
  685. width: 1,
  686. },
  687. },
  688. axisTick: {
  689. show: false, //隐藏X轴刻度
  690. },
  691. axisLabel: {
  692. show: true,
  693. rotate: 40,
  694. textStyle: {
  695. color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
  696. },
  697. },
  698. },
  699. yAxis: [
  700. {
  701. type: 'value',
  702. nameTextStyle: {
  703. color: '#ebf8ac',
  704. },
  705. splitLine: {
  706. show: true,
  707. lineStyle: {
  708. color: '#68b4dd66',
  709. type: 'dashed',
  710. },
  711. },
  712. axisLine: {
  713. show: true,
  714. lineStyle: {
  715. color: '#3D7495',
  716. },
  717. },
  718. axisLabel: {
  719. show: true,
  720. formatter: '{value} 亿',
  721. textStyle: {
  722. color: 'rgba(250,250,250,0.6)',
  723. },
  724. },
  725. },
  726. ],
  727. series: [
  728. {
  729. name: '投资金额',
  730. type: 'bar',
  731. barWidth: 15,
  732. itemStyle: {
  733. normal: {
  734. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  735. {
  736. offset: 0,
  737. color: '#69c0ff',
  738. },
  739. {
  740. offset: 1,
  741. color: '#082550',
  742. },
  743. ]),
  744. },
  745. },
  746. data: tipData.map(item => item.value),
  747. },
  748. // {
  749. // name: '实际投资',
  750. // type: 'bar',
  751. // barWidth: 10,
  752. // itemStyle: {
  753. // normal: {
  754. // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  755. // {
  756. // offset: 0,
  757. // color: '#957DFF',
  758. // },
  759. // {
  760. // offset: 1,
  761. // color: '#082550',
  762. // },
  763. // ]),
  764. // },
  765. // },
  766. // data: executeList.map(item=>item.value2),
  767. // },
  768. ],
  769. }
  770. myChart.on('click', function (data) {
  771. if (data.name == '交控集团') {
  772. window.location.href = './investHomeChild.html?type=1'
  773. }
  774. })
  775. tools.loopShowTooltip(myChart, option, {
  776. nterval: 2000,
  777. loopSeries: true,
  778. })
  779. myChart.setOption(option)
  780. },
  781. initChartTip3() {
  782. let myChart = echarts.init(this.$refs['echartTip3'])
  783. let option = {
  784. title: {
  785. //text : '产业类别',
  786. x: 'center',
  787. textStyle: {
  788. color: '#fff'
  789. }
  790. },
  791. tooltip: {
  792. trigger: 'axis',
  793. axisPointer: {
  794. type: 'cross',
  795. },
  796. },
  797. grid: {
  798. top: '15%',
  799. right: '3%',
  800. left: '10%',
  801. bottom: '30%',
  802. },
  803. legend: {
  804. top: '1',
  805. right: '15',
  806. textStyle: {
  807. color: 'rgba(250,250,250,0.6)',
  808. },
  809. },
  810. xAxis: {
  811. data: tipTopData.map(item => item.name),
  812. axisLine: {
  813. show: true, //隐藏X轴轴线
  814. lineStyle: {
  815. color: '#005094',
  816. width: 1,
  817. },
  818. },
  819. axisTick: {
  820. show: false, //隐藏X轴刻度
  821. },
  822. axisLabel: {
  823. show: true,
  824. rotate: 30,
  825. textStyle: {
  826. color: '#fff'//color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  827. },
  828. },
  829. },
  830. yAxis: [
  831. {
  832. type: 'value',
  833. nameTextStyle: {
  834. color: '#ebf8ac',
  835. },
  836. splitLine: {
  837. show: true,
  838. lineStyle: {
  839. color: '#68b4dd66',
  840. type: 'dashed',
  841. },
  842. },
  843. axisLine: {
  844. show: true,
  845. lineStyle: {
  846. color: '#3D7495',
  847. },
  848. },
  849. axisLabel: {
  850. show: true,
  851. formatter: '{value} 亿',
  852. textStyle: {
  853. color: 'rgba(250,250,250,0.6)',
  854. },
  855. },
  856. },
  857. ],
  858. series: [
  859. {
  860. name: '2022年投资完成额',
  861. type: 'line',
  862. barWidth: 15,
  863. itemStyle: {
  864. normal: {
  865. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  866. {
  867. offset: 0,
  868. color: '#69c0ff',
  869. },
  870. {
  871. offset: 1,
  872. color: '#69c0ff',
  873. },
  874. ]),
  875. },
  876. },
  877. data: tipTopData.map(item => item.value),
  878. },
  879. // {
  880. // name: '实际投资',
  881. // type: 'bar',
  882. // barWidth: 10,
  883. // itemStyle: {
  884. // normal: {
  885. // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  886. // {
  887. // offset: 0,
  888. // color: '#957DFF',
  889. // },
  890. // {
  891. // offset: 1,
  892. // color: '#082550',
  893. // },
  894. // ]),
  895. // },
  896. // },
  897. // data: executeList.map(item=>item.value2),
  898. // },
  899. ],
  900. }
  901. myChart.setOption(option)
  902. tools.loopShowTooltip(myChart, option, {
  903. nterval: 2000,
  904. loopSeries: true,
  905. })
  906. },
  907. initChartTip4() {
  908. let myChart = echarts.init(this.$refs['echartTip4'])
  909. let option = {
  910. title: {
  911. //text : '投资项目列表',
  912. x: 'center',
  913. textStyle: {
  914. color: '#fff'
  915. }
  916. },
  917. tooltip: {
  918. trigger: 'axis',
  919. axisPointer: {
  920. type: 'cross',
  921. },
  922. },
  923. // dataZoom:[
  924. // {
  925. // // start: 9,//默认为@
  926. // // end: 100,//黑认认为1@0
  927. // type: "slider",
  928. // show: true,
  929. // // xAxisIndex: [0]
  930. // handlesize: 0,//滑动条的 左右2个滑动条的大小
  931. // startValue: 9,// 初始显示值
  932. // endValue: 6,// 结束显示值
  933. // height: 10,//组件高度
  934. // left:"5%",
  935. // right: "4%",//右边的距离
  936. // bottom: "25%",//底边的距离
  937. // borderColor:"#939",
  938. // fillerColor:"#269cdb",
  939. // borderRadius: 5,
  940. // backgroundColor: "#33384b",//两边未选中的滑动条区域的额色
  941. // showDataShadow: false,//是否显示数据阴影
  942. // showDetail: false,//即拖拽时候是否显示详细数值信息
  943. // truerealtime: false,//是否实时更新
  944. // filterMode: "filter"
  945. // },{
  946. // type:'inside',
  947. // show: true,
  948. // start: 1,
  949. // end: 100
  950. // }
  951. // ],
  952. grid: {
  953. top: '15%',
  954. right: '3%',
  955. left: '10%',
  956. bottom: '20%',
  957. },
  958. legend: {
  959. top: '0',
  960. right: '20',
  961. textStyle: {
  962. color: 'rgba(250,250,250,0.6)',
  963. },
  964. },
  965. xAxis: {
  966. data: tipBottomData.map(item => item.name),
  967. axisLine: {
  968. show: true, //隐藏X轴轴线
  969. lineStyle: {
  970. color: '#005094',
  971. width: 1,
  972. },
  973. },
  974. axisTick: {
  975. show: false, //隐藏X轴刻度
  976. },
  977. axisLabel: {
  978. show: true,
  979. rotate: 30,
  980. textStyle: {
  981. color: '#fff'//color: 'rgba(255,255,255,0.6)', //X轴文字颜色
  982. },
  983. },
  984. },
  985. yAxis: [
  986. {
  987. type: 'value',
  988. nameTextStyle: {
  989. color: '#ebf8ac',
  990. },
  991. splitLine: {
  992. show: true,
  993. lineStyle: {
  994. color: '#68b4dd66',
  995. type: 'dashed',
  996. },
  997. },
  998. axisLine: {
  999. show: true,
  1000. lineStyle: {
  1001. color: '#3D7495',
  1002. },
  1003. },
  1004. axisLabel: {
  1005. show: true,
  1006. formatter: '{value} 亿',
  1007. textStyle: {
  1008. color: 'rgba(250,250,250,0.6)',
  1009. },
  1010. },
  1011. },
  1012. ],
  1013. series: [
  1014. {
  1015. name: '2022年投资完成额',
  1016. type: 'bar',
  1017. barWidth: 15,
  1018. itemStyle: {
  1019. normal: {
  1020. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1021. {
  1022. offset: 0,
  1023. color: '#69c0ff',
  1024. },
  1025. {
  1026. offset: 1,
  1027. color: '#082550',
  1028. },
  1029. ]),
  1030. },
  1031. },
  1032. data: tipBottomData.map(item => item.value),
  1033. },
  1034. ],
  1035. }
  1036. myChart.on('click', function (data) {
  1037. if (data.name == '华阳新材') {
  1038. window.location.href = './investHomeChild.html?type=2'
  1039. }
  1040. })
  1041. myChart.setOption(option)
  1042. tools.loopShowTooltip(myChart, option, {
  1043. nterval: 2000,
  1044. loopSeries: true,
  1045. })
  1046. },
  1047. // initChartL1() {
  1048. // let myChart = echarts.init(this.$refs['echartR1'])
  1049. // // 生成扇形的曲面参数方程,用于 series-surface.parametricEquation
  1050. // function getParametricEquation(startRatio, endRatio, isSelected, isHovered, k) {
  1051. // // 计算
  1052. // let midRatio = (startRatio + endRatio) / 2;
  1053. // let startRadian = startRatio * Math.PI * 2;
  1054. // let endRadian = endRatio * Math.PI * 2;
  1055. // let midRadian = midRatio * Math.PI * 2;
  1056. // // 如果只有一个扇形,则不实现选中效果。
  1057. // if (startRatio === 0 && endRatio === 1) {
  1058. // isSelected = false;
  1059. // }
  1060. // // 通过扇形内径/外径的值,换算出辅助参数 k(默认值 1/3)
  1061. // k = typeof k !== 'undefined' ? k : 1 / 3;
  1062. // // 计算选中效果分别在 x 轴、y 轴方向上的位移(未选中,则位移均为 0)
  1063. // let offsetX = isSelected ? Math.cos(midRadian) * 0.1 : 0;
  1064. // let offsetY = isSelected ? Math.sin(midRadian) * 0.1 : 0;
  1065. // // 计算高亮效果的放大比例(未高亮,则比例为 1)
  1066. // let hoverRate = isHovered ? 1.07 : 1;
  1067. // // 返回曲面参数方程
  1068. // return {
  1069. // u: {
  1070. // min: -Math.PI,
  1071. // max: Math.PI * 3,
  1072. // step: Math.PI / 32,
  1073. // },
  1074. // v: {
  1075. // min: 0,
  1076. // max: Math.PI * 2,
  1077. // step: Math.PI / 20,
  1078. // },
  1079. // x: function (u, v) {
  1080. // if (u < startRadian) {
  1081. // return offsetX + Math.cos(startRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1082. // }
  1083. // if (u > endRadian) {
  1084. // return offsetX + Math.cos(endRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1085. // }
  1086. // return offsetX + Math.cos(u) * (1 + Math.cos(v) * k) * hoverRate;
  1087. // },
  1088. // y: function (u, v) {
  1089. // if (u < startRadian) {
  1090. // return offsetY + Math.sin(startRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1091. // }
  1092. // if (u > endRadian) {
  1093. // return offsetY + Math.sin(endRadian) * (1 + Math.cos(v) * k) * hoverRate;
  1094. // }
  1095. // return offsetY + Math.sin(u) * (1 + Math.cos(v) * k) * hoverRate;
  1096. // },
  1097. // z: function (u, v) {
  1098. // if (u < -Math.PI * 0.5) {
  1099. // return Math.sin(u);
  1100. // }
  1101. // if (u > Math.PI * 2.5) {
  1102. // return Math.sin(u);
  1103. // }
  1104. // return Math.sin(v) > 0 ? 1 : -1;
  1105. // },
  1106. // };
  1107. // }
  1108. // // 生成模拟 3D 饼图的配置项
  1109. // function getPie3D(pieData, internalDiameterRatio) {
  1110. // let series = [];
  1111. // let sumValue = 0;
  1112. // let startValue = 0;
  1113. // let endValue = 0;
  1114. // let legendData = [];
  1115. // let k =
  1116. // typeof internalDiameterRatio !== 'undefined'
  1117. // ? (1 - internalDiameterRatio) / (1 + internalDiameterRatio)
  1118. // : 1 / 5;
  1119. // // 新增标签 series @20210613
  1120. // let labelSeries = {
  1121. // id: 'labelSeries',
  1122. // type: 'bar3D',
  1123. // //zlevel:-9,
  1124. // barSize: [0.1, 0.1],
  1125. // data: [],
  1126. // label: {
  1127. // show: true,
  1128. // formatter: function (params) {
  1129. // return `${params.name}\n${params.value[3]}`;
  1130. // },
  1131. // backgroundColor: '#fff',
  1132. // },
  1133. // };
  1134. // // 为每一个饼图数据,生成一个 series-surface 配置
  1135. // for (let i = 0; i < pieData.length; i++) {
  1136. // sumValue += pieData[i].value;
  1137. // let seriesItem = {
  1138. // name: typeof pieData[i].name === 'undefined' ? `series${i}` : pieData[i].name,
  1139. // type: 'surface',
  1140. // parametric: true,
  1141. // wireframe: {
  1142. // show: false,
  1143. // },
  1144. // pieData: pieData[i],
  1145. // pieStatus: {
  1146. // selected: false,
  1147. // hovered: false,
  1148. // k: k,
  1149. // },
  1150. // };
  1151. // if (typeof pieData[i].itemStyle != 'undefined') {
  1152. // let itemStyle = {};
  1153. // typeof pieData[i].itemStyle.color != 'undefined' ? (itemStyle.color = pieData[i].itemStyle.color) : null;
  1154. // typeof pieData[i].itemStyle.opacity != 'undefined'
  1155. // ? (itemStyle.opacity = pieData[i].itemStyle.opacity)
  1156. // : null;
  1157. // seriesItem.itemStyle = itemStyle;
  1158. // }
  1159. // series.push(seriesItem);
  1160. // }
  1161. // // 使用上一次遍历时,计算出的数据和 sumValue,调用 getParametricEquation 函数,
  1162. // // 向每个 series-surface 传入不同的参数方程 series-surface.parametricEquation,也就是实现每一个扇形。
  1163. // for (let i = 0; i < series.length; i++) {
  1164. // endValue = startValue + series[i].pieData.value;
  1165. // series[i].pieData.startRatio = startValue / sumValue;
  1166. // series[i].pieData.endRatio = endValue / sumValue;
  1167. // series[i].parametricEquation = getParametricEquation(
  1168. // series[i].pieData.startRatio,
  1169. // series[i].pieData.endRatio,
  1170. // false,
  1171. // false,
  1172. // k
  1173. // );
  1174. // startValue = endValue;
  1175. // legendData.push(series[i].name);
  1176. // // 判断增加 label 效果 @20210613
  1177. // if (pieData[i].label && pieData[i].label.show) {
  1178. // labelRadian = (series[i].pieData.startRatio + series[i].pieData.endRatio) * Math.PI;
  1179. // labelSeries.data.push({
  1180. // name: series[i].name,
  1181. // value: [Math.cos(labelRadian), Math.sin(labelRadian), 1.2, series[i].pieData.value],
  1182. // itemStyle: {
  1183. // opacity: 1,
  1184. // },
  1185. // });
  1186. // }
  1187. // }
  1188. // // 补充一个透明的圆环,用于支撑高亮功能的近似实现。
  1189. // series.push({
  1190. // name: 'mouseoutSeries',
  1191. // type: 'surface',
  1192. // parametric: true,
  1193. // wireframe: {
  1194. // show: false,
  1195. // },
  1196. // itemStyle: {
  1197. // opacity: 0,
  1198. // },
  1199. // parametricEquation: {
  1200. // u: {
  1201. // min: 0,
  1202. // max: Math.PI * 2,
  1203. // step: Math.PI / 20,
  1204. // },
  1205. // v: {
  1206. // min: 0,
  1207. // max: Math.PI,
  1208. // step: Math.PI / 20,
  1209. // },
  1210. // x: function (u, v) {
  1211. // return Math.sin(v) * Math.sin(u) + Math.sin(u);
  1212. // },
  1213. // y: function (u, v) {
  1214. // return Math.sin(v) * Math.cos(u) + Math.cos(u);
  1215. // },
  1216. // z: function (u, v) {
  1217. // return Math.cos(v) > 0 ? 0.1 : -0.1;
  1218. // },
  1219. // },
  1220. // });
  1221. // // 将 labelSeries 添加进去 @20210613
  1222. // series.push(labelSeries);
  1223. // // 准备待返回的配置项,把准备好的 legendData、series 传入。
  1224. // let option = {
  1225. // //animation: false,
  1226. // legend: {
  1227. // data: legendData,
  1228. // op: '5%',
  1229. // //orient: 'vertical',
  1230. // textStyle: {
  1231. // color: '#fff',
  1232. // },
  1233. // },
  1234. // tooltip: {
  1235. // formatter: (params) => {
  1236. // if (params.seriesName !== 'mouseoutSeries') {
  1237. // return `${
  1238. // params.seriesName
  1239. // }<br/><span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:${
  1240. // params.color
  1241. // };"></span>${option.series[params.seriesIndex].pieData.value}`;
  1242. // }
  1243. // },
  1244. // },
  1245. // // 增加渐变色尝试(手动通过 seriesIndex 指定系列) @20211228
  1246. // xAxis3D: {
  1247. // min: -1,
  1248. // max: 1,
  1249. // },
  1250. // yAxis3D: {
  1251. // min: -1,
  1252. // max: 1,
  1253. // },
  1254. // zAxis3D: {
  1255. // min: -1,
  1256. // max: 1,
  1257. // },
  1258. // grid3D: {
  1259. // show: false,
  1260. // boxHeight: 10,
  1261. // //top: '30%',
  1262. // bottom: '50%',
  1263. // viewControl: {
  1264. // //3d效果可以放大、旋转等,请自己去查看官方配置
  1265. // alpha: 30, //角度
  1266. // distance: 150, //调整视角到主体的距离,类似调整zoom
  1267. // rotateSensitivity: 0, //设置为0无法旋转
  1268. // zoomSensitivity: 0, //设置为0无法缩放
  1269. // panSensitivity: 0, //设置为0无法平移
  1270. // autoRotate: false, //自动旋转
  1271. // },
  1272. // },
  1273. // series: series,
  1274. // };
  1275. // return option;
  1276. // }
  1277. // // 传入数据生成 option
  1278. // option = getPie3D([
  1279. // {
  1280. // name: '传统产业投资',
  1281. // value: 405.29,
  1282. // itemStyle: {
  1283. // color: '#6682f5'
  1284. // }
  1285. // }, {
  1286. // name: '战略新兴产业投资',
  1287. // value: 196.44,
  1288. // itemStyle: {
  1289. // color: '#69c0ff'
  1290. // }
  1291. // }, {
  1292. // name: '基础产业投资',
  1293. // value: 722.34,
  1294. // itemStyle: {
  1295. // color: '#43ede3'
  1296. // }
  1297. // }
  1298. // ]);
  1299. // myChart.setOption(option);
  1300. // // 监听鼠标事件,实现饼图选中效果(单选),近似实现高亮(放大)效果。
  1301. // let selectedIndex = '';
  1302. // let hoveredIndex = '';
  1303. // let that = this
  1304. // // 监听点击事件,实现选中效果(单选)
  1305. // myChart.on('click', function (param) {
  1306. // console.log(param)
  1307. // if (param.seriesName == '战略新兴产业投资') {
  1308. // that.tipTitle2 = param.seriesName
  1309. // that.showTip2 = true
  1310. // }
  1311. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否选中取反。
  1312. // // let isSelected = !option.series[params.seriesIndex].pieStatus.selected;
  1313. // // let isHovered = option.series[params.seriesIndex].pieStatus.hovered;
  1314. // // let k = option.series[params.seriesIndex].pieStatus.k;
  1315. // // let startRatio = option.series[params.seriesIndex].pieData.startRatio;
  1316. // // let endRatio = option.series[params.seriesIndex].pieData.endRatio;
  1317. // // // 如果之前选中过其他扇形,将其取消选中(对 option 更新)
  1318. // // if (selectedIndex !== '' && selectedIndex !== params.seriesIndex) {
  1319. // // option.series[selectedIndex].parametricEquation = getParametricEquation(
  1320. // // option.series[selectedIndex].pieData.startRatio,
  1321. // // option.series[selectedIndex].pieData.endRatio,
  1322. // // false,
  1323. // // false,
  1324. // // k
  1325. // // );
  1326. // // option.series[selectedIndex].pieStatus.selected = false;
  1327. // // }
  1328. // // // 对当前点击的扇形,执行选中/取消选中操作(对 option 更新)
  1329. // // option.series[params.seriesIndex].parametricEquation = getParametricEquation(
  1330. // // startRatio,
  1331. // // endRatio,
  1332. // // isSelected,
  1333. // // isHovered,
  1334. // // k
  1335. // // );
  1336. // // option.series[params.seriesIndex].pieStatus.selected = isSelected;
  1337. // // // 如果本次是选中操作,记录上次选中的扇形对应的系列号 seriesIndex
  1338. // // isSelected ? (selectedIndex = params.seriesIndex) : null;
  1339. // // // 使用更新后的 option,渲染图表
  1340. // // myChart.setOption(option);
  1341. // });
  1342. // let i = 0
  1343. // this.timeOut = setInterval(function() {
  1344. // console.log(i)
  1345. // let startRatio = option.series[i].pieData.startRatio;
  1346. // let endRatio = option.series[i].pieData.endRatio;
  1347. // let isSelected = option.series[i].pieStatus.selected;
  1348. // let k = option.series[i].pieStatus.k;
  1349. // if(i == 0){
  1350. // let startRatio2 = option.series[2].pieData.startRatio;
  1351. // let endRatio2 = option.series[2].pieData.endRatio;
  1352. // let isSelected2 = option.series[2].pieStatus.selected;
  1353. // let k2 = option.series[2].pieStatus.k;
  1354. // option.series[2].parametricEquation = getParametricEquation(startRatio2, endRatio2, isSelected2, false, k2)
  1355. // } else {
  1356. // let startRatio3 = option.series[i-1].pieData.startRatio;
  1357. // let endRatio3 = option.series[i-1].pieData.endRatio;
  1358. // let isSelected3 = option.series[i-1].pieStatus.selected;
  1359. // let k3 = option.series[i-1].pieStatus.k;
  1360. // option.series[i-1].parametricEquation = getParametricEquation(startRatio3, endRatio3, isSelected3, false, k3)
  1361. // }
  1362. // option.series[i].parametricEquation = getParametricEquation(startRatio, endRatio, isSelected, true, k)
  1363. // myChart.setOption(option);
  1364. // i ++
  1365. // if(i == 3) {
  1366. // i = 0
  1367. // }
  1368. // }, 3000);
  1369. // // 监听 mouseover,近似实现高亮(放大)效果
  1370. // myChart.on('mouseover', function (params) {
  1371. // // 准备重新渲染扇形所需的参数
  1372. // let isSelected;
  1373. // let isHovered;
  1374. // let startRatio;
  1375. // let endRatio;
  1376. // let k;
  1377. // // 如果触发 mouseover 的扇形当前已高亮,则不做操作
  1378. // if (hoveredIndex === params.seriesIndex) {
  1379. // return;
  1380. // // 否则进行高亮及必要的取消高亮操作
  1381. // } else {
  1382. // // 如果当前有高亮的扇形,取消其高亮状态(对 option 更新)
  1383. // if (hoveredIndex !== '') {
  1384. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否高亮设置为 false。
  1385. // isSelected = option.series[hoveredIndex].pieStatus.selected;
  1386. // isHovered = false;
  1387. // startRatio = option.series[hoveredIndex].pieData.startRatio;
  1388. // endRatio = option.series[hoveredIndex].pieData.endRatio;
  1389. // k = option.series[hoveredIndex].pieStatus.k;
  1390. // // 对当前点击的扇形,执行取消高亮操作(对 option 更新)
  1391. // option.series[hoveredIndex].parametricEquation = getParametricEquation(
  1392. // startRatio,
  1393. // endRatio,
  1394. // isSelected,
  1395. // isHovered,
  1396. // k
  1397. // );
  1398. // option.series[hoveredIndex].pieStatus.hovered = isHovered;
  1399. // // 将此前记录的上次选中的扇形对应的系列号 seriesIndex 清空
  1400. // hoveredIndex = '';
  1401. // }
  1402. // // 如果触发 mouseover 的扇形不是透明圆环,将其高亮(对 option 更新)
  1403. // if (params.seriesName !== 'mouseoutSeries') {
  1404. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否高亮设置为 true。
  1405. // isSelected = option.series[params.seriesIndex].pieStatus.selected;
  1406. // isHovered = true;
  1407. // startRatio = option.series[params.seriesIndex].pieData.startRatio;
  1408. // endRatio = option.series[params.seriesIndex].pieData.endRatio;
  1409. // k = option.series[params.seriesIndex].pieStatus.k;
  1410. // // 对当前点击的扇形,执行高亮操作(对 option 更新)
  1411. // option.series[params.seriesIndex].parametricEquation = getParametricEquation(
  1412. // startRatio,
  1413. // endRatio,
  1414. // isSelected,
  1415. // isHovered,
  1416. // k
  1417. // );
  1418. // option.series[params.seriesIndex].pieStatus.hovered = isHovered;
  1419. // // 记录上次高亮的扇形对应的系列号 seriesIndex
  1420. // hoveredIndex = params.seriesIndex;
  1421. // }
  1422. // // 使用更新后的 option,渲染图表
  1423. // myChart.setOption(option);
  1424. // }
  1425. // });
  1426. // // 修正取消高亮失败的 bug
  1427. // myChart.on('globalout', function () {
  1428. // if (hoveredIndex !== '') {
  1429. // // 从 option.series 中读取重新渲染扇形所需的参数,将是否高亮设置为 true。
  1430. // isSelected = option.series[hoveredIndex].pieStatus.selected;
  1431. // isHovered = false;
  1432. // k = option.series[hoveredIndex].pieStatus.k;
  1433. // startRatio = option.series[hoveredIndex].pieData.startRatio;
  1434. // endRatio = option.series[hoveredIndex].pieData.endRatio;
  1435. // // 对当前点击的扇形,执行取消高亮操作(对 option 更新)
  1436. // option.series[hoveredIndex].parametricEquation = getParametricEquation(
  1437. // startRatio,
  1438. // endRatio,
  1439. // isSelected,
  1440. // isHovered,
  1441. // k
  1442. // );
  1443. // option.series[hoveredIndex].pieStatus.hovered = isHovered;
  1444. // // 将此前记录的上次选中的扇形对应的系列号 seriesIndex 清空
  1445. // hoveredIndex = '';
  1446. // }
  1447. // // 使用更新后的 option,渲染图表
  1448. // myChart.setOption(option);
  1449. // });
  1450. // // 新增监听图例事件,同步显示隐藏对应 label @20210613
  1451. // myChart.on('legendselectchanged', function (params) {
  1452. // let seriesLength = option.series.length;
  1453. // console.log(option.series[seriesLength - 1].data);
  1454. // for (let i = 0; i < option.series[seriesLength - 1].data.length; i++) {
  1455. // console.log(option.series[seriesLength - 1].data[i]);
  1456. // if (option.series[seriesLength - 1].data[i].name == params.name) {
  1457. // console.log(option.series[seriesLength - 1].data[i]);
  1458. // params.selected[params.name]
  1459. // ? (option.series[seriesLength - 1].data[i].itemStyle.opacity = 1)
  1460. // : (option.series[seriesLength - 1].data[i].itemStyle.opacity = 0);
  1461. // }
  1462. // }
  1463. // myChart.setOption(option);
  1464. // });
  1465. // console.log('66', myChart);
  1466. // },
  1467. initChartL1 () {
  1468. let myChart = echarts.init(this.$refs['echartR1'])
  1469. let option = {
  1470. tooltip: {
  1471. trigger: 'item',
  1472. //position: ['65%', '42%'],
  1473. position: (point,params,dom,rect,size) => {
  1474. if(params.name == '传统产业'){
  1475. return ['55%','25%']
  1476. } else if (params.name == '战略新兴产业') {
  1477. return ['55%','65%']
  1478. } else if (params.name == '基础产业') {
  1479. return ['18%','35%']
  1480. }
  1481. },
  1482. formatter: params => {
  1483. 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}亿`
  1484. }, //+ '<br/>'+ '{a1}:{c1}' + '%',
  1485. axisPointer: {
  1486. type: 'cross',
  1487. },
  1488. },
  1489. color: ['#6682f5', '#69c0ff', '#43ede3', '#8ba2ff'],
  1490. legend: {
  1491. left: '2%',
  1492. bottom: '2%',
  1493. orient: 'vertical',
  1494. //right: '2%',
  1495. textStyle: {
  1496. color: '#9DB9EB',
  1497. },
  1498. },
  1499. series: [
  1500. // {
  1501. // hoverOffset: 0,
  1502. // startAngle: 90,
  1503. // type: "pie",
  1504. // radius: [48, 55],
  1505. // center: ["50%", "50%"],
  1506. // itemStyle: {
  1507. // normal: {
  1508. // borderColor: 'rgba(1,31,6,0.7)',
  1509. // borderWidth: 4
  1510. // }
  1511. // },
  1512. // tooltip: {
  1513. // show: false
  1514. // },
  1515. // labelLine: {
  1516. // show: false
  1517. // },
  1518. // label: {
  1519. // show: false
  1520. // },
  1521. // data: industryList
  1522. // },
  1523. {
  1524. name: '',
  1525. type: 'pie',
  1526. radius: ['50%', '75%'],
  1527. center: ["50%", "50%"],
  1528. label:{
  1529. show: false,
  1530. },
  1531. itemStyle: {
  1532. normal: {
  1533. borderColor: 'rgba(1,31,64,0.7)',
  1534. borderWidth: 6
  1535. }
  1536. },
  1537. labelLine: {
  1538. show: false,
  1539. },
  1540. data: industryList,
  1541. },
  1542. ],
  1543. }
  1544. let that = this
  1545. myChart.on('click', function (param) {
  1546. if (param.name == '战略新兴产业') {
  1547. that.tipTitle2 = param.name
  1548. that.showTip2 = true
  1549. }
  1550. })
  1551. myChart.setOption(option)
  1552. tools.loopShowTooltip(myChart, option, {
  1553. nterval: 2000,
  1554. loopSeries: true,
  1555. })
  1556. },
  1557. initChartL2() {
  1558. let myChart = echarts.init(this.$refs['echartL2'])
  1559. let option = {
  1560. tooltip: {
  1561. formatter: data => {
  1562. 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}亿`
  1563. },
  1564. trigger: 'axis',
  1565. axisPointer: {
  1566. type: 'cross',
  1567. },
  1568. },
  1569. dataZoom:[
  1570. {
  1571. // start: 9,//默认为@
  1572. // end: 100,//黑认认为1@0
  1573. type: "slider",
  1574. show: false,
  1575. // xAxisIndex: [0]
  1576. handlesize: 0,//滑动条的 左右2个滑动条的大小
  1577. startValue: 5,// 初始显示值
  1578. endValue: 0,// 结束显示值
  1579. height: 10,//组件高度
  1580. left:"5%",
  1581. right: "4%",//右边的距离
  1582. bottom: "25%",//底边的距离
  1583. borderColor:"#939",
  1584. fillerColor:"#269cdb",
  1585. borderRadius: 5,
  1586. backgroundColor: "#33384b",//两边未选中的滑动条区域的额色
  1587. showDataShadow: false,//是否显示数据阴影
  1588. showDetail: false,//即拖拽时候是否显示详细数值信息
  1589. truerealtime: true,//是否实时更新
  1590. filterMode: "filter"
  1591. },{
  1592. type:'inside',
  1593. show: true,
  1594. start: 1,
  1595. end: 100
  1596. }
  1597. ],
  1598. grid: {
  1599. top: '16%',
  1600. right: '3%',
  1601. left: '10%',
  1602. bottom: '23%',
  1603. },
  1604. legend: {
  1605. top: '1',
  1606. right: '10',
  1607. textStyle: {
  1608. color: 'rgba(250,250,250,0.6)',
  1609. },
  1610. },
  1611. xAxis: {
  1612. data: executeList.map(item => item.name),
  1613. axisLine: {
  1614. show: true, //隐藏X轴轴线
  1615. lineStyle: {
  1616. color: '#005094',
  1617. width: 1,
  1618. },
  1619. },
  1620. axisTick: {
  1621. show: false, //隐藏X轴刻度
  1622. },
  1623. axisLabel: {
  1624. show: true,
  1625. rotate: 40,
  1626. textStyle: {
  1627. color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
  1628. },
  1629. },
  1630. },
  1631. yAxis: [
  1632. {
  1633. type: 'value',
  1634. name: '亿元',
  1635. nameTextStyle: {
  1636. color: 'rgba(255,255,255,0.6)',
  1637. },
  1638. splitLine: {
  1639. show: true,
  1640. lineStyle: {
  1641. color: '#68b4dd66',
  1642. type: 'dashed',
  1643. },
  1644. },
  1645. axisLine: {
  1646. show: true,
  1647. lineStyle: {
  1648. color: '#3D7495',
  1649. },
  1650. },
  1651. axisLabel: {
  1652. show: true,
  1653. textStyle: {
  1654. color: 'rgba(250,250,250,0.6)',
  1655. },
  1656. },
  1657. },
  1658. ],
  1659. series: [
  1660. {
  1661. name: '计划投资',
  1662. type: 'bar',
  1663. barWidth: 10,
  1664. itemStyle: {
  1665. normal: {
  1666. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1667. {
  1668. offset: 0,
  1669. color: '#69c0ff',
  1670. },
  1671. {
  1672. offset: 1,
  1673. color: '#082550',
  1674. },
  1675. ]),
  1676. },
  1677. },
  1678. data: executeList.map(item => item.value),
  1679. },
  1680. {
  1681. name: '实际投资',
  1682. type: 'bar',
  1683. barWidth: 10,
  1684. itemStyle: {
  1685. normal: {
  1686. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1687. {
  1688. offset: 0,
  1689. color: '#957DFF',
  1690. },
  1691. {
  1692. offset: 1,
  1693. color: '#082550',
  1694. },
  1695. ]),
  1696. },
  1697. },
  1698. data: executeList.map(item => item.value2),
  1699. },
  1700. ],
  1701. }
  1702. myChart.setOption(option)
  1703. tools.loopShowTooltip(myChart, option, {
  1704. nterval: 2000,
  1705. loopSeries: true,
  1706. })
  1707. let arr = executeList.map(item => item.value2)
  1708. this.timeOut = setInterval(function () {
  1709. let startValue = myChart.getModel().option.dataZoom[0].startValue;
  1710. let endValue = myChart.getModel().option.dataZoom[0].endValue;
  1711. let start = myChart.getModel().option.xAxis[0].data[startValue];//起始X轴
  1712. let end = myChart.getModel().option.xAxis[0].data[endValue];//结束X轴
  1713. // 每次向后滚动一个,最后一个从头开始。
  1714. // console.log(option.dataZoom[0].endValue);
  1715. if (option.dataZoom[0].endValue >= 12) {
  1716. option.dataZoom[0].endValue = 5
  1717. option.dataZoom[0].startValue = 0
  1718. } else {
  1719. option.dataZoom[0].endValue = option.dataZoom[0].endValue + 6
  1720. option.dataZoom[0].startValue = option.dataZoom[0].startValue + 6
  1721. }
  1722. // myChart.dispatchAction({
  1723. // type: 'showTip',
  1724. // seriesIndex: 0,
  1725. // dataIndex: startValue +1,
  1726. // });
  1727. myChart.setOption(option);
  1728. }, 12000);
  1729. },
  1730. initChartR1() {
  1731. let myChart = echarts.init(this.$refs['echartL1'])
  1732. let option = {
  1733. tooltip: {
  1734. trigger: 'axis',
  1735. formatter: '{a0}:{c0}' + '亿元', //+ '<br/>'+ '{a1}:{c1}' + '%',
  1736. axisPointer: {
  1737. type: 'cross',
  1738. },
  1739. },
  1740. grid: {
  1741. top: '16%',
  1742. right: '10%',
  1743. left: '10%',
  1744. bottom: '22%',
  1745. },
  1746. // legend: {
  1747. // top: '1',
  1748. // textStyle: {
  1749. // color: 'rgba(250,250,250,0.6)',
  1750. // },
  1751. // },
  1752. xAxis: {
  1753. data: statusList.map(item => item.name),
  1754. axisLine: {
  1755. show: true, //隐藏X轴轴线
  1756. lineStyle: {
  1757. color: '#005094',
  1758. width: 1,
  1759. },
  1760. },
  1761. axisTick: {
  1762. show: false, //隐藏X轴刻度
  1763. },
  1764. axisLabel: {
  1765. show: true,
  1766. rotate: 20,
  1767. textStyle: {
  1768. color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
  1769. },
  1770. },
  1771. },
  1772. yAxis: [
  1773. {
  1774. type: 'value',
  1775. name: '亿元',
  1776. nameTextStyle: {
  1777. color: 'rgba(255,255,255,0.6)',
  1778. },
  1779. splitLine: {
  1780. show: true,
  1781. lineStyle: {
  1782. color: '#68b4dd66',
  1783. type: 'dashed',
  1784. },
  1785. },
  1786. axisLine: {
  1787. show: true,
  1788. lineStyle: {
  1789. color: '#3D7495',
  1790. },
  1791. },
  1792. axisLabel: {
  1793. show: true,
  1794. textStyle: {
  1795. color: 'rgba(250,250,250,0.6)',
  1796. },
  1797. },
  1798. },
  1799. {
  1800. type: 'value',
  1801. axisLine: {
  1802. show: false,
  1803. },
  1804. splitLine: {
  1805. show: false,
  1806. },
  1807. axisLabel: {
  1808. show: true,
  1809. formatter: '{value} %',
  1810. textStyle: {
  1811. color: 'rgba(250,250,250,0.6)',
  1812. },
  1813. },
  1814. },
  1815. ],
  1816. series: [
  1817. {
  1818. type: 'bar',
  1819. name: '投资金额',
  1820. barWidth: 15,
  1821. itemStyle: {
  1822. normal: {
  1823. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  1824. {
  1825. offset: 0,
  1826. color: '#69c0ff',
  1827. },
  1828. {
  1829. offset: 1,
  1830. color: '#082550',
  1831. },
  1832. ]),
  1833. },
  1834. },
  1835. data: statusList.map(item => item.value),
  1836. },
  1837. ],
  1838. }
  1839. myChart.setOption(option)
  1840. tools.loopShowTooltip(myChart, option, {
  1841. nterval: 2000,
  1842. loopSeries: true,
  1843. })
  1844. },
  1845. initChartR2() {
  1846. let myChart = echarts.init(this.$refs['echartR2'])
  1847. let option = {
  1848. tooltip: {
  1849. trigger: 'item',
  1850. position: (point,params,dom,rect,size) => {
  1851. if(params.name == '新建'){
  1852. return ['55%','45%']
  1853. } else {
  1854. return ['15%','40%']
  1855. }
  1856. },
  1857. formatter: params => {
  1858. 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}亿`
  1859. }, //+ '<br/>'+ '{a1}:{c1}' + '%',
  1860. axisPointer: {
  1861. type: 'cross',
  1862. },
  1863. },
  1864. color: [ '#43ede3', '#8ba2ff'],
  1865. legend: {
  1866. left: '5%',
  1867. bottom: '2%',
  1868. orient: 'vertical',
  1869. //right: '2%',
  1870. textStyle: {
  1871. color: '#9DB9EB',
  1872. },
  1873. },
  1874. series: [
  1875. {
  1876. name: '',
  1877. type: 'pie',
  1878. radius: ['50%', '75%'],
  1879. center: ["50%", "50%"],
  1880. label:{
  1881. show: false,
  1882. },
  1883. itemStyle: {
  1884. normal: {
  1885. borderColor: 'rgba(1,31,64,0.7)',
  1886. borderWidth: 6
  1887. }
  1888. },
  1889. labelLine: {
  1890. show: false,
  1891. },
  1892. data: chartDateR2,
  1893. },
  1894. ],
  1895. }
  1896. myChart.setOption(option)
  1897. tools.loopShowTooltip(myChart, option, {
  1898. nterval: 10000,
  1899. loopSeries: true,
  1900. })
  1901. },
  1902. initProjectList() {
  1903. let dataList = []
  1904. projectList.map(item => {
  1905. dataList.push([item.office,item.name, item.value + '亿'])
  1906. })
  1907. this.storageRecordConfig = {
  1908. header: ['企业集团', '项目名称', '投资金额'],
  1909. headerBGC: '#05507b33',
  1910. oddRowBGC: '#05507b33',
  1911. evenRowBGC: '',
  1912. headerHeight: '40',
  1913. rowNum: 5,
  1914. columnWidth: [100, 350],
  1915. align: ['center', 'center', 'center'],
  1916. data: dataList,
  1917. }
  1918. }
  1919. },
  1920. })