index.html 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <!-- 引入样式 -->
  8. <link rel="stylesheet" href="./styles/index.css" />
  9. <link rel="stylesheet" href="./styles/animate.css" />
  10. <!-- 引入js -->
  11. <script src="./libs/vue@2.7.10.js"></script>
  12. <script src="./libs/echarts.min2.js"></script>
  13. <script src="./libs/echarts-gl.min.js"></script>
  14. <script src="./libs/datav.map.vue.js"></script>
  15. <script src="./libs/axios.min.js"></script>
  16. <script src="./js/request.js"></script>
  17. <script src="./js/map/china.json"></script>
  18. <script src="./js/Data.js"></script>
  19. <script src="./libs/echarts-tooltip-carousel.js"></script>
  20. <script src="./libs/echarts-liquidfill.min.js"></script>
  21. </head>
  22. <body>
  23. <div id="app" class="w-full h-full overflow-hidden" :class="mapShow?'appbg1':'appbg2'">
  24. <div class="top">
  25. <div class="title relative" style="padding-top: 2%">
  26. <span @click="tipShow1Fun('2.png','投前管理')" class="pointer">投前管理</span>
  27. <div></div>
  28. <div class="pointer timeBox" @click="pullShow = !pullShow">
  29. <span>{{year}}</span>
  30. <img src="./img/arrow.png" alt="">
  31. </div>
  32. <div class="pullBox" v-if="pullShow">
  33. <span v-for="(item,index) in pollList" class="pointer text-center" @click="chooseTime(item)"
  34. :key="index">{{item}}</span>
  35. </div>
  36. </div>
  37. <div class="mainTitle pointer" @click.stop="tipShow1Fun('1.png','数智化投资管理驾驶舱')">数智化投资管理驾驶舱</div>
  38. <div class="title" style="padding-top: 2%">
  39. <span class="pointer" @click.stop="tipShow1Fun('7.png','投中、投后管理')">投中、投后管理</span>
  40. <div></div>
  41. </div>
  42. </div>
  43. <div class="bottom overflow-hidden">
  44. <div class="left">
  45. <div>
  46. <div class="title">投资计划分析</div>
  47. <div class="content left1">
  48. <div class="overflow-hidden">
  49. <div class="child">
  50. <div style="font-size: 28px">固定资产类项目</div>
  51. <div></div>
  52. <div style="font-size: 50px; color: #68bdff; font-weight: bold">
  53. 1,608.69<span style="font-size: 28px"
  54. @click.stop="showChartLTipSingle('投资金额','left','','','投资计划分析','固定资产投资金额','','','','','',2141)">亿</span>
  55. </div>
  56. <div style="
  57. font-size: 50px;
  58. color: #68bdff;
  59. font-weight: bold;
  60. justify-self: center;
  61. ">
  62. 350<span style="font-size: 28px">个</span>
  63. </div>
  64. <div style="font-size: 28px">投资金额</div>
  65. <div style="font-size: 28px; justify-self: center">
  66. 项目数量
  67. </div>
  68. </div>
  69. <div class="child">
  70. <div style="font-size: 28px">股权类项目</div>
  71. <div></div>
  72. <div style="font-size: 50px; color: #68bdff; font-weight: bold">
  73. 159.56<span style="font-size: 28px">亿</span>
  74. </div>
  75. <div style="
  76. font-size: 50px;
  77. color: #68bdff;
  78. font-weight: bold;
  79. justify-self: center;
  80. ">
  81. 250<span style="font-size: 28px">个</span>
  82. </div>
  83. <div style="font-size: 28px">投资金额</div>
  84. <div style="font-size: 28px; justify-self: center">
  85. 项目数量
  86. </div>
  87. </div>
  88. </div>
  89. <div class="overflow-hidden left1B">
  90. <svg style="height: 700px; width: 700px" class="svg_box">
  91. <circle cx="240" cy="260" r="150" stroke-width="30px" stroke="rgb(140 201 249)" fill="none"
  92. stroke-dasharray="40 10">
  93. <animateTransform attributeName="transform" repeatCount="indefinite" type="rotate" from="0 240 260" /
  94. to="-360 240 260" dur="20" />
  95. </circle>
  96. </svg>
  97. <svg style="height: 700px;width: 700px" class="svg_box">
  98. <circle cx="240" cy="120" r="100" stroke-width="10px" stroke="rgb(140 201 249)" fill="none"
  99. stroke-dasharray="10 20">
  100. <animateTransform attributeName="transform" repeatCount="indefinite" type="rotate" from="0 240 120"
  101. to="360 240 120" dur="20" />
  102. </circle>
  103. </svg>
  104. <div class="flex items-center justify-center flex-col relative" style="padding-bottom: 10%;">
  105. <div style="font-size: 72px; color: #ffe036; font-weight: bold">
  106. 1,768.60<span style="font-size: 28px">亿</span>
  107. </div>
  108. <div style="font-size: 28px">年度投资计划总额</div>
  109. </div>
  110. <div class="left1C">
  111. <div class="flex justify-between left1C-child">
  112. <div style="height: 100%; width: 48%" class="flex items-center justify-center font28 pointer"
  113. @click="industryProportionChange(1)"
  114. :class="industryProportion==1?'industryProportion1':'industryProportion2'">
  115. 主辅业计划占比
  116. </div>
  117. <div style="height: 100%; width: 48%" class="flex items-center justify-center font28 pointer"
  118. @click="industryProportionChange(2)"
  119. :class="industryProportion==2?'industryProportion1':'industryProportion2'">
  120. 投资阶段占比
  121. </div>
  122. </div>
  123. <div class="flex overflow-hidden items-center" style="padding: 1% 0">
  124. <div ref="leftEcharts1" style="height: 100%; aspect-ratio: 1/1; flex-shrink: 0"></div>
  125. <div style="width: 95%; margin-left: 5%">
  126. <div class="flex items-center font28">
  127. <img src="./img/title-icon.png" style="width: 32px; height: 52px" alt="" />
  128. <span style="margin: 0 10px">{{industryProportion==1?'主业':'新建'}}</span>
  129. <span style="color: #68bdff">{{industryProportion==1?713:168}}个</span>
  130. </div>
  131. <div ref="leftEcharts2" style="height: 50%; width: 100%"></div>
  132. </div>
  133. </div>
  134. <div class="flex overflow-hidden items-center" style="padding: 1% 0">
  135. <div ref="leftEcharts3" style="height: 100%; aspect-ratio: 1/1; flex-shrink: 0"></div>
  136. <div style="width: 95%; margin-left: 5%">
  137. <div class="flex items-center font28">
  138. <img src="./img/title-icon.png" style="width: 32px; height: 52px" alt="" />
  139. <span style="margin: 0 10px">{{industryProportion==1?'辅业':'续建'}}</span>
  140. <span style="color: #68bdff">{{industryProportion==1?84:465}}个</span>
  141. </div>
  142. <div ref="leftEcharts4" style="height: 50%; width: 100%"></div>
  143. </div>
  144. </div>
  145. </div>
  146. </div>
  147. </div>
  148. </div>
  149. <div>
  150. <div class="title">投资额度分析</div>
  151. <div class="content left3">
  152. <div ref="leftEcharts6" style="width: 100%; height: 100%"></div>
  153. <div class="left3A">
  154. <div class="flex justify-center flex-col" style="padding-left: 35%">
  155. <div style="font-size: 48px; font-weight: bold; color: #68bdff">
  156. 514.89<span class="font28">亿</span>
  157. </div>
  158. <div class="font28">上年度净利润</div>
  159. </div>
  160. <div class="flex justify-center flex-col" style="padding-left: 35%">
  161. <div style="font-size: 48px; font-weight: bold; color: #68bdff">
  162. 744.06<span class="font28">亿</span>
  163. </div>
  164. <div class="font28">固定资产折旧及无形资产摊销</div>
  165. </div>
  166. <div class="flex justify-center flex-col" style="padding-left: 35%">
  167. <div style="font-size: 48px; font-weight: bold; color: #68bdff">
  168. 487.00<span class="font28">亿</span>
  169. </div>
  170. <div class="font28">带息负责压降额</div>
  171. </div>
  172. </div>
  173. </div>
  174. </div>
  175. <div>
  176. <div class="title">产业布局分析</div>
  177. <div class="content left2">
  178. <div class="flex items-center justify-around font28" style="padding: 0 10%">
  179. <div @click="industryLayoutChange(0)" class="pointer"
  180. :class="industryLayout==0?'industryProportion1':'industryProportion2'" style="padding: 1% 2%">
  181. 传统产业
  182. </div>
  183. <div @click="industryLayoutChange(1)" class="pointer"
  184. :class="industryLayout==1?'industryProportion1':'industryProportion2'" style="padding: 1% 2%">
  185. 战略性新兴产业
  186. </div>
  187. <div @click="industryLayoutChange(2)" class="pointer"
  188. :class="industryLayout==2?'industryProportion1':'industryProportion2'" style="padding: 1% 2%">
  189. 特色优势产业
  190. </div>
  191. <div @click="industryLayoutChange(3)" class="pointer"
  192. :class="industryLayout==3?'industryProportion1':'industryProportion2'" style="padding: 1% 2%">
  193. 公共基础产业
  194. </div>
  195. </div>
  196. <div ref="leftEcharts5" style="width: 100%; height: 100%"></div>
  197. </div>
  198. </div>
  199. <div>
  200. <div class="title">投资额度使用情况</div>
  201. <div class="content">
  202. <div ref="leftEcharts10" style="height: 100%; width: 100%"></div>
  203. </div>
  204. </div>
  205. <div>
  206. <div class="title">项目阶段分析</div>
  207. <div class="content left4">
  208. <div ref="leftEcharts7" style="height: 100%; width: 100%"></div>
  209. <div ref="leftEcharts8" style="height: 100%; width: 100%"></div>
  210. <div class="left4A">
  211. <!-- 第一列 -->
  212. <div style="width: 104px; top: 21%; left: 9%; animation-delay: 1s">
  213. <div class="text-center">{{projecList[0][0].value2}}亿</div>
  214. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  215. </div>
  216. <div style="width: 104px; top: 51%; left: 9%; animation-delay: 1s">
  217. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  218. <div class="text-center">{{projecList[0][1].value2}}亿</div>
  219. </div>
  220. <!-- 第二列 -->
  221. <div style="width: 104px; top: 30%; left: 19%">
  222. <div class="text-center">{{projecList[1][0].value2}}亿</div>
  223. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  224. </div>
  225. <div style="width: 104px; top: 62%; left: 19%">
  226. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  227. <div class="text-center">{{projecList[1][1].value2}}亿</div>
  228. </div>
  229. <!-- 第三列 -->
  230. <div style="width: 104px; top: 35%; left: 29%; animation-delay: 1s">
  231. <div class="text-center">{{projecList[2][0].value2}}亿</div>
  232. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  233. </div>
  234. <div style="width: 104px; top: 60%; left: 29%; animation-delay: 1s">
  235. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  236. <div class="text-center">{{projecList[2][1].value2}}亿</div>
  237. </div>
  238. <!-- 第四列 -->
  239. <div style="width: 104px; top: 31%; left: 39%">
  240. <div class="text-center">{{projecList[3][0].value2}}亿</div>
  241. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  242. </div>
  243. <div style="width: 104px; top: 61%; left: 39%">
  244. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  245. <div class="text-center">{{projecList[3][1].value2}}亿</div>
  246. </div>
  247. <!-- 第五列 -->
  248. <div style="width: 104px; top: 41%; left: 58%; animation-delay: 1s">
  249. <div class="text-center">{{projecList[4][0].value2}}亿</div>
  250. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  251. </div>
  252. <div style="width: 104px; top: 65%; left: 58%; animation-delay: 1s">
  253. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  254. <div class="text-center">{{projecList[4][1].value2}}亿</div>
  255. </div>
  256. <!-- 第六列 -->
  257. <div style="width: 104px; top: 35%; left: 68%">
  258. <div class="text-center">{{projecList[5][0].value2}}亿</div>
  259. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  260. </div>
  261. <div style="width: 104px; top: 63%; left: 68%">
  262. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  263. <div class="text-center">{{projecList[5][1].value2}}亿</div>
  264. </div>
  265. <!-- 第七列 -->
  266. <div style="width: 104px; top: 21%; left: 78%; animation-delay: 1s">
  267. <div class="text-center">{{projecList[6][0].value2}}亿</div>
  268. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  269. </div>
  270. <div style="width: 104px; top: 51%; left: 78%; animation-delay: 1s">
  271. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  272. <div class="text-center">{{projecList[6][1].value2}}亿</div>
  273. </div>
  274. <!-- 第八列 -->
  275. <div style="width: 104px; top: 31%; left: 88%">
  276. <div class="text-center">{{projecList[7][0].value2}}亿</div>
  277. <img src="./img/left-blue.png" class="" style="width: 104px; height: 112px" alt="" />
  278. </div>
  279. <div style="width: 104px; top: 61%; left: 88%">
  280. <img src="./img/left-green.png" class="" style="width: 104px; height: 112px" alt="" />
  281. <div class="text-center">{{projecList[7][1].value2}}亿</div>
  282. </div>
  283. <div class="absolute projectPop" style="top: 50%;" :style="{left:projecList[projectNum][2].distance}">
  284. <div>{{projecList[projectNum][2].name}}</div>
  285. <div><span
  286. style="display:inline-block;border-radius:50%;margin-right: 10px; width:20px;height:20px;background-color:#45A9E1"></span>{{projecList[projectNum][0].name}}:{{projecList[projectNum][0].value}}个,{{projecList[projectNum][0].value2}}亿
  287. </div>
  288. <div><span
  289. style="display:inline-block;border-radius:50%;margin-right: 10px; width:20px;height:20px;background-color:#4CEEE5"></span>{{projecList[projectNum][1].name}}:{{projecList[projectNum][1].value}}个,{{projecList[projectNum][1].value2}}亿
  290. </div>
  291. </div>
  292. </div>
  293. </div>
  294. </div>
  295. <div>
  296. <div class="title">重点项目两线指标</div>
  297. <div class="content left5">
  298. <dv-scroll-board ref="indicator" :config="storageRecordConfig"
  299. @scroll-change="scrollChange"></dv-scroll-board>
  300. <div ref="leftEcharts11" style="width: 100%; height: 100%"></div>
  301. </div>
  302. </div>
  303. </div>
  304. <div class="center" v-if="mapShow">
  305. <div>
  306. <div>
  307. <div class="title">两个转型</div>
  308. <div class="content relative center1">
  309. <div class="flex items-center justify-end" style="font-size: 24px">
  310. <span style="
  311. display: inline-block;
  312. margin-right: 15px;
  313. border-radius: 10px;
  314. width: 25px;
  315. height: 25px;
  316. background: url('../img/blueBig.png') no-repeat center
  317. center;
  318. background-size: 100% 100%;
  319. "></span>
  320. <span style="margin-right: 40px">产业转型</span>
  321. <span style="
  322. display: inline-block;
  323. margin-right: 15px;
  324. border-radius: 10px;
  325. width: 25px;
  326. height: 25px;
  327. background: url('../img/greenBig.png') no-repeat center
  328. center;
  329. background-size: 100% 100%;
  330. "></span>
  331. <span>数字转型</span>
  332. </div>
  333. <div></div>
  334. <div class="absolute flex items-center justify-center flex-col bubble" style="
  335. width: 192px;
  336. height: 192px;
  337. top: 25%;
  338. left: 25%;
  339. animation-delay: 1s;
  340. ">
  341. <span style="font-size: 30px; font-weight: bold; color: #68bdff">55.05<span
  342. class="font28">亿</span></span>
  343. <span class="font28">投资金额</span>
  344. </div>
  345. <div class="absolute flex items-center justify-center flex-col bubble" style="
  346. width: 170px;
  347. height: 170px;
  348. top: 60%;
  349. left: 70%;
  350. animation-delay: 1s;
  351. ">
  352. <span style="font-size: 30px; font-weight: bold; color: #68bdff">98<span class="font28">个</span></span>
  353. <span class="font28">项目数量</span>
  354. </div>
  355. <div class="absolute flex items-center justify-center flex-col bubble"
  356. style="width: 175px; height: 175px; top: 65%; left: 15%">
  357. <span style="font-size: 30px; font-weight: bold; color: #ebde27">101<span class="font28">个</span></span>
  358. <span class="font28">项目数量</span>
  359. </div>
  360. <div class="absolute flex items-center justify-center flex-col bubble"
  361. style="width: 190px; height: 190px; top: 35%; left: 50%">
  362. <span style="font-size: 30px; font-weight: bold; color: #ebde27">10.63<span
  363. class="font28">亿</span></span>
  364. <span class="font28">投资金额</span>
  365. </div>
  366. </div>
  367. </div>
  368. <div>
  369. <div class="title">投资产业分布</div>
  370. <div class="content relative">
  371. <div style="width: 100%;height: 100%;" ref="leftEcharts12"></div>
  372. <div style="width: 100%;height: 100%;top: 0;left: 0;" class="absolute" ref="leftEcharts17"></div>
  373. </div>
  374. </div>
  375. <div>
  376. <div class="title">投资执行情况</div>
  377. <div class="content">
  378. <div class="w-full h-full" ref="leftEcharts14"></div>
  379. </div>
  380. </div>
  381. </div>
  382. <div class="center2">
  383. <div>
  384. <div class="flex justify-center flex-col">
  385. <div>
  386. <div style="font-size: 60px; color: #5bdcc8; font-weight: bold">
  387. 402.70<span style="font-size: 28px">亿</span>
  388. </div>
  389. <div style="font-size: 28px; justify-self: center">
  390. 总投资额
  391. </div>
  392. </div>
  393. </div>
  394. <div class="flex justify-center flex-col">
  395. <div>
  396. <div style="font-size: 60px; color: #68bdff; font-weight: bold">
  397. 396<span style="font-size: 28px">个</span>
  398. </div>
  399. <div style="font-size: 28px; justify-self: center">
  400. 项目总数
  401. </div>
  402. </div>
  403. </div>
  404. <div class="flex justify-center flex-col">
  405. <div>
  406. <div style="font-size: 60px; color: #68bdff; font-weight: bold">
  407. 25.43<span style="font-size: 28px">亿</span>
  408. </div>
  409. <div style="font-size: 28px; justify-self: center">
  410. 固定资产类
  411. </div>
  412. </div>
  413. </div>
  414. <div class="flex justify-center flex-col">
  415. <div>
  416. <div style="font-size: 60px; color: #5bdcc8; font-weight: bold">
  417. 377.27<span style="font-size: 28px">亿</span>
  418. </div>
  419. <div style="font-size: 28px; justify-self: center">
  420. 股权类
  421. </div>
  422. </div>
  423. </div>
  424. </div>
  425. <div class="relative overflow-hidden">
  426. <div ref="shanxi" style="width: 100%; height: 100%; z-index: 100"></div>
  427. <div class="center3" ref="leftEcharts9"></div>
  428. </div>
  429. </div>
  430. <div class="center4">
  431. <div>
  432. <div>
  433. <div class="title">五个一体化</div>
  434. <div class="content">
  435. <div ref="leftEcharts15" style="height: 100%;width: 100%;"></div>
  436. </div>
  437. </div>
  438. </div>
  439. <div>
  440. <div>
  441. <div class="title">管理类型分析</div>
  442. <div class="content relative">
  443. <div ref="leftEcharts13" style="height: 100%;width: 100%;"></div>
  444. <div class="absolute flex flex-col items-center justify-center" style="top: 40%;left: 38%;">
  445. <span style="color: #58E6F7;font-size: 50px;font-weight: bold;">{{stageTitle2}}</span>
  446. <span class="font28">{{stageTitle}}</span>
  447. </div>
  448. </div>
  449. </div>
  450. </div>
  451. <div>
  452. <div>
  453. <div class="title">重点项目监控</div>
  454. <div class="content">
  455. <dv-scroll-board :config="storageRecordConfig2" class="h-full w-full" />
  456. </div>
  457. </div>
  458. </div>
  459. </div>
  460. </div>
  461. <div v-else class="centerB h-full w-full relative">
  462. <div class="chinaTop">
  463. <div class="flex justify-center flex-col">
  464. <div style="padding-left: 40%;">
  465. <div style="font-size: 60px; color: #5bdcc8; font-weight: bold">
  466. 402.7<span style="font-size: 28px">亿</span>
  467. </div>
  468. <div style="font-size: 28px; justify-self: center">
  469. 总投资额
  470. </div>
  471. </div>
  472. </div>
  473. <div class="flex justify-center flex-col">
  474. <div style="padding-left: 40%;">
  475. <div style="font-size: 60px; color: #68bdff; font-weight: bold">
  476. 396<span style="font-size: 28px">个</span>
  477. </div>
  478. <div style="font-size: 28px; justify-self: center">
  479. 项目总数
  480. </div>
  481. </div>
  482. </div>
  483. <div class="flex justify-center flex-col">
  484. <div style="padding-left: 40%;">
  485. <div style="font-size: 60px; color: #68bdff; font-weight: bold">
  486. 25.43<span style="font-size: 28px">亿</span>
  487. </div>
  488. <div style="font-size: 28px; justify-self: center">
  489. 固定资产类
  490. </div>
  491. </div>
  492. </div>
  493. <div class="flex justify-center flex-col">
  494. <div style="padding-left: 40%;">
  495. <div style="font-size: 60px; color: #5bdcc8; font-weight: bold">
  496. 377.27<span style="font-size: 28px">亿</span>
  497. </div>
  498. <div style="font-size: 28px; justify-self: center">
  499. 股权类
  500. </div>
  501. </div>
  502. </div>
  503. </div>
  504. <div ref="china" style="width: 100%; height: 100%; z-index: 100"></div>
  505. <div class="center5" ref="leftEcharts16"></div>
  506. </div>
  507. <div class="right">
  508. <div class="means">
  509. <div class="meansWrap">
  510. <div class="meansHead">
  511. <img src="./img/1.png" alt="" />
  512. 固定资产
  513. </div>
  514. <div class="wrapMeansItem">
  515. <div v-for="(item, index) in meansList" class="itemWid" :class="[topIndex == index ? 'active': '']">
  516. <div class="itemBac">
  517. <div>
  518. {{item.value}}
  519. <p>个</p>
  520. </div>
  521. <span>{{item.label}}</span>
  522. </div>
  523. <img v-if="index != meansList.length -1" src="./img/6.png" alt="" />
  524. </div>
  525. </div>
  526. </div>
  527. <div class="shareholding">
  528. <div class="meansHead">
  529. <img src="./img/2.png" alt="" />
  530. 股权类
  531. </div>
  532. <div class="wrapMeansItem">
  533. <div v-for="(item, index) in stockRightList" :class="[topIndex == index+6 ? 'active': '']"
  534. class="itemWid2">
  535. <div class="itemBac itemBac2">
  536. <div>
  537. {{item.value}}
  538. <p>个</p>
  539. </div>
  540. <span>{{item.label}}</span>
  541. </div>
  542. <img v-if="index != stockRightList.length -1" src="./img/6.png" alt="" />
  543. </div>
  544. </div>
  545. </div>
  546. </div>
  547. <div>
  548. <div class="publicTitle">进度成本偏差概览</div>
  549. <div class="progressCost">
  550. <div class="costItem" v-for="(item, index) in costList">
  551. <div class="itemTop">
  552. <div class="topDiv">
  553. <p>项目数量</p>
  554. <div class="costNum">
  555. {{item.num}}
  556. <span>个</span>
  557. </div>
  558. </div>
  559. <div class="topDiv" style="margin-top: 1.875rem">
  560. <p>项目数量</p>
  561. <div class="costNum">
  562. {{item.value}}
  563. <span>亿</span>
  564. </div>
  565. </div>
  566. </div>
  567. <div class="itemBottom">
  568. <img class="aniLeft" src="./img/8.png" alt="" />
  569. <div>{{item.status}}</div>
  570. <img class="aniRight" src="./img/9.png" alt="" />
  571. </div>
  572. </div>
  573. </div>
  574. </div>
  575. <div>
  576. <div class="publicTitle">投资预算执行</div>
  577. <div class="invest">
  578. <div class="lp">
  579. <div class="quan"></div>
  580. <div class="bigq"></div>
  581. <img :src="investData.investList[witchs].url" alt="" />
  582. <div class="plItem" :style="{transform:'rotate('+innerDeg+'deg)'}">
  583. <div :class="[witchs == index? 'active' : '']" v-for="(item, index) in investData.investList"
  584. :style="{ transform: 'translateY(-50%) rotate(-' + item.deg + 'deg)' }" @click="clickItem(index)">
  585. {{item.name}}
  586. </div>
  587. </div>
  588. </div>
  589. <div class="investInfoWrap">
  590. <div class="investInfo">
  591. 预算额<span>{{investData.investList[witchs].yse}}</span>亿
  592. </div>
  593. <div class="investInfo">
  594. 已签合同额<span>{{investData.investList[witchs].yqhte}}</span>亿
  595. </div>
  596. <div class="investInfo">
  597. 产值认定额<span>{{investData.investList[witchs].czrde}}</span>亿
  598. </div>
  599. <div class="investInfo">
  600. 结算额<span>{{investData.investList[witchs].jse}}</span>亿
  601. </div>
  602. <div class="investInfo">
  603. 付款额<span>{{investData.investList[witchs].fke}}</span>亿
  604. </div>
  605. </div>
  606. </div>
  607. </div>
  608. <div>
  609. <div class="publicTitle">进度成本偏差</div>
  610. <div class="echartsWrap" ref="rightEcharts1"></div>
  611. </div>
  612. <div>
  613. <div class="publicTitle">项目风险分析</div>
  614. <div class="projectRisk">
  615. <div class="riskWrap" ref="echartR2"></div>
  616. <div class="riskWrap" ref="echartR3"></div>
  617. <div class="riskWrap longRisk" ref="echartR4"></div>
  618. </div>
  619. </div>
  620. </div>
  621. <div class="bottom-tip" @click="backChina"></div>
  622. </div>
  623. <!-- 标题状图弹窗 -->
  624. <div class="absolute backBlack" v-if="tipShow1 || tipShow2 ">
  625. <div class="tip-box1" v-show="tipShow1">
  626. <img src="./img/close.png" style="width: 40px;height: 40px;top: 30px;right: 30px;" class="absolute pointer"
  627. alt="" @click="closeTap()">
  628. <div class="pop-title1">{{titleName}}</div>
  629. <div class="pop-content1 text-center">
  630. <div class="absolute popLeft" @click.stop="popLeftClick()"></div>
  631. <div class="absolute popright" @click.stop="poprightClick()"></div>
  632. <img :src="`./img/titleImg/${titleUrl}`" class="titleImg" alt="">
  633. </div>
  634. </div>
  635. <!-- 单个柱状图弹窗 -->
  636. <div class="tip-box1" v-show="tipShow2">
  637. <img src="./img/close.png" style="width: 40px;height: 40px;top: 30px;right: 30px;" class="absolute pointer"
  638. alt="" @click="closeTap()">
  639. <div class="pop-title1">{{titleName}}</div>
  640. <div class="pop-content1 text-center">
  641. <div class="h-full w-full" ref=""></div>
  642. </div>
  643. </div>
  644. </div>
  645. </div>
  646. <script src="./js/index.js"></script>
  647. </body>
  648. </html>