vft 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. package/package.json +54 -0
  2. package/src/app/index.ts +3 -0
  3. package/src/app/page-loading/assets/spin.gif +0 -0
  4. package/src/app/page-loading/index.less +10 -0
  5. package/src/app/page-loading/index.ts +3 -0
  6. package/src/app/page-loading/index.vue +38 -0
  7. package/src/app/table/assets/sort_triangle.png +0 -0
  8. package/src/app/table/demos/basic.vue +117 -0
  9. package/src/app/table/demos/complex.vue +2543 -0
  10. package/src/app/table/demos/index.vue +453 -0
  11. package/src/app/table/demos/rightAngle.png +0 -0
  12. package/src/app/table/header.vue +203 -0
  13. package/src/app/table/index.less +119 -0
  14. package/src/app/table/index.ts +5 -0
  15. package/src/app/table/index.vue +478 -0
  16. package/src/app/table/md/api.md +23 -0
  17. package/src/app/table/md/demo.md +3 -0
  18. package/src/app/table/types.ts +45 -0
  19. package/src/common/badge/index.scss +78 -0
  20. package/src/common/badge/index.ts +4 -0
  21. package/src/common/badge/index.vue +111 -0
  22. package/src/common/badge/types.ts +1 -0
  23. package/src/common/clamp/clamp-toggle.vue +91 -0
  24. package/src/common/clamp/index.ts +4 -0
  25. package/src/common/clamp/index.vue +247 -0
  26. package/src/common/code/index.less +321 -0
  27. package/src/common/code/index.ts +3 -0
  28. package/src/common/code/index.vue +60 -0
  29. package/src/common/config-provider/index.ts +4 -0
  30. package/src/common/config-provider/index.vue +94 -0
  31. package/src/common/config-provider/types.ts +29 -0
  32. package/src/common/icon/iconfont/iconfont.css +334 -0
  33. package/src/common/icon/index.scss +31 -0
  34. package/src/common/icon/index.ts +4 -0
  35. package/src/common/icon/index.vue +74 -0
  36. package/src/common/icon/types.ts +16 -0
  37. package/src/common/index.ts +6 -0
  38. package/src/common/message/index.ts +5 -0
  39. package/src/common/message/instance.ts +29 -0
  40. package/src/common/message/message.scss +108 -0
  41. package/src/common/message/message.ts +80 -0
  42. package/src/common/message/message.vue +162 -0
  43. package/src/common/message/method.ts +172 -0
  44. package/src/common/overlay/index.scss +14 -0
  45. package/src/common/overlay/index.ts +3 -0
  46. package/src/common/overlay/index.vue +117 -0
  47. package/src/constants/comp.ts +1 -0
  48. package/src/constants/index.ts +1 -0
  49. package/src/index.ts +3 -0
  50. package/src/page/index.ts +1 -0
  51. package/src/page/page-wrapper/index.scss +31 -0
  52. package/src/page/page-wrapper/index.ts +5 -0
  53. package/src/page/page-wrapper/index.vue +31 -0
  54. package/src/styles/vars.scss +500 -0
  55. package/src/use/index.ts +14 -0
  56. package/src/use/onPopupReopen.ts +15 -0
  57. package/src/use/use-delayed-toggle/index.ts +30 -0
  58. package/src/use/use-floating/index.ts +121 -0
  59. package/src/use/use-forward-ref.ts +35 -0
  60. package/src/use/use-global-config/index.ts +81 -0
  61. package/src/use/use-id/index.ts +43 -0
  62. package/src/use/use-model-toggle/index.ts +151 -0
  63. package/src/use/use-namespace/index.ts +91 -0
  64. package/src/use/use-ordered-children/index.ts +43 -0
  65. package/src/use/use-popper-container/index.ts +43 -0
  66. package/src/use/use-timeout/index.ts +18 -0
  67. package/src/use/use-z-index/index.ts +20 -0
  68. package/src/use/useGlobalZIndex.ts +24 -0
  69. package/src/use/useLazyRender.ts +17 -0
  70. package/src/use/useLockScroll.ts +66 -0
  71. package/src/utils/aria.ts +126 -0
  72. package/src/utils/arrays.ts +13 -0
  73. package/src/utils/error.ts +23 -0
  74. package/src/utils/event.ts +15 -0
  75. package/src/utils/helper.ts +7 -0
  76. package/src/utils/index.ts +8 -0
  77. package/src/utils/interceptor.ts +39 -0
  78. package/src/utils/mount-component.ts +65 -0
  79. package/src/utils/popper.ts +6 -0
  80. package/src/utils/rand.ts +12 -0
  81. package/src/utils/scroll.ts +101 -0
  82. package/src/utils/vnode.ts +169 -0
  83. package/src/web/avatar/index.scss +50 -0
  84. package/src/web/avatar/index.ts +3 -0
  85. package/src/web/avatar/index.vue +83 -0
  86. package/src/web/back-top/index.scss +35 -0
  87. package/src/web/back-top/index.ts +3 -0
  88. package/src/web/back-top/index.vue +72 -0
  89. package/src/web/back-top/types.ts +14 -0
  90. package/src/web/back-top/use-back-top.ts +65 -0
  91. package/src/web/cascader/index.scss +214 -0
  92. package/src/web/cascader/index.ts +5 -0
  93. package/src/web/cascader/index.vue +767 -0
  94. package/src/web/cascader-panel/config.ts +44 -0
  95. package/src/web/cascader-panel/index.scss +134 -0
  96. package/src/web/cascader-panel/index.ts +5 -0
  97. package/src/web/cascader-panel/index.vue +319 -0
  98. package/src/web/cascader-panel/menu.vue +135 -0
  99. package/src/web/cascader-panel/node-content.ts +23 -0
  100. package/src/web/cascader-panel/node.ts +218 -0
  101. package/src/web/cascader-panel/node.vue +197 -0
  102. package/src/web/cascader-panel/store.ts +83 -0
  103. package/src/web/cascader-panel/types.ts +56 -0
  104. package/src/web/cascader-panel/utils.ts +40 -0
  105. package/src/web/cascader-select/README.md +31 -0
  106. package/src/web/cascader-select/index.scss +54 -0
  107. package/src/web/cascader-select/index.ts +5 -0
  108. package/src/web/cascader-select/index.vue +132 -0
  109. package/src/web/cascader-select/types.ts +9 -0
  110. package/src/web/context-menu/createContextMenu.ts +72 -0
  111. package/src/web/context-menu/index.ts +4 -0
  112. package/src/web/context-menu/index.vue +89 -0
  113. package/src/web/context-menu/types.ts +27 -0
  114. package/src/web/context-menu/useContextMenu.ts +14 -0
  115. package/src/web/descriptions/description-item.vue +34 -0
  116. package/src/web/descriptions/description.vue +124 -0
  117. package/src/web/descriptions/descriptions-cell.ts +95 -0
  118. package/src/web/descriptions/descriptions-item.scss +68 -0
  119. package/src/web/descriptions/descriptions-row.vue +49 -0
  120. package/src/web/descriptions/descriptions.scss +153 -0
  121. package/src/web/descriptions/descriptions.type.ts +19 -0
  122. package/src/web/descriptions/index.ts +4 -0
  123. package/src/web/descriptions/token.ts +4 -0
  124. package/src/web/divider/index.scss +53 -0
  125. package/src/web/divider/index.ts +5 -0
  126. package/src/web/divider/index.vue +60 -0
  127. package/src/web/divider/types.ts +2 -0
  128. package/src/web/empty/assets/no-collect.png +0 -0
  129. package/src/web/empty/assets/no-data.png +0 -0
  130. package/src/web/empty/assets/no-filter.png +0 -0
  131. package/src/web/empty/assets/no-page-data.png +0 -0
  132. package/src/web/empty/assets/no-search.png +0 -0
  133. package/src/web/empty/constants.ts +12 -0
  134. package/src/web/empty/index.scss +57 -0
  135. package/src/web/empty/index.ts +5 -0
  136. package/src/web/empty/index.vue +96 -0
  137. package/src/web/exception/exception.png +0 -0
  138. package/src/web/exception/index.ts +3 -0
  139. package/src/web/exception/index.vue +44 -0
  140. package/src/web/filter/README.md +25 -0
  141. package/src/web/filter/index.scss +14 -0
  142. package/src/web/filter/index.ts +5 -0
  143. package/src/web/filter/index.vue +60 -0
  144. package/src/web/filter/type.ts +13 -0
  145. package/src/web/focus-trap/index.ts +6 -0
  146. package/src/web/focus-trap/index.vue +328 -0
  147. package/src/web/focus-trap/tokens.ts +23 -0
  148. package/src/web/focus-trap/utils.ts +178 -0
  149. package/src/web/full-screen/index.scss +22 -0
  150. package/src/web/full-screen/index.ts +3 -0
  151. package/src/web/full-screen/index.vue +24 -0
  152. package/src/web/icon-text/index.ts +3 -0
  153. package/src/web/icon-text/index.vue +77 -0
  154. package/src/web/image/index.scss +46 -0
  155. package/src/web/image/index.ts +5 -0
  156. package/src/web/image/index.vue +251 -0
  157. package/src/web/image/types.ts +1 -0
  158. package/src/web/index.ts +33 -0
  159. package/src/web/input/index.scss +473 -0
  160. package/src/web/input/index.ts +3 -0
  161. package/src/web/input/index.vue +533 -0
  162. package/src/web/input/utils.ts +102 -0
  163. package/src/web/layouts/blank.vue +4 -0
  164. package/src/web/layouts/footer/index.scss +31 -0
  165. package/src/web/layouts/footer/index.ts +3 -0
  166. package/src/web/layouts/footer/index.vue +38 -0
  167. package/src/web/layouts/header/index.scss +35 -0
  168. package/src/web/layouts/header/index.ts +3 -0
  169. package/src/web/layouts/header/index.vue +47 -0
  170. package/src/web/layouts/iframe/index.scss +18 -0
  171. package/src/web/layouts/iframe/index.vue +36 -0
  172. package/src/web/layouts/iframe/page.vue +30 -0
  173. package/src/web/layouts/index.ts +8 -0
  174. package/src/web/layouts/router-view-content/index.vue +70 -0
  175. package/src/web/link/index.scss +95 -0
  176. package/src/web/link/index.ts +3 -0
  177. package/src/web/link/index.vue +68 -0
  178. package/src/web/loading/directive.ts +104 -0
  179. package/src/web/loading/index.ts +6 -0
  180. package/src/web/loading/loading.scss +108 -0
  181. package/src/web/loading/loading.ts +156 -0
  182. package/src/web/loading/service.ts +145 -0
  183. package/src/web/loading/types.ts +29 -0
  184. package/src/web/logo/index.scss +31 -0
  185. package/src/web/logo/index.ts +5 -0
  186. package/src/web/logo/index.vue +45 -0
  187. package/src/web/logo/types.ts +6 -0
  188. package/src/web/menu/index.scss +336 -0
  189. package/src/web/menu/index.ts +8 -0
  190. package/src/web/menu/menu-collapse-transition.vue +62 -0
  191. package/src/web/menu/menu-item-group.vue +27 -0
  192. package/src/web/menu/menu-item.vue +126 -0
  193. package/src/web/menu/menu.vue +459 -0
  194. package/src/web/menu/sub-menu.vue +440 -0
  195. package/src/web/menu/types.ts +66 -0
  196. package/src/web/menu/use-menu-css-var.ts +11 -0
  197. package/src/web/menu/use-menu.ts +60 -0
  198. package/src/web/menu/utils/menu-bar.ts +19 -0
  199. package/src/web/menu/utils/menu-item.ts +55 -0
  200. package/src/web/menu/utils/submenu.ts +66 -0
  201. package/src/web/multiple-select-flat/index.ts +5 -0
  202. package/src/web/multiple-select-flat/index.vue +53 -0
  203. package/src/web/multiple-select-flat/types.ts +5 -0
  204. package/src/web/multiple-tabs/index.scss +16 -0
  205. package/src/web/multiple-tabs/index.ts +5 -0
  206. package/src/web/multiple-tabs/index.vue +193 -0
  207. package/src/web/multiple-tabs/tab-content.vue +40 -0
  208. package/src/web/multiple-tabs/types.ts +3 -0
  209. package/src/web/multiple-tabs/use/index.ts +2 -0
  210. package/src/web/multiple-tabs/use/use-multiple-tabs.ts +86 -0
  211. package/src/web/multiple-tabs/use/use-tab-dropdown.ts +101 -0
  212. package/src/web/nodata/README.md +42 -0
  213. package/src/web/nodata/fail.vue +13 -0
  214. package/src/web/nodata/img/100.png +0 -0
  215. package/src/web/nodata/img/101.png +0 -0
  216. package/src/web/nodata/img/102.png +0 -0
  217. package/src/web/nodata/img/103.png +0 -0
  218. package/src/web/nodata/img/104.png +0 -0
  219. package/src/web/nodata/img/105.png +0 -0
  220. package/src/web/nodata/img/106.png +0 -0
  221. package/src/web/nodata/img/107.png +0 -0
  222. package/src/web/nodata/img/200.png +0 -0
  223. package/src/web/nodata/img/201.png +0 -0
  224. package/src/web/nodata/img/202.png +0 -0
  225. package/src/web/nodata/img/203.png +0 -0
  226. package/src/web/nodata/index.scss +37 -0
  227. package/src/web/nodata/index.ts +6 -0
  228. package/src/web/nodata/index.vue +46 -0
  229. package/src/web/nodata/types.ts +17 -0
  230. package/src/web/only-child/index.tsx +69 -0
  231. package/src/web/pagination/components/jumper.vue +49 -0
  232. package/src/web/pagination/components/next.vue +40 -0
  233. package/src/web/pagination/components/pager.vue +215 -0
  234. package/src/web/pagination/components/prev.vue +35 -0
  235. package/src/web/pagination/components/sizes.vue +76 -0
  236. package/src/web/pagination/components/total.vue +21 -0
  237. package/src/web/pagination/index.scss +231 -0
  238. package/src/web/pagination/index.ts +5 -0
  239. package/src/web/pagination/pagination.ts +363 -0
  240. package/src/web/pagination/usePagination.ts +13 -0
  241. package/src/web/popover/directive.ts +21 -0
  242. package/src/web/popover/index.scss +58 -0
  243. package/src/web/popover/index.ts +3 -0
  244. package/src/web/popover/index.vue +161 -0
  245. package/src/web/popover/types.ts +26 -0
  246. package/src/web/popper/arrow.vue +45 -0
  247. package/src/web/popper/content.vue +311 -0
  248. package/src/web/popper/index.scss +108 -0
  249. package/src/web/popper/index.ts +11 -0
  250. package/src/web/popper/popper.vue +57 -0
  251. package/src/web/popper/tokens.ts +28 -0
  252. package/src/web/popper/trigger.vue +166 -0
  253. package/src/web/popper/types.ts +49 -0
  254. package/src/web/popper/utils.ts +81 -0
  255. package/src/web/qrcode/drawCanvas.ts +32 -0
  256. package/src/web/qrcode/drawLogo.ts +82 -0
  257. package/src/web/qrcode/index.ts +5 -0
  258. package/src/web/qrcode/index.vue +107 -0
  259. package/src/web/qrcode/qrcodePlus.ts +4 -0
  260. package/src/web/qrcode/toCanvas.ts +11 -0
  261. package/src/web/qrcode/types.ts +38 -0
  262. package/src/web/result/index.scss +69 -0
  263. package/src/web/result/index.ts +3 -0
  264. package/src/web/result/index.vue +63 -0
  265. package/src/web/scrollbar/bar.vue +48 -0
  266. package/src/web/scrollbar/index.scss +91 -0
  267. package/src/web/scrollbar/index.ts +5 -0
  268. package/src/web/scrollbar/index.vue +236 -0
  269. package/src/web/scrollbar/thumb.vue +183 -0
  270. package/src/web/scrollbar/tokens.ts +10 -0
  271. package/src/web/scrollbar/types.ts +7 -0
  272. package/src/web/scrollbar/util.ts +38 -0
  273. package/src/web/select/constants.ts +13 -0
  274. package/src/web/select/index.ts +11 -0
  275. package/src/web/select/index.vue +555 -0
  276. package/src/web/select/option-group.scss +49 -0
  277. package/src/web/select/option-group.vue +97 -0
  278. package/src/web/select/option-item.scss +66 -0
  279. package/src/web/select/option.scss +32 -0
  280. package/src/web/select/option.vue +110 -0
  281. package/src/web/select/select-dropdown.scss +86 -0
  282. package/src/web/select/select-dropdown.vue +51 -0
  283. package/src/web/select/select.scss +213 -0
  284. package/src/web/select/token.ts +56 -0
  285. package/src/web/select/useOption.ts +146 -0
  286. package/src/web/select/useSelect.ts +942 -0
  287. package/src/web/select/utils.ts +5 -0
  288. package/src/web/side-menu/index.scss +66 -0
  289. package/src/web/side-menu/index.ts +4 -0
  290. package/src/web/side-menu/index.vue +228 -0
  291. package/src/web/side-menu/types.ts +20 -0
  292. package/src/web/single-select/index.scss +60 -0
  293. package/src/web/single-select/index.ts +5 -0
  294. package/src/web/single-select/index.vue +70 -0
  295. package/src/web/single-select/select@2x.png +0 -0
  296. package/src/web/single-select/types.ts +5 -0
  297. package/src/web/svg/index.ts +3 -0
  298. package/src/web/svg/index.vue +22 -0
  299. package/src/web/tabs/index.scss +579 -0
  300. package/src/web/tabs/index.ts +6 -0
  301. package/src/web/tabs/index.vue +236 -0
  302. package/src/web/tabs/tab-bar.vue +90 -0
  303. package/src/web/tabs/tab-nav.vue +403 -0
  304. package/src/web/tabs/tab-pane.vue +90 -0
  305. package/src/web/tabs/types.ts +66 -0
  306. package/src/web/tag/index.scss +182 -0
  307. package/src/web/tag/index.ts +5 -0
  308. package/src/web/tag/index.vue +78 -0
  309. package/src/web/tag/types.ts +2 -0
  310. package/src/web/tooltip/content.vue +239 -0
  311. package/src/web/tooltip/index.ts +4 -0
  312. package/src/web/tooltip/tokens.ts +21 -0
  313. package/src/web/tooltip/tooltip.vue +270 -0
  314. package/src/web/tooltip/trigger.vue +119 -0
  315. package/src/web/tooltip/types.ts +56 -0
  316. package/src/web/tooltip/utils.ts +20 -0
  317. package/src/web/transition/collapse-transition.vue +73 -0
  318. package/src/web/transition/index.ts +5 -0
  319. package/tsconfig.json +8 -0
  320. package/types/component.ts +1 -0
  321. package/types/index.d.ts +286 -0
@@ -0,0 +1,2543 @@
1
+ <!--eslint-disable-->
2
+ <script setup lang="tsx">
3
+ import { ConfigProvider, PresudoInsert as VriPresudoInsert, Table as VriTable } from '../..';
4
+
5
+ import { ColumnsProps } from '../types';
6
+
7
+ interface Props {
8
+ /** 接口数据 */
9
+ value?: any[];
10
+ /** 年份数据 */
11
+ yearsData?: number[];
12
+ }
13
+
14
+ const {
15
+ // 接口的真实数据 不用关注 折叠即可
16
+ value = [
17
+ {
18
+ classificationLevel: 3,
19
+ classificationLevel2: '温室气体',
20
+ secondClassificationDetails: [
21
+ {
22
+ classificationLevel3: '碳排放量',
23
+ thirdClassificationDetails: [
24
+ {
25
+ name: '碳排放总量(范围一、二)',
26
+ code: null,
27
+ unit: '吨CO2e',
28
+ isKeyIndicators: '1',
29
+ helpIcon: '0',
30
+ annotation: null,
31
+ historicalTrend: '1',
32
+ isBlankLine: false,
33
+ isTraceSource: '1',
34
+ values: [
35
+ {
36
+ year: 2021,
37
+ value: '159,540,000.00',
38
+ yoy: '-4.72%',
39
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
40
+ fileType: 'pdf',
41
+ locationInDocument: 'P89',
42
+ indicator: '碳排放总量(范围一、二)',
43
+ indicatorPublish: '温室气体排放总量',
44
+ indicatorDisplayUnit: '吨CO2e',
45
+ indicatorUnitPublish: '百万吨二氧化碳当量',
46
+ indicatorValuePublish: '159.54',
47
+ calcIndicatorRemark: null,
48
+ contentDescription: null
49
+ },
50
+ {
51
+ year: 2020,
52
+ value: '167,440,000.00',
53
+ yoy: '-3.81%',
54
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
55
+ fileType: 'pdf',
56
+ locationInDocument: 'P89',
57
+ indicator: '碳排放总量(范围一、二)',
58
+ indicatorPublish: '温室气体排放总量',
59
+ indicatorDisplayUnit: '吨CO2e',
60
+ indicatorUnitPublish: '百万吨二氧化碳当量',
61
+ indicatorValuePublish: '167.44',
62
+ calcIndicatorRemark: null,
63
+ contentDescription: null
64
+ },
65
+ {
66
+ year: 2019,
67
+ value: '174,080,000.00',
68
+ yoy: null,
69
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
70
+ fileType: 'pdf',
71
+ locationInDocument: 'P89',
72
+ indicator: '碳排放总量(范围一、二)',
73
+ indicatorPublish: '温室气体排放总量',
74
+ indicatorDisplayUnit: '吨CO2e',
75
+ indicatorUnitPublish: '百万吨二氧化碳当量',
76
+ indicatorValuePublish: '174.08',
77
+ calcIndicatorRemark: null,
78
+ contentDescription: null
79
+ }
80
+ ]
81
+ },
82
+ {
83
+ name: '碳排放量(范围一)',
84
+ code: null,
85
+ unit: '吨CO2e',
86
+ isKeyIndicators: '1',
87
+ helpIcon: '0',
88
+ annotation: null,
89
+ historicalTrend: '1',
90
+ isBlankLine: false,
91
+ isTraceSource: '1',
92
+ values: [
93
+ {
94
+ year: 2021,
95
+ value: '121,390,000.00',
96
+ yoy: '-4.84%',
97
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
98
+ fileType: 'pdf',
99
+ locationInDocument: 'P89',
100
+ indicator: '碳排放量(范围一)',
101
+ indicatorPublish: '直接温室气体排放量',
102
+ indicatorDisplayUnit: '吨CO2e',
103
+ indicatorUnitPublish: '百万吨二氧化碳当量',
104
+ indicatorValuePublish: '121.39',
105
+ calcIndicatorRemark: null,
106
+ contentDescription: null
107
+ },
108
+ {
109
+ year: 2020,
110
+ value: '127,570,000.00',
111
+ yoy: '-3.48%',
112
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
113
+ fileType: 'pdf',
114
+ locationInDocument: 'P89',
115
+ indicator: '碳排放量(范围一)',
116
+ indicatorPublish: '直接温室气体排放量',
117
+ indicatorDisplayUnit: '吨CO2e',
118
+ indicatorUnitPublish: '百万吨二氧化碳当量',
119
+ indicatorValuePublish: '127.57',
120
+ calcIndicatorRemark: null,
121
+ contentDescription: null
122
+ },
123
+ {
124
+ year: 2019,
125
+ value: '132,170,000.00',
126
+ yoy: null,
127
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
128
+ fileType: 'pdf',
129
+ locationInDocument: 'P89',
130
+ indicator: '碳排放量(范围一)',
131
+ indicatorPublish: '直接温室气体排放量',
132
+ indicatorDisplayUnit: '吨CO2e',
133
+ indicatorUnitPublish: '百万吨二氧化碳当量',
134
+ indicatorValuePublish: '132.17',
135
+ calcIndicatorRemark: null,
136
+ contentDescription: null
137
+ }
138
+ ]
139
+ },
140
+ {
141
+ name: '碳排放量(范围二)',
142
+ code: null,
143
+ unit: '吨CO2e',
144
+ isKeyIndicators: '1',
145
+ helpIcon: '0',
146
+ annotation: null,
147
+ historicalTrend: '1',
148
+ isBlankLine: false,
149
+ isTraceSource: '1',
150
+ values: [
151
+ {
152
+ year: 2021,
153
+ value: '38,150,000.00',
154
+ yoy: '-4.31%',
155
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
156
+ fileType: 'pdf',
157
+ locationInDocument: 'P89',
158
+ indicator: '碳排放量(范围二)',
159
+ indicatorPublish: '间接温室气体排放量',
160
+ indicatorDisplayUnit: '吨CO2e',
161
+ indicatorUnitPublish: '百万吨二氧化碳当量',
162
+ indicatorValuePublish: '38.15',
163
+ calcIndicatorRemark: null,
164
+ contentDescription: null
165
+ },
166
+ {
167
+ year: 2020,
168
+ value: '39,870,000.00',
169
+ yoy: '-4.87%',
170
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
171
+ fileType: 'pdf',
172
+ locationInDocument: 'P89',
173
+ indicator: '碳排放量(范围二)',
174
+ indicatorPublish: '间接温室气体排放量',
175
+ indicatorDisplayUnit: '吨CO2e',
176
+ indicatorUnitPublish: '百万吨二氧化碳当量',
177
+ indicatorValuePublish: '39.87',
178
+ calcIndicatorRemark: null,
179
+ contentDescription: null
180
+ },
181
+ {
182
+ year: 2019,
183
+ value: '41,910,000.00',
184
+ yoy: null,
185
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
186
+ fileType: 'pdf',
187
+ locationInDocument: 'P89',
188
+ indicator: '碳排放量(范围二)',
189
+ indicatorPublish: '间接温室气体排放量',
190
+ indicatorDisplayUnit: '吨CO2e',
191
+ indicatorUnitPublish: '百万吨二氧化碳当量',
192
+ indicatorValuePublish: '41.91',
193
+ calcIndicatorRemark: null,
194
+ contentDescription: null
195
+ }
196
+ ]
197
+ }
198
+ ]
199
+ },
200
+ {
201
+ classificationLevel3: '碳排放强度',
202
+ thirdClassificationDetails: [
203
+ {
204
+ name: '单位营收碳排放量(范围一、二)',
205
+ code: null,
206
+ unit: '千克CO2e/万元',
207
+ isKeyIndicators: '1',
208
+ helpIcon: '0',
209
+ annotation: null,
210
+ historicalTrend: '1',
211
+ isBlankLine: false,
212
+ isTraceSource: '1',
213
+ values: [
214
+ {
215
+ year: 2021,
216
+ value: '610.25',
217
+ yoy: '-29.52%',
218
+ fileUrl: null,
219
+ fileType: null,
220
+ locationInDocument: null,
221
+ indicator: '单位营收碳排放量(范围一、二)',
222
+ indicatorPublish: null,
223
+ indicatorDisplayUnit: '千克CO2e/万元',
224
+ indicatorUnitPublish: null,
225
+ indicatorValuePublish: null,
226
+ calcIndicatorRemark: null,
227
+ contentDescription: null
228
+ },
229
+ {
230
+ year: 2020,
231
+ value: '865.84',
232
+ yoy: '25.18%',
233
+ fileUrl: null,
234
+ fileType: null,
235
+ locationInDocument: null,
236
+ indicator: '单位营收碳排放量(范围一、二)',
237
+ indicatorPublish: null,
238
+ indicatorDisplayUnit: '千克CO2e/万元',
239
+ indicatorUnitPublish: null,
240
+ indicatorValuePublish: null,
241
+ calcIndicatorRemark: null,
242
+ contentDescription: null
243
+ },
244
+ {
245
+ year: 2019,
246
+ value: '691.67',
247
+ yoy: null,
248
+ fileUrl: null,
249
+ fileType: null,
250
+ locationInDocument: null,
251
+ indicator: '单位营收碳排放量(范围一、二)',
252
+ indicatorPublish: null,
253
+ indicatorDisplayUnit: '千克CO2e/万元',
254
+ indicatorUnitPublish: null,
255
+ indicatorValuePublish: null,
256
+ calcIndicatorRemark: null,
257
+ contentDescription: null
258
+ }
259
+ ]
260
+ },
261
+ {
262
+ name: '单位营收碳排放量(范围一)',
263
+ code: null,
264
+ unit: '千克CO2e/万元',
265
+ isKeyIndicators: '1',
266
+ helpIcon: '0',
267
+ annotation: null,
268
+ historicalTrend: '1',
269
+ isBlankLine: false,
270
+ isTraceSource: '1',
271
+ values: [
272
+ {
273
+ year: 2021,
274
+ value: '464.32',
275
+ yoy: '-29.61%',
276
+ fileUrl: null,
277
+ fileType: null,
278
+ locationInDocument: null,
279
+ indicator: '单位营收碳排放量(范围一)',
280
+ indicatorPublish: null,
281
+ indicatorDisplayUnit: '千克CO2e/万元',
282
+ indicatorUnitPublish: null,
283
+ indicatorValuePublish: null,
284
+ calcIndicatorRemark: null,
285
+ contentDescription: null
286
+ },
287
+ {
288
+ year: 2020,
289
+ value: '659.67',
290
+ yoy: '25.62%',
291
+ fileUrl: null,
292
+ fileType: null,
293
+ locationInDocument: null,
294
+ indicator: '单位营收碳排放量(范围一)',
295
+ indicatorPublish: null,
296
+ indicatorDisplayUnit: '千克CO2e/万元',
297
+ indicatorUnitPublish: null,
298
+ indicatorValuePublish: null,
299
+ calcIndicatorRemark: null,
300
+ contentDescription: null
301
+ },
302
+ {
303
+ year: 2019,
304
+ value: '525.15',
305
+ yoy: null,
306
+ fileUrl: null,
307
+ fileType: null,
308
+ locationInDocument: null,
309
+ indicator: '单位营收碳排放量(范围一)',
310
+ indicatorPublish: null,
311
+ indicatorDisplayUnit: '千克CO2e/万元',
312
+ indicatorUnitPublish: null,
313
+ indicatorValuePublish: null,
314
+ calcIndicatorRemark: null,
315
+ contentDescription: null
316
+ }
317
+ ]
318
+ },
319
+ {
320
+ name: '单位营收碳排放量(范围二)',
321
+ code: null,
322
+ unit: '千克CO2e/万元',
323
+ isKeyIndicators: '1',
324
+ helpIcon: '0',
325
+ annotation: null,
326
+ historicalTrend: '1',
327
+ isBlankLine: false,
328
+ isTraceSource: '1',
329
+ values: [
330
+ {
331
+ year: 2021,
332
+ value: '145.93',
333
+ yoy: '-29.22%',
334
+ fileUrl: null,
335
+ fileType: null,
336
+ locationInDocument: null,
337
+ indicator: '单位营收碳排放量(范围二)',
338
+ indicatorPublish: null,
339
+ indicatorDisplayUnit: '千克CO2e/万元',
340
+ indicatorUnitPublish: null,
341
+ indicatorValuePublish: null,
342
+ calcIndicatorRemark: null,
343
+ contentDescription: null
344
+ },
345
+ {
346
+ year: 2020,
347
+ value: '206.17',
348
+ yoy: '23.81%',
349
+ fileUrl: null,
350
+ fileType: null,
351
+ locationInDocument: null,
352
+ indicator: '单位营收碳排放量(范围二)',
353
+ indicatorPublish: null,
354
+ indicatorDisplayUnit: '千克CO2e/万元',
355
+ indicatorUnitPublish: null,
356
+ indicatorValuePublish: null,
357
+ calcIndicatorRemark: null,
358
+ contentDescription: null
359
+ },
360
+ {
361
+ year: 2019,
362
+ value: '166.52',
363
+ yoy: null,
364
+ fileUrl: null,
365
+ fileType: null,
366
+ locationInDocument: null,
367
+ indicator: '单位营收碳排放量(范围二)',
368
+ indicatorPublish: null,
369
+ indicatorDisplayUnit: '千克CO2e/万元',
370
+ indicatorUnitPublish: null,
371
+ indicatorValuePublish: null,
372
+ calcIndicatorRemark: null,
373
+ contentDescription: null
374
+ }
375
+ ]
376
+ }
377
+ ]
378
+ }
379
+ ]
380
+ },
381
+ {
382
+ classificationLevel: 3,
383
+ classificationLevel2: '能源',
384
+ secondClassificationDetails: [
385
+ {
386
+ classificationLevel3: '能源消耗量',
387
+ thirdClassificationDetails: [
388
+ {
389
+ name: '综合能耗',
390
+ code: null,
391
+ unit: '吨标准煤',
392
+ isKeyIndicators: '1',
393
+ helpIcon: '0',
394
+ annotation: null,
395
+ historicalTrend: '1',
396
+ isBlankLine: false,
397
+ isTraceSource: '1',
398
+ values: [
399
+ {
400
+ year: 2021,
401
+ value: '62,730,000.00',
402
+ yoy: '-2.08%',
403
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
404
+ fileType: 'pdf',
405
+ locationInDocument: 'P88',
406
+ indicator: '综合能耗',
407
+ indicatorPublish: '能源消耗总量',
408
+ indicatorDisplayUnit: '吨标准煤',
409
+ indicatorUnitPublish: '万吨标准煤',
410
+ indicatorValuePublish: '6,273.00',
411
+ calcIndicatorRemark: null,
412
+ contentDescription: null
413
+ },
414
+ {
415
+ year: 2020,
416
+ value: '64,060,000.00',
417
+ yoy: '-1.63%',
418
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
419
+ fileType: 'pdf',
420
+ locationInDocument: 'P88',
421
+ indicator: '综合能耗',
422
+ indicatorPublish: '能源消耗总量',
423
+ indicatorDisplayUnit: '吨标准煤',
424
+ indicatorUnitPublish: '万吨标准煤',
425
+ indicatorValuePublish: '6,406.00',
426
+ calcIndicatorRemark: null,
427
+ contentDescription: null
428
+ },
429
+ {
430
+ year: 2019,
431
+ value: '65,120,000.00',
432
+ yoy: '-22.84%',
433
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
434
+ fileType: 'pdf',
435
+ locationInDocument: 'P88',
436
+ indicator: '综合能耗',
437
+ indicatorPublish: '能源消耗总量',
438
+ indicatorDisplayUnit: '吨标准煤',
439
+ indicatorUnitPublish: '万吨标准煤',
440
+ indicatorValuePublish: '6,512.00',
441
+ calcIndicatorRemark: null,
442
+ contentDescription: null
443
+ },
444
+ {
445
+ year: 2018,
446
+ value: '84,400,000.00',
447
+ yoy: '4.22%',
448
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
449
+ fileType: 'pdf',
450
+ locationInDocument: 'P75',
451
+ indicator: '综合能耗',
452
+ indicatorPublish: '综合能源消费总量',
453
+ indicatorDisplayUnit: '吨标准煤',
454
+ indicatorUnitPublish: '万吨标准煤',
455
+ indicatorValuePublish: '8,440.00',
456
+ calcIndicatorRemark: null,
457
+ contentDescription: null
458
+ },
459
+ {
460
+ year: 2017,
461
+ value: '80,980,000.00',
462
+ yoy: '1.35%',
463
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
464
+ fileType: 'pdf',
465
+ locationInDocument: 'P79',
466
+ indicator: '综合能耗',
467
+ indicatorPublish: '综合能源消费总量',
468
+ indicatorDisplayUnit: '吨标准煤',
469
+ indicatorUnitPublish: '万吨标准煤',
470
+ indicatorValuePublish: '8,098.00',
471
+ calcIndicatorRemark: null,
472
+ contentDescription: null
473
+ },
474
+ {
475
+ year: 2016,
476
+ value: '79,900,000.00',
477
+ yoy: '-1.08%',
478
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
479
+ fileType: 'pdf',
480
+ locationInDocument: 'P62',
481
+ indicator: '综合能耗',
482
+ indicatorPublish: '综合能源消费总量',
483
+ indicatorDisplayUnit: '吨标准煤',
484
+ indicatorUnitPublish: '万吨标准煤',
485
+ indicatorValuePublish: '7,990.00',
486
+ calcIndicatorRemark: null,
487
+ contentDescription: null
488
+ },
489
+ {
490
+ year: 2015,
491
+ value: '80,770,000.00',
492
+ yoy: null,
493
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
494
+ fileType: 'pdf',
495
+ locationInDocument: 'P40',
496
+ indicator: '综合能耗',
497
+ indicatorPublish: '综合能源消费总量',
498
+ indicatorDisplayUnit: '吨标准煤',
499
+ indicatorUnitPublish: '万吨标准煤',
500
+ indicatorValuePublish: '8,077.00',
501
+ calcIndicatorRemark: null,
502
+ contentDescription: null
503
+ }
504
+ ]
505
+ },
506
+ {
507
+ name: '电力',
508
+ code: null,
509
+ unit: '兆瓦时',
510
+ isKeyIndicators: '1',
511
+ helpIcon: '0',
512
+ annotation: null,
513
+ historicalTrend: '1',
514
+ isBlankLine: false,
515
+ isTraceSource: '1',
516
+ values: [
517
+ {
518
+ year: 2021,
519
+ value: '52,500,000.00',
520
+ yoy: '-5.06%',
521
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
522
+ fileType: 'pdf',
523
+ locationInDocument: 'P88',
524
+ indicator: '电力',
525
+ indicatorPublish: '电力消耗总量',
526
+ indicatorDisplayUnit: '兆瓦时',
527
+ indicatorUnitPublish: '亿千瓦时',
528
+ indicatorValuePublish: '525.00',
529
+ calcIndicatorRemark: null,
530
+ contentDescription: null
531
+ },
532
+ {
533
+ year: 2020,
534
+ value: '55,300,000.00',
535
+ yoy: '-1.78%',
536
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
537
+ fileType: 'pdf',
538
+ locationInDocument: 'P88',
539
+ indicator: '电力',
540
+ indicatorPublish: '电力消耗总量',
541
+ indicatorDisplayUnit: '兆瓦时',
542
+ indicatorUnitPublish: '亿千瓦时',
543
+ indicatorValuePublish: '553.00',
544
+ calcIndicatorRemark: null,
545
+ contentDescription: null
546
+ },
547
+ {
548
+ year: 2019,
549
+ value: '56,300,000.00',
550
+ yoy: '3.87%',
551
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
552
+ fileType: 'pdf',
553
+ locationInDocument: 'P88',
554
+ indicator: '电力',
555
+ indicatorPublish: '电力消耗总量',
556
+ indicatorDisplayUnit: '兆瓦时',
557
+ indicatorUnitPublish: '亿千瓦时',
558
+ indicatorValuePublish: '563.00',
559
+ calcIndicatorRemark: null,
560
+ contentDescription: null
561
+ },
562
+ {
563
+ year: 2018,
564
+ value: '54,200,000.00',
565
+ yoy: '7.75%',
566
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
567
+ fileType: 'pdf',
568
+ locationInDocument: 'P75',
569
+ indicator: '电力',
570
+ indicatorPublish: '电力消费总量',
571
+ indicatorDisplayUnit: '兆瓦时',
572
+ indicatorUnitPublish: '亿千瓦时',
573
+ indicatorValuePublish: '542.00',
574
+ calcIndicatorRemark: null,
575
+ contentDescription: null
576
+ },
577
+ {
578
+ year: 2017,
579
+ value: '50,300,000.00',
580
+ yoy: '7.94%',
581
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
582
+ fileType: 'pdf',
583
+ locationInDocument: 'P79',
584
+ indicator: '电力',
585
+ indicatorPublish: '电力消耗总量',
586
+ indicatorDisplayUnit: '兆瓦时',
587
+ indicatorUnitPublish: '亿千瓦时',
588
+ indicatorValuePublish: '503.00',
589
+ calcIndicatorRemark: null,
590
+ contentDescription: null
591
+ },
592
+ {
593
+ year: 2016,
594
+ value: '46,600,000.00',
595
+ yoy: '8.62%',
596
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
597
+ fileType: 'pdf',
598
+ locationInDocument: 'P62',
599
+ indicator: '电力',
600
+ indicatorPublish: '电力消费总量',
601
+ indicatorDisplayUnit: '兆瓦时',
602
+ indicatorUnitPublish: '亿千瓦时',
603
+ indicatorValuePublish: '466.00',
604
+ calcIndicatorRemark: null,
605
+ contentDescription: null
606
+ },
607
+ {
608
+ year: 2015,
609
+ value: '42,900,000.00',
610
+ yoy: null,
611
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
612
+ fileType: 'pdf',
613
+ locationInDocument: 'P40',
614
+ indicator: '电力',
615
+ indicatorPublish: '电力消费总量',
616
+ indicatorDisplayUnit: '兆瓦时',
617
+ indicatorUnitPublish: '亿千瓦时',
618
+ indicatorValuePublish: '429.00',
619
+ calcIndicatorRemark: null,
620
+ contentDescription: null
621
+ }
622
+ ]
623
+ },
624
+ {
625
+ name: '天然气',
626
+ code: null,
627
+ unit: '吨标准煤',
628
+ isKeyIndicators: '1',
629
+ helpIcon: '0',
630
+ annotation: null,
631
+ historicalTrend: '1',
632
+ isBlankLine: false,
633
+ isTraceSource: '1',
634
+ values: [
635
+ {
636
+ year: 2021,
637
+ value: '23,275,000.00',
638
+ yoy: '-6.42%',
639
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
640
+ fileType: 'pdf',
641
+ locationInDocument: 'P88',
642
+ indicator: '天然气',
643
+ indicatorPublish: '天然气消耗总量',
644
+ indicatorDisplayUnit: '吨标准煤',
645
+ indicatorUnitPublish: '亿立方米',
646
+ indicatorValuePublish: '175.00',
647
+ calcIndicatorRemark: null,
648
+ contentDescription: null
649
+ },
650
+ {
651
+ year: 2020,
652
+ value: '24,871,000.00',
653
+ yoy: '1.08%',
654
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
655
+ fileType: 'pdf',
656
+ locationInDocument: 'P88',
657
+ indicator: '天然气',
658
+ indicatorPublish: '天然气消耗总量',
659
+ indicatorDisplayUnit: '吨标准煤',
660
+ indicatorUnitPublish: '亿立方米',
661
+ indicatorValuePublish: '187.00',
662
+ calcIndicatorRemark: null,
663
+ contentDescription: null
664
+ },
665
+ {
666
+ year: 2019,
667
+ value: '24,605,000.00',
668
+ yoy: '2.21%',
669
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
670
+ fileType: 'pdf',
671
+ locationInDocument: 'P88',
672
+ indicator: '天然气',
673
+ indicatorPublish: '天然气消耗总量',
674
+ indicatorDisplayUnit: '吨标准煤',
675
+ indicatorUnitPublish: '亿立方米',
676
+ indicatorValuePublish: '185.00',
677
+ calcIndicatorRemark: null,
678
+ contentDescription: null
679
+ },
680
+ {
681
+ year: 2018,
682
+ value: '24,073,000.00',
683
+ yoy: '9.04%',
684
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
685
+ fileType: 'pdf',
686
+ locationInDocument: 'P75',
687
+ indicator: '天然气',
688
+ indicatorPublish: '天然气消费总量',
689
+ indicatorDisplayUnit: '吨标准煤',
690
+ indicatorUnitPublish: '亿立方米',
691
+ indicatorValuePublish: '181.00',
692
+ calcIndicatorRemark: null,
693
+ contentDescription: null
694
+ },
695
+ {
696
+ year: 2017,
697
+ value: '22,078,000.00',
698
+ yoy: '2.47%',
699
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
700
+ fileType: 'pdf',
701
+ locationInDocument: 'P79',
702
+ indicator: '天然气',
703
+ indicatorPublish: '天然气消耗总量',
704
+ indicatorDisplayUnit: '吨标准煤',
705
+ indicatorUnitPublish: '亿立方米',
706
+ indicatorValuePublish: '166.00',
707
+ calcIndicatorRemark: null,
708
+ contentDescription: null
709
+ },
710
+ {
711
+ year: 2016,
712
+ value: '21,546,000.00',
713
+ yoy: '-1.82%',
714
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
715
+ fileType: 'pdf',
716
+ locationInDocument: 'P62',
717
+ indicator: '天然气',
718
+ indicatorPublish: '天然气消费总量',
719
+ indicatorDisplayUnit: '吨标准煤',
720
+ indicatorUnitPublish: '亿立方米',
721
+ indicatorValuePublish: '162.00',
722
+ calcIndicatorRemark: null,
723
+ contentDescription: null
724
+ },
725
+ {
726
+ year: 2015,
727
+ value: '21,945,000.00',
728
+ yoy: null,
729
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
730
+ fileType: 'pdf',
731
+ locationInDocument: 'P40',
732
+ indicator: '天然气',
733
+ indicatorPublish: '天然气消费总量',
734
+ indicatorDisplayUnit: '吨标准煤',
735
+ indicatorUnitPublish: '亿立方米',
736
+ indicatorValuePublish: '165.00',
737
+ calcIndicatorRemark: null,
738
+ contentDescription: null
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ name: '原煤',
744
+ code: null,
745
+ unit: '吨标准煤',
746
+ isKeyIndicators: '1',
747
+ helpIcon: '0',
748
+ annotation: null,
749
+ historicalTrend: '1',
750
+ isBlankLine: false,
751
+ isTraceSource: '1',
752
+ values: [
753
+ {
754
+ year: 2021,
755
+ value: '9,478,761.00',
756
+ yoy: '2.95%',
757
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
758
+ fileType: 'pdf',
759
+ locationInDocument: 'P88',
760
+ indicator: '原煤',
761
+ indicatorPublish: '原煤消耗总量',
762
+ indicatorDisplayUnit: '吨标准煤',
763
+ indicatorUnitPublish: '万吨',
764
+ indicatorValuePublish: '1,327.00',
765
+ calcIndicatorRemark: null,
766
+ contentDescription: null
767
+ },
768
+ {
769
+ year: 2020,
770
+ value: '9,207,327.00',
771
+ yoy: '1.66%',
772
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
773
+ fileType: 'pdf',
774
+ locationInDocument: 'P88',
775
+ indicator: '原煤',
776
+ indicatorPublish: '原煤消耗总量',
777
+ indicatorDisplayUnit: '吨标准煤',
778
+ indicatorUnitPublish: '万吨',
779
+ indicatorValuePublish: '1,289.00',
780
+ calcIndicatorRemark: null,
781
+ contentDescription: null
782
+ },
783
+ {
784
+ year: 2019,
785
+ value: '9,057,324.00',
786
+ yoy: '0.08%',
787
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
788
+ fileType: 'pdf',
789
+ locationInDocument: 'P88',
790
+ indicator: '原煤',
791
+ indicatorPublish: '原煤消耗总量',
792
+ indicatorDisplayUnit: '吨标准煤',
793
+ indicatorUnitPublish: '万吨',
794
+ indicatorValuePublish: '1,268.00',
795
+ calcIndicatorRemark: null,
796
+ contentDescription: null
797
+ },
798
+ {
799
+ year: 2018,
800
+ value: '9,050,181.00',
801
+ yoy: '3.77%',
802
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
803
+ fileType: 'pdf',
804
+ locationInDocument: 'P75',
805
+ indicator: '原煤',
806
+ indicatorPublish: '原煤消费总量',
807
+ indicatorDisplayUnit: '吨标准煤',
808
+ indicatorUnitPublish: '万吨',
809
+ indicatorValuePublish: '1,267.00',
810
+ calcIndicatorRemark: null,
811
+ contentDescription: null
812
+ },
813
+ {
814
+ year: 2017,
815
+ value: '8,721,603.00',
816
+ yoy: '3.47%',
817
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
818
+ fileType: 'pdf',
819
+ locationInDocument: 'P79',
820
+ indicator: '原煤',
821
+ indicatorPublish: '原煤消耗总量',
822
+ indicatorDisplayUnit: '吨标准煤',
823
+ indicatorUnitPublish: '万吨',
824
+ indicatorValuePublish: '1,221.00',
825
+ calcIndicatorRemark: null,
826
+ contentDescription: null
827
+ },
828
+ {
829
+ year: 2016,
830
+ value: '8,428,740.00',
831
+ yoy: '-0.25%',
832
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
833
+ fileType: 'pdf',
834
+ locationInDocument: 'P62',
835
+ indicator: '原煤',
836
+ indicatorPublish: '原煤消费总量',
837
+ indicatorDisplayUnit: '吨标准煤',
838
+ indicatorUnitPublish: '万吨',
839
+ indicatorValuePublish: '1,180.00',
840
+ calcIndicatorRemark: null,
841
+ contentDescription: null
842
+ },
843
+ {
844
+ year: 2015,
845
+ value: '8,450,169.00',
846
+ yoy: null,
847
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
848
+ fileType: 'pdf',
849
+ locationInDocument: 'P40',
850
+ indicator: '原煤',
851
+ indicatorPublish: '原煤消费总量',
852
+ indicatorDisplayUnit: '吨标准煤',
853
+ indicatorUnitPublish: '万吨',
854
+ indicatorValuePublish: '1,183.00',
855
+ calcIndicatorRemark: null,
856
+ contentDescription: null
857
+ }
858
+ ]
859
+ },
860
+ {
861
+ name: '原油',
862
+ code: null,
863
+ unit: '吨标准煤',
864
+ isKeyIndicators: '1',
865
+ helpIcon: '0',
866
+ annotation: null,
867
+ historicalTrend: '1',
868
+ isBlankLine: false,
869
+ isTraceSource: '1',
870
+ values: [
871
+ {
872
+ year: 2021,
873
+ value: '2,400,048.00',
874
+ yoy: '-2.33%',
875
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
876
+ fileType: 'pdf',
877
+ locationInDocument: 'P88',
878
+ indicator: '原油',
879
+ indicatorPublish: '原油消耗总量',
880
+ indicatorDisplayUnit: '吨标准煤',
881
+ indicatorUnitPublish: '万吨)',
882
+ indicatorValuePublish: '168.00',
883
+ calcIndicatorRemark: null,
884
+ contentDescription: null
885
+ },
886
+ {
887
+ year: 2020,
888
+ value: '2,457,192.00',
889
+ yoy: '-4.44%',
890
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
891
+ fileType: 'pdf',
892
+ locationInDocument: 'P88',
893
+ indicator: '原油',
894
+ indicatorPublish: '原油消耗总量',
895
+ indicatorDisplayUnit: '吨标准煤',
896
+ indicatorUnitPublish: '万吨)',
897
+ indicatorValuePublish: '172.00',
898
+ calcIndicatorRemark: null,
899
+ contentDescription: null
900
+ },
901
+ {
902
+ year: 2019,
903
+ value: '2,571,480.00',
904
+ yoy: '-3.23%',
905
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
906
+ fileType: 'pdf',
907
+ locationInDocument: 'P88',
908
+ indicator: '原油',
909
+ indicatorPublish: '原油消耗总量',
910
+ indicatorDisplayUnit: '吨标准煤',
911
+ indicatorUnitPublish: '万吨',
912
+ indicatorValuePublish: '180.00',
913
+ calcIndicatorRemark: null,
914
+ contentDescription: null
915
+ },
916
+ {
917
+ year: 2018,
918
+ value: '2,657,196.00',
919
+ yoy: '-0.53%',
920
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
921
+ fileType: 'pdf',
922
+ locationInDocument: 'P75',
923
+ indicator: '原油',
924
+ indicatorPublish: '原油消费总量',
925
+ indicatorDisplayUnit: '吨标准煤',
926
+ indicatorUnitPublish: '万吨',
927
+ indicatorValuePublish: '186.00',
928
+ calcIndicatorRemark: null,
929
+ contentDescription: null
930
+ },
931
+ {
932
+ year: 2017,
933
+ value: '2,671,482.00',
934
+ yoy: '84.24%',
935
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
936
+ fileType: 'pdf',
937
+ locationInDocument: 'P79',
938
+ indicator: '原油',
939
+ indicatorPublish: '原油消耗总量',
940
+ indicatorDisplayUnit: '吨标准煤',
941
+ indicatorUnitPublish: '万吨',
942
+ indicatorValuePublish: '187.00',
943
+ calcIndicatorRemark: null,
944
+ contentDescription: null
945
+ },
946
+ {
947
+ year: 2016,
948
+ value: '1,450,029.00',
949
+ yoy: '-65.00%',
950
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
951
+ fileType: 'pdf',
952
+ locationInDocument: 'P62',
953
+ indicator: '原油',
954
+ indicatorPublish: '原油消费总量',
955
+ indicatorDisplayUnit: '吨标准煤',
956
+ indicatorUnitPublish: '万吨',
957
+ indicatorValuePublish: '203.00',
958
+ calcIndicatorRemark: null,
959
+ contentDescription: null
960
+ },
961
+ {
962
+ year: 2015,
963
+ value: '4,142,940.00',
964
+ yoy: null,
965
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
966
+ fileType: 'pdf',
967
+ locationInDocument: 'P40',
968
+ indicator: '原油',
969
+ indicatorPublish: '原油消费总量',
970
+ indicatorDisplayUnit: '吨标准煤',
971
+ indicatorUnitPublish: '万吨',
972
+ indicatorValuePublish: '290.00',
973
+ calcIndicatorRemark: null,
974
+ contentDescription: null
975
+ }
976
+ ]
977
+ }
978
+ ]
979
+ },
980
+ {
981
+ classificationLevel3: '能源消耗强度',
982
+ thirdClassificationDetails: [
983
+ {
984
+ name: '单位营收综合能耗',
985
+ code: null,
986
+ unit: '千克标准煤/万元',
987
+ isKeyIndicators: '1',
988
+ helpIcon: '0',
989
+ annotation: null,
990
+ historicalTrend: '1',
991
+ isBlankLine: false,
992
+ isTraceSource: '1',
993
+ values: [
994
+ {
995
+ year: 2021,
996
+ value: '239.95',
997
+ yoy: '-27.57%',
998
+ fileUrl: null,
999
+ fileType: null,
1000
+ locationInDocument: null,
1001
+ indicator: '单位营收综合能耗',
1002
+ indicatorPublish: null,
1003
+ indicatorDisplayUnit: '千克标准煤/万元',
1004
+ indicatorUnitPublish: null,
1005
+ indicatorValuePublish: null,
1006
+ calcIndicatorRemark: null,
1007
+ contentDescription: null
1008
+ },
1009
+ {
1010
+ year: 2020,
1011
+ value: '331.26',
1012
+ yoy: '28.03%',
1013
+ fileUrl: null,
1014
+ fileType: null,
1015
+ locationInDocument: null,
1016
+ indicator: '单位营收综合能耗',
1017
+ indicatorPublish: null,
1018
+ indicatorDisplayUnit: '千克标准煤/万元',
1019
+ indicatorUnitPublish: null,
1020
+ indicatorValuePublish: null,
1021
+ calcIndicatorRemark: null,
1022
+ contentDescription: null
1023
+ },
1024
+ {
1025
+ year: 2019,
1026
+ value: '258.74',
1027
+ yoy: '-27.85%',
1028
+ fileUrl: null,
1029
+ fileType: null,
1030
+ locationInDocument: null,
1031
+ indicator: '单位营收综合能耗',
1032
+ indicatorPublish: null,
1033
+ indicatorDisplayUnit: '千克标准煤/万元',
1034
+ indicatorUnitPublish: null,
1035
+ indicatorValuePublish: null,
1036
+ calcIndicatorRemark: null,
1037
+ contentDescription: null
1038
+ },
1039
+ {
1040
+ year: 2018,
1041
+ value: '358.60',
1042
+ yoy: '-10.73%',
1043
+ fileUrl: null,
1044
+ fileType: null,
1045
+ locationInDocument: null,
1046
+ indicator: '单位营收综合能耗',
1047
+ indicatorPublish: null,
1048
+ indicatorDisplayUnit: '千克标准煤/万元',
1049
+ indicatorUnitPublish: null,
1050
+ indicatorValuePublish: null,
1051
+ calcIndicatorRemark: null,
1052
+ contentDescription: null
1053
+ },
1054
+ {
1055
+ year: 2017,
1056
+ value: '401.71',
1057
+ yoy: '-18.71%',
1058
+ fileUrl: null,
1059
+ fileType: null,
1060
+ locationInDocument: null,
1061
+ indicator: '单位营收综合能耗',
1062
+ indicatorPublish: null,
1063
+ indicatorDisplayUnit: '千克标准煤/万元',
1064
+ indicatorUnitPublish: null,
1065
+ indicatorValuePublish: null,
1066
+ calcIndicatorRemark: null,
1067
+ contentDescription: null
1068
+ },
1069
+ {
1070
+ year: 2016,
1071
+ value: '494.15',
1072
+ yoy: '5.56%',
1073
+ fileUrl: null,
1074
+ fileType: null,
1075
+ locationInDocument: null,
1076
+ indicator: '单位营收综合能耗',
1077
+ indicatorPublish: null,
1078
+ indicatorDisplayUnit: '千克标准煤/万元',
1079
+ indicatorUnitPublish: null,
1080
+ indicatorValuePublish: null,
1081
+ calcIndicatorRemark: null,
1082
+ contentDescription: null
1083
+ },
1084
+ {
1085
+ year: 2015,
1086
+ value: '468.12',
1087
+ yoy: null,
1088
+ fileUrl: null,
1089
+ fileType: null,
1090
+ locationInDocument: null,
1091
+ indicator: '单位营收综合能耗',
1092
+ indicatorPublish: null,
1093
+ indicatorDisplayUnit: '千克标准煤/万元',
1094
+ indicatorUnitPublish: null,
1095
+ indicatorValuePublish: null,
1096
+ calcIndicatorRemark: null,
1097
+ contentDescription: null
1098
+ }
1099
+ ]
1100
+ }
1101
+ ]
1102
+ }
1103
+ ]
1104
+ },
1105
+ {
1106
+ classificationLevel: 3,
1107
+ classificationLevel2: '水资源',
1108
+ secondClassificationDetails: [
1109
+ {
1110
+ classificationLevel3: '水资源利用',
1111
+ thirdClassificationDetails: [
1112
+ {
1113
+ name: '用水量',
1114
+ code: null,
1115
+ unit: '吨',
1116
+ isKeyIndicators: '1',
1117
+ helpIcon: '0',
1118
+ annotation: null,
1119
+ historicalTrend: '1',
1120
+ isBlankLine: false,
1121
+ isTraceSource: '1',
1122
+ values: [
1123
+ {
1124
+ year: 2021,
1125
+ value: '75,004.00',
1126
+ yoy: '-2.59%',
1127
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1128
+ fileType: 'pdf',
1129
+ locationInDocument: null,
1130
+ indicator: '用水量',
1131
+ indicatorPublish: '',
1132
+ indicatorDisplayUnit: '吨',
1133
+ indicatorUnitPublish: '',
1134
+ indicatorValuePublish: null,
1135
+ calcIndicatorRemark: null,
1136
+ contentDescription: '根据新鲜水用量推断出'
1137
+ },
1138
+ {
1139
+ year: 2020,
1140
+ value: '76,995.00',
1141
+ yoy: '-3.01%',
1142
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1143
+ fileType: 'pdf',
1144
+ locationInDocument: null,
1145
+ indicator: '用水量',
1146
+ indicatorPublish: '',
1147
+ indicatorDisplayUnit: '吨',
1148
+ indicatorUnitPublish: '',
1149
+ indicatorValuePublish: null,
1150
+ calcIndicatorRemark: null,
1151
+ contentDescription: '根据新鲜水用量推断出'
1152
+ },
1153
+ {
1154
+ year: 2019,
1155
+ value: '79,383.00',
1156
+ yoy: null,
1157
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1158
+ fileType: 'pdf',
1159
+ locationInDocument: null,
1160
+ indicator: '用水量',
1161
+ indicatorPublish: '',
1162
+ indicatorDisplayUnit: '吨',
1163
+ indicatorUnitPublish: '',
1164
+ indicatorValuePublish: null,
1165
+ calcIndicatorRemark: null,
1166
+ contentDescription: '根据新鲜水用量推断出'
1167
+ }
1168
+ ]
1169
+ },
1170
+ {
1171
+ name: '新鲜水用量',
1172
+ code: null,
1173
+ unit: '吨',
1174
+ isKeyIndicators: '0',
1175
+ helpIcon: '0',
1176
+ annotation: null,
1177
+ historicalTrend: '1',
1178
+ isBlankLine: false,
1179
+ isTraceSource: '1',
1180
+ values: [
1181
+ {
1182
+ year: 2021,
1183
+ value: '750,040,000.00',
1184
+ yoy: '-2.59%',
1185
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1186
+ fileType: 'pdf',
1187
+ locationInDocument: 'P89',
1188
+ indicator: '新鲜水用量',
1189
+ indicatorPublish: '新鲜水用量',
1190
+ indicatorDisplayUnit: '吨',
1191
+ indicatorUnitPublish: '万立方米',
1192
+ indicatorValuePublish: '75,004.00',
1193
+ calcIndicatorRemark: null,
1194
+ contentDescription: null
1195
+ },
1196
+ {
1197
+ year: 2020,
1198
+ value: '769,950,000.00',
1199
+ yoy: '-3.01%',
1200
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1201
+ fileType: 'pdf',
1202
+ locationInDocument: 'P89',
1203
+ indicator: '新鲜水用量',
1204
+ indicatorPublish: '新鲜水用量',
1205
+ indicatorDisplayUnit: '吨',
1206
+ indicatorUnitPublish: '万立方米',
1207
+ indicatorValuePublish: '76,995.00',
1208
+ calcIndicatorRemark: null,
1209
+ contentDescription: null
1210
+ },
1211
+ {
1212
+ year: 2019,
1213
+ value: '793,830,000.00',
1214
+ yoy: '-0.78%',
1215
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1216
+ fileType: 'pdf',
1217
+ locationInDocument: 'P89',
1218
+ indicator: '新鲜水用量',
1219
+ indicatorPublish: '新鲜水用量',
1220
+ indicatorDisplayUnit: '吨',
1221
+ indicatorUnitPublish: '万立方米',
1222
+ indicatorValuePublish: '79,383.00',
1223
+ calcIndicatorRemark: null,
1224
+ contentDescription: null
1225
+ },
1226
+ {
1227
+ year: 2018,
1228
+ value: '800,050,000.00',
1229
+ yoy: '1.12%',
1230
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1231
+ fileType: 'pdf',
1232
+ locationInDocument: 'P75',
1233
+ indicator: '新鲜水用量',
1234
+ indicatorPublish: '新鲜水用量',
1235
+ indicatorDisplayUnit: '吨',
1236
+ indicatorUnitPublish: '万立方米',
1237
+ indicatorValuePublish: '80,005.00',
1238
+ calcIndicatorRemark: null,
1239
+ contentDescription: null
1240
+ },
1241
+ {
1242
+ year: 2017,
1243
+ value: '791,210,000.00',
1244
+ yoy: null,
1245
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
1246
+ fileType: 'pdf',
1247
+ locationInDocument: 'P79',
1248
+ indicator: '新鲜水用量',
1249
+ indicatorPublish: '新鲜水用量',
1250
+ indicatorDisplayUnit: '吨',
1251
+ indicatorUnitPublish: '万立方米',
1252
+ indicatorValuePublish: '79,121.00',
1253
+ calcIndicatorRemark: null,
1254
+ contentDescription: null
1255
+ }
1256
+ ]
1257
+ }
1258
+ ]
1259
+ },
1260
+ {
1261
+ classificationLevel3: '用水强度',
1262
+ thirdClassificationDetails: [
1263
+ {
1264
+ name: '单位营收耗水量',
1265
+ code: null,
1266
+ unit: '千克/万元',
1267
+ isKeyIndicators: '1',
1268
+ helpIcon: '0',
1269
+ annotation: null,
1270
+ historicalTrend: '1',
1271
+ isBlankLine: false,
1272
+ isTraceSource: '1',
1273
+ values: [
1274
+ {
1275
+ year: 2021,
1276
+ value: '0.29',
1277
+ yoy: '-27.94%',
1278
+ fileUrl: null,
1279
+ fileType: null,
1280
+ locationInDocument: null,
1281
+ indicator: '单位营收耗水量',
1282
+ indicatorPublish: null,
1283
+ indicatorDisplayUnit: '千克/万元',
1284
+ indicatorUnitPublish: null,
1285
+ indicatorValuePublish: null,
1286
+ calcIndicatorRemark: null,
1287
+ contentDescription: null
1288
+ },
1289
+ {
1290
+ year: 2020,
1291
+ value: '0.40',
1292
+ yoy: '26.23%',
1293
+ fileUrl: null,
1294
+ fileType: null,
1295
+ locationInDocument: null,
1296
+ indicator: '单位营收耗水量',
1297
+ indicatorPublish: null,
1298
+ indicatorDisplayUnit: '千克/万元',
1299
+ indicatorUnitPublish: null,
1300
+ indicatorValuePublish: null,
1301
+ calcIndicatorRemark: null,
1302
+ contentDescription: null
1303
+ },
1304
+ {
1305
+ year: 2019,
1306
+ value: '0.32',
1307
+ yoy: null,
1308
+ fileUrl: null,
1309
+ fileType: null,
1310
+ locationInDocument: null,
1311
+ indicator: '单位营收耗水量',
1312
+ indicatorPublish: null,
1313
+ indicatorDisplayUnit: '千克/万元',
1314
+ indicatorUnitPublish: null,
1315
+ indicatorValuePublish: null,
1316
+ calcIndicatorRemark: null,
1317
+ contentDescription: null
1318
+ }
1319
+ ]
1320
+ }
1321
+ ]
1322
+ }
1323
+ ]
1324
+ },
1325
+ {
1326
+ classificationLevel: 3,
1327
+ classificationLevel2: '污染物',
1328
+ secondClassificationDetails: [
1329
+ {
1330
+ classificationLevel3: '废气',
1331
+ thirdClassificationDetails: [
1332
+ {
1333
+ name: '氮氧化物(NOx)',
1334
+ code: null,
1335
+ unit: '吨',
1336
+ isKeyIndicators: '1',
1337
+ helpIcon: '0',
1338
+ annotation: null,
1339
+ historicalTrend: '1',
1340
+ isBlankLine: false,
1341
+ isTraceSource: '1',
1342
+ values: [
1343
+ {
1344
+ year: 2021,
1345
+ value: '56,400.00',
1346
+ yoy: '-27.32%',
1347
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1348
+ fileType: 'pdf',
1349
+ locationInDocument: 'P89',
1350
+ indicator: '氮氧化物(NOx)',
1351
+ indicatorPublish: '氮氧化物(NOX)排放量',
1352
+ indicatorDisplayUnit: '吨',
1353
+ indicatorUnitPublish: '万吨',
1354
+ indicatorValuePublish: '5.64',
1355
+ calcIndicatorRemark: null,
1356
+ contentDescription: null
1357
+ },
1358
+ {
1359
+ year: 2020,
1360
+ value: '77,600.00',
1361
+ yoy: '-12.81%',
1362
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1363
+ fileType: 'pdf',
1364
+ locationInDocument: 'P89',
1365
+ indicator: '氮氧化物(NOx)',
1366
+ indicatorPublish: '氮氧化物(NOX)排放量',
1367
+ indicatorDisplayUnit: '吨',
1368
+ indicatorUnitPublish: '万吨',
1369
+ indicatorValuePublish: '7.76',
1370
+ calcIndicatorRemark: null,
1371
+ contentDescription: null
1372
+ },
1373
+ {
1374
+ year: 2019,
1375
+ value: '89,000.00',
1376
+ yoy: '-7.87%',
1377
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1378
+ fileType: 'pdf',
1379
+ locationInDocument: 'P89',
1380
+ indicator: '氮氧化物(NOx)',
1381
+ indicatorPublish: '氮氧化物(NOX)排放量',
1382
+ indicatorDisplayUnit: '吨',
1383
+ indicatorUnitPublish: '万吨',
1384
+ indicatorValuePublish: '8.90',
1385
+ calcIndicatorRemark: null,
1386
+ contentDescription: null
1387
+ },
1388
+ {
1389
+ year: 2018,
1390
+ value: '96,600.00',
1391
+ yoy: '-6.12%',
1392
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1393
+ fileType: 'pdf',
1394
+ locationInDocument: 'P75',
1395
+ indicator: '氮氧化物(NOx)',
1396
+ indicatorPublish: '氮氧化物(NOX)排放量',
1397
+ indicatorDisplayUnit: '吨',
1398
+ indicatorUnitPublish: '万吨',
1399
+ indicatorValuePublish: '9.66',
1400
+ calcIndicatorRemark: null,
1401
+ contentDescription: null
1402
+ },
1403
+ {
1404
+ year: 2017,
1405
+ value: '102,900.00',
1406
+ yoy: '-8.70%',
1407
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
1408
+ fileType: 'pdf',
1409
+ locationInDocument: 'P79',
1410
+ indicator: '氮氧化物(NOx)',
1411
+ indicatorPublish: '氮氧化物(NOX)排放量',
1412
+ indicatorDisplayUnit: '吨',
1413
+ indicatorUnitPublish: '万吨',
1414
+ indicatorValuePublish: '10.29',
1415
+ calcIndicatorRemark: null,
1416
+ contentDescription: null
1417
+ },
1418
+ {
1419
+ year: 2016,
1420
+ value: '112,700.00',
1421
+ yoy: '-8.15%',
1422
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
1423
+ fileType: 'pdf',
1424
+ locationInDocument: 'P62',
1425
+ indicator: '氮氧化物(NOx)',
1426
+ indicatorPublish: '氮氧化物(NOX)排放量',
1427
+ indicatorDisplayUnit: '吨',
1428
+ indicatorUnitPublish: '万吨',
1429
+ indicatorValuePublish: '11.27',
1430
+ calcIndicatorRemark: null,
1431
+ contentDescription: null
1432
+ },
1433
+ {
1434
+ year: 2015,
1435
+ value: '122,700.00',
1436
+ yoy: null,
1437
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
1438
+ fileType: 'pdf',
1439
+ locationInDocument: 'P40',
1440
+ indicator: '氮氧化物(NOx)',
1441
+ indicatorPublish: '氮氧化物(NOx)排放量',
1442
+ indicatorDisplayUnit: '吨',
1443
+ indicatorUnitPublish: '万吨',
1444
+ indicatorValuePublish: '12.27',
1445
+ calcIndicatorRemark: null,
1446
+ contentDescription: null
1447
+ }
1448
+ ]
1449
+ },
1450
+ {
1451
+ name: '二氧化硫(SO2)',
1452
+ code: null,
1453
+ unit: '吨',
1454
+ isKeyIndicators: '1',
1455
+ helpIcon: '0',
1456
+ annotation: null,
1457
+ historicalTrend: '1',
1458
+ isBlankLine: false,
1459
+ isTraceSource: '1',
1460
+ values: [
1461
+ {
1462
+ year: 2021,
1463
+ value: '11,100.00',
1464
+ yoy: '-87.44%',
1465
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1466
+ fileType: 'pdf',
1467
+ locationInDocument: 'P89',
1468
+ indicator: '二氧化硫(SO2)',
1469
+ indicatorPublish: '二氧化硫(SO2)排放量',
1470
+ indicatorDisplayUnit: '吨',
1471
+ indicatorUnitPublish: '万吨',
1472
+ indicatorValuePublish: '1.11',
1473
+ calcIndicatorRemark: null,
1474
+ contentDescription: null
1475
+ },
1476
+ {
1477
+ year: 2020,
1478
+ value: '88,400.00',
1479
+ yoy: '-5.76%',
1480
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1481
+ fileType: 'pdf',
1482
+ locationInDocument: 'P89',
1483
+ indicator: '二氧化硫(SO2)',
1484
+ indicatorPublish: '二氧化硫(SO2)排放量',
1485
+ indicatorDisplayUnit: '吨',
1486
+ indicatorUnitPublish: '万吨',
1487
+ indicatorValuePublish: '8.84',
1488
+ calcIndicatorRemark: null,
1489
+ contentDescription: null
1490
+ },
1491
+ {
1492
+ year: 2019,
1493
+ value: '93,800.00',
1494
+ yoy: '-9.81%',
1495
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1496
+ fileType: 'pdf',
1497
+ locationInDocument: 'P89',
1498
+ indicator: '二氧化硫(SO2)',
1499
+ indicatorPublish: '二氧化硫(SO2)排放量',
1500
+ indicatorDisplayUnit: '吨',
1501
+ indicatorUnitPublish: '万吨',
1502
+ indicatorValuePublish: '9.38',
1503
+ calcIndicatorRemark: null,
1504
+ contentDescription: null
1505
+ },
1506
+ {
1507
+ year: 2018,
1508
+ value: '104,000.00',
1509
+ yoy: '-4.67%',
1510
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1511
+ fileType: 'pdf',
1512
+ locationInDocument: 'P75',
1513
+ indicator: '二氧化硫(SO2)',
1514
+ indicatorPublish: '二氧化硫(SO2)排放量',
1515
+ indicatorDisplayUnit: '吨',
1516
+ indicatorUnitPublish: '万吨',
1517
+ indicatorValuePublish: '10.40',
1518
+ calcIndicatorRemark: null,
1519
+ contentDescription: null
1520
+ },
1521
+ {
1522
+ year: 2017,
1523
+ value: '109,100.00',
1524
+ yoy: '-11.44%',
1525
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
1526
+ fileType: 'pdf',
1527
+ locationInDocument: 'P79',
1528
+ indicator: '二氧化硫(SO2)',
1529
+ indicatorPublish: '二氧化硫(SO2)排放量',
1530
+ indicatorDisplayUnit: '吨',
1531
+ indicatorUnitPublish: '万吨',
1532
+ indicatorValuePublish: '10.91',
1533
+ calcIndicatorRemark: null,
1534
+ contentDescription: null
1535
+ },
1536
+ {
1537
+ year: 2016,
1538
+ value: '123,200.00',
1539
+ yoy: '-0.08%',
1540
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
1541
+ fileType: 'pdf',
1542
+ locationInDocument: 'P62',
1543
+ indicator: '二氧化硫(SO2)',
1544
+ indicatorPublish: '二氧化硫(SO2)排放量',
1545
+ indicatorDisplayUnit: '吨',
1546
+ indicatorUnitPublish: '万吨',
1547
+ indicatorValuePublish: '12.32',
1548
+ calcIndicatorRemark: null,
1549
+ contentDescription: null
1550
+ },
1551
+ {
1552
+ year: 2015,
1553
+ value: '123,300.00',
1554
+ yoy: null,
1555
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
1556
+ fileType: 'pdf',
1557
+ locationInDocument: 'P40',
1558
+ indicator: '二氧化硫(SO2)',
1559
+ indicatorPublish: '二氧化硫(SO2)排放量',
1560
+ indicatorDisplayUnit: '吨',
1561
+ indicatorUnitPublish: '万吨',
1562
+ indicatorValuePublish: '12.33',
1563
+ calcIndicatorRemark: null,
1564
+ contentDescription: null
1565
+ }
1566
+ ]
1567
+ }
1568
+ ]
1569
+ },
1570
+ {
1571
+ classificationLevel3: '废水',
1572
+ thirdClassificationDetails: [
1573
+ {
1574
+ name: '氨氮(NH3-N)',
1575
+ code: null,
1576
+ unit: '吨',
1577
+ isKeyIndicators: '1',
1578
+ helpIcon: '0',
1579
+ annotation: null,
1580
+ historicalTrend: '1',
1581
+ isBlankLine: false,
1582
+ isTraceSource: '1',
1583
+ values: [
1584
+ {
1585
+ year: 2020,
1586
+ value: '8,300.00',
1587
+ yoy: '-4.60%',
1588
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1589
+ fileType: 'pdf',
1590
+ locationInDocument: 'P75',
1591
+ indicator: '氨氮(NH3-N)',
1592
+ indicatorPublish: '氨氮(NH3-N)排放量',
1593
+ indicatorDisplayUnit: '吨',
1594
+ indicatorUnitPublish: '万吨',
1595
+ indicatorValuePublish: '0.83',
1596
+ calcIndicatorRemark: null,
1597
+ contentDescription: null
1598
+ },
1599
+ {
1600
+ year: 2019,
1601
+ value: '8,700.00',
1602
+ yoy: '-13.00%',
1603
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1604
+ fileType: 'pdf',
1605
+ locationInDocument: 'P75',
1606
+ indicator: '氨氮(NH3-N)',
1607
+ indicatorPublish: '氨氮(NH3-N)排放量',
1608
+ indicatorDisplayUnit: '吨',
1609
+ indicatorUnitPublish: '万吨',
1610
+ indicatorValuePublish: '0.87',
1611
+ calcIndicatorRemark: null,
1612
+ contentDescription: null
1613
+ },
1614
+ {
1615
+ year: 2018,
1616
+ value: '10,000.00',
1617
+ yoy: '-7.41%',
1618
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1619
+ fileType: 'pdf',
1620
+ locationInDocument: 'P75',
1621
+ indicator: '氨氮(NH3-N)',
1622
+ indicatorPublish: '氨氮(NH3-N)排放量',
1623
+ indicatorDisplayUnit: '吨',
1624
+ indicatorUnitPublish: '万吨',
1625
+ indicatorValuePublish: '1.00',
1626
+ calcIndicatorRemark: null,
1627
+ contentDescription: null
1628
+ },
1629
+ {
1630
+ year: 2017,
1631
+ value: '10,800.00',
1632
+ yoy: '-5.26%',
1633
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
1634
+ fileType: 'pdf',
1635
+ locationInDocument: 'P79',
1636
+ indicator: '氨氮(NH3-N)',
1637
+ indicatorPublish: '氨氮(NH3-N)排放量',
1638
+ indicatorDisplayUnit: '吨',
1639
+ indicatorUnitPublish: '万吨',
1640
+ indicatorValuePublish: '1.08',
1641
+ calcIndicatorRemark: null,
1642
+ contentDescription: null
1643
+ },
1644
+ {
1645
+ year: 2016,
1646
+ value: '11,400.00',
1647
+ yoy: '-2.56%',
1648
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
1649
+ fileType: 'pdf',
1650
+ locationInDocument: 'P62',
1651
+ indicator: '氨氮(NH3-N)',
1652
+ indicatorPublish: '氨氮(NH3-N)排放量',
1653
+ indicatorDisplayUnit: '吨',
1654
+ indicatorUnitPublish: '万吨',
1655
+ indicatorValuePublish: '1.14',
1656
+ calcIndicatorRemark: null,
1657
+ contentDescription: null
1658
+ },
1659
+ {
1660
+ year: 2015,
1661
+ value: '11,700.00',
1662
+ yoy: null,
1663
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
1664
+ fileType: 'pdf',
1665
+ locationInDocument: 'P40',
1666
+ indicator: '氨氮(NH3-N)',
1667
+ indicatorPublish: '氨氮(NH3-N)排放量',
1668
+ indicatorDisplayUnit: '吨',
1669
+ indicatorUnitPublish: '万吨',
1670
+ indicatorValuePublish: '1.17',
1671
+ calcIndicatorRemark: null,
1672
+ contentDescription: null
1673
+ }
1674
+ ]
1675
+ },
1676
+ {
1677
+ name: '化学需氧量(COD)',
1678
+ code: null,
1679
+ unit: '吨',
1680
+ isKeyIndicators: '1',
1681
+ helpIcon: '0',
1682
+ annotation: null,
1683
+ historicalTrend: '1',
1684
+ isBlankLine: false,
1685
+ isTraceSource: '1',
1686
+ values: [
1687
+ {
1688
+ year: 2021,
1689
+ value: '5,300.00',
1690
+ yoy: '-77.45%',
1691
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1692
+ fileType: 'pdf',
1693
+ locationInDocument: 'P89',
1694
+ indicator: '化学需氧量(COD)',
1695
+ indicatorPublish: '化学需氧量(COD)排放量',
1696
+ indicatorDisplayUnit: '吨',
1697
+ indicatorUnitPublish: '万吨',
1698
+ indicatorValuePublish: '0.53',
1699
+ calcIndicatorRemark: null,
1700
+ contentDescription: null
1701
+ },
1702
+ {
1703
+ year: 2020,
1704
+ value: '23,500.00',
1705
+ yoy: '-3.69%',
1706
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1707
+ fileType: 'pdf',
1708
+ locationInDocument: 'P89',
1709
+ indicator: '化学需氧量(COD)',
1710
+ indicatorPublish: '化学需氧量(COD)排放量',
1711
+ indicatorDisplayUnit: '吨',
1712
+ indicatorUnitPublish: '万吨',
1713
+ indicatorValuePublish: '2.35',
1714
+ calcIndicatorRemark: null,
1715
+ contentDescription: null
1716
+ },
1717
+ {
1718
+ year: 2019,
1719
+ value: '24,400.00',
1720
+ yoy: '-5.06%',
1721
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1722
+ fileType: 'pdf',
1723
+ locationInDocument: 'P89',
1724
+ indicator: '化学需氧量(COD)',
1725
+ indicatorPublish: '化学需氧量(COD)排放量',
1726
+ indicatorDisplayUnit: '吨',
1727
+ indicatorUnitPublish: '万吨',
1728
+ indicatorValuePublish: '2.44',
1729
+ calcIndicatorRemark: null,
1730
+ contentDescription: null
1731
+ },
1732
+ {
1733
+ year: 2018,
1734
+ value: '25,700.00',
1735
+ yoy: '-8.87%',
1736
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
1737
+ fileType: 'pdf',
1738
+ locationInDocument: 'P75',
1739
+ indicator: '化学需氧量(COD)',
1740
+ indicatorPublish: '化学需氧量(COD)排放量',
1741
+ indicatorDisplayUnit: '吨',
1742
+ indicatorUnitPublish: '万吨',
1743
+ indicatorValuePublish: '2.57',
1744
+ calcIndicatorRemark: null,
1745
+ contentDescription: null
1746
+ },
1747
+ {
1748
+ year: 2017,
1749
+ value: '28,200.00',
1750
+ yoy: '-0.70%',
1751
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
1752
+ fileType: 'pdf',
1753
+ locationInDocument: 'P79',
1754
+ indicator: '化学需氧量(COD)',
1755
+ indicatorPublish: '化学需氧量(COD)排放量',
1756
+ indicatorDisplayUnit: '吨',
1757
+ indicatorUnitPublish: '万吨',
1758
+ indicatorValuePublish: '2.82',
1759
+ calcIndicatorRemark: null,
1760
+ contentDescription: null
1761
+ },
1762
+ {
1763
+ year: 2016,
1764
+ value: '28,400.00',
1765
+ yoy: '-0.35%',
1766
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
1767
+ fileType: 'pdf',
1768
+ locationInDocument: 'P62',
1769
+ indicator: '化学需氧量(COD)',
1770
+ indicatorPublish: '化学需氧量(COD)排放量',
1771
+ indicatorDisplayUnit: '吨',
1772
+ indicatorUnitPublish: '万吨',
1773
+ indicatorValuePublish: '2.84',
1774
+ calcIndicatorRemark: null,
1775
+ contentDescription: null
1776
+ },
1777
+ {
1778
+ year: 2015,
1779
+ value: '28,500.00',
1780
+ yoy: null,
1781
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
1782
+ fileType: 'pdf',
1783
+ locationInDocument: 'P40',
1784
+ indicator: '化学需氧量(COD)',
1785
+ indicatorPublish: '化学需氧量(COD)排放量',
1786
+ indicatorDisplayUnit: '吨',
1787
+ indicatorUnitPublish: '万吨',
1788
+ indicatorValuePublish: '2.85',
1789
+ calcIndicatorRemark: null,
1790
+ contentDescription: null
1791
+ }
1792
+ ]
1793
+ }
1794
+ ]
1795
+ }
1796
+ ]
1797
+ },
1798
+ {
1799
+ classificationLevel: 3,
1800
+ classificationLevel2: '废弃物',
1801
+ secondClassificationDetails: [
1802
+ {
1803
+ classificationLevel3: '废弃物',
1804
+ thirdClassificationDetails: [
1805
+ {
1806
+ name: '废弃物总量',
1807
+ code: null,
1808
+ unit: '吨',
1809
+ isKeyIndicators: '1',
1810
+ helpIcon: '0',
1811
+ annotation: null,
1812
+ historicalTrend: '1',
1813
+ isBlankLine: false,
1814
+ isTraceSource: '1',
1815
+ values: [
1816
+ {
1817
+ year: 2021,
1818
+ value: '3,999,000.00',
1819
+ yoy: null,
1820
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1821
+ fileType: 'pdf',
1822
+ locationInDocument: null,
1823
+ indicator: '废弃物总量',
1824
+ indicatorPublish: '',
1825
+ indicatorDisplayUnit: '吨',
1826
+ indicatorUnitPublish: '',
1827
+ indicatorValuePublish: null,
1828
+ calcIndicatorRemark: null,
1829
+ contentDescription: '根据有害废弃物和无害废弃物加总得到'
1830
+ }
1831
+ ]
1832
+ },
1833
+ {
1834
+ name: '一般废弃物',
1835
+ code: null,
1836
+ unit: '吨',
1837
+ isKeyIndicators: '1',
1838
+ helpIcon: '0',
1839
+ annotation: null,
1840
+ historicalTrend: '1',
1841
+ isBlankLine: false,
1842
+ isTraceSource: '1',
1843
+ values: [
1844
+ {
1845
+ year: 2021,
1846
+ value: '2,603,000.00',
1847
+ yoy: null,
1848
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1849
+ fileType: 'pdf',
1850
+ locationInDocument: 'P89',
1851
+ indicator: '一般废弃物',
1852
+ indicatorPublish: '一般固体废物量',
1853
+ indicatorDisplayUnit: '吨',
1854
+ indicatorUnitPublish: '万吨',
1855
+ indicatorValuePublish: '260.30',
1856
+ calcIndicatorRemark: null,
1857
+ contentDescription: null
1858
+ }
1859
+ ]
1860
+ },
1861
+ {
1862
+ name: '有害废弃物',
1863
+ code: null,
1864
+ unit: '吨',
1865
+ isKeyIndicators: '1',
1866
+ helpIcon: '0',
1867
+ annotation: null,
1868
+ historicalTrend: '1',
1869
+ isBlankLine: false,
1870
+ isTraceSource: '1',
1871
+ values: [
1872
+ {
1873
+ year: 2021,
1874
+ value: '1,396,000.00',
1875
+ yoy: null,
1876
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1877
+ fileType: 'pdf',
1878
+ locationInDocument: 'P89',
1879
+ indicator: '有害废弃物',
1880
+ indicatorPublish: '危险废物量',
1881
+ indicatorDisplayUnit: '吨',
1882
+ indicatorUnitPublish: '万吨',
1883
+ indicatorValuePublish: '139.60',
1884
+ calcIndicatorRemark: null,
1885
+ contentDescription: null
1886
+ }
1887
+ ]
1888
+ }
1889
+ ]
1890
+ },
1891
+ {
1892
+ classificationLevel3: '废弃物排放强度',
1893
+ thirdClassificationDetails: [
1894
+ {
1895
+ name: '单位营收废弃物产生量',
1896
+ code: null,
1897
+ unit: '千克/万元',
1898
+ isKeyIndicators: '1',
1899
+ helpIcon: '0',
1900
+ annotation: null,
1901
+ historicalTrend: '1',
1902
+ isBlankLine: false,
1903
+ isTraceSource: '1',
1904
+ values: [
1905
+ {
1906
+ year: 2021,
1907
+ value: '15.30',
1908
+ yoy: null,
1909
+ fileUrl: null,
1910
+ fileType: null,
1911
+ locationInDocument: null,
1912
+ indicator: '单位营收废弃物产生量',
1913
+ indicatorPublish: null,
1914
+ indicatorDisplayUnit: '千克/万元',
1915
+ indicatorUnitPublish: null,
1916
+ indicatorValuePublish: null,
1917
+ calcIndicatorRemark: null,
1918
+ contentDescription: null
1919
+ }
1920
+ ]
1921
+ },
1922
+ {
1923
+ name: '单位营收一般废弃物产生量',
1924
+ code: null,
1925
+ unit: '千克/万元',
1926
+ isKeyIndicators: '1',
1927
+ helpIcon: '0',
1928
+ annotation: null,
1929
+ historicalTrend: '1',
1930
+ isBlankLine: false,
1931
+ isTraceSource: '1',
1932
+ values: [
1933
+ {
1934
+ year: 2021,
1935
+ value: '9.96',
1936
+ yoy: null,
1937
+ fileUrl: null,
1938
+ fileType: null,
1939
+ locationInDocument: null,
1940
+ indicator: '单位营收一般废弃物产生量',
1941
+ indicatorPublish: null,
1942
+ indicatorDisplayUnit: '千克/万元',
1943
+ indicatorUnitPublish: null,
1944
+ indicatorValuePublish: null,
1945
+ calcIndicatorRemark: null,
1946
+ contentDescription: null
1947
+ }
1948
+ ]
1949
+ },
1950
+ {
1951
+ name: '单位营收有害废弃物产生量',
1952
+ code: null,
1953
+ unit: '千克/万元',
1954
+ isKeyIndicators: '1',
1955
+ helpIcon: '0',
1956
+ annotation: null,
1957
+ historicalTrend: '1',
1958
+ isBlankLine: false,
1959
+ isTraceSource: '1',
1960
+ values: [
1961
+ {
1962
+ year: 2021,
1963
+ value: '5.34',
1964
+ yoy: null,
1965
+ fileUrl: null,
1966
+ fileType: null,
1967
+ locationInDocument: null,
1968
+ indicator: '单位营收有害废弃物产生量',
1969
+ indicatorPublish: null,
1970
+ indicatorDisplayUnit: '千克/万元',
1971
+ indicatorUnitPublish: null,
1972
+ indicatorValuePublish: null,
1973
+ calcIndicatorRemark: null,
1974
+ contentDescription: null
1975
+ }
1976
+ ]
1977
+ }
1978
+ ]
1979
+ },
1980
+ {
1981
+ classificationLevel3: '废弃物处置利用',
1982
+ thirdClassificationDetails: [
1983
+ {
1984
+ name: '危险废弃物安全处置率',
1985
+ code: null,
1986
+ unit: '%',
1987
+ isKeyIndicators: '0',
1988
+ helpIcon: '0',
1989
+ annotation: null,
1990
+ historicalTrend: '1',
1991
+ isBlankLine: false,
1992
+ isTraceSource: '1',
1993
+ values: [
1994
+ {
1995
+ year: 2021,
1996
+ value: '100.00',
1997
+ yoy: null,
1998
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
1999
+ fileType: 'pdf',
2000
+ locationInDocument: 'P89',
2001
+ indicator: '危险废弃物安全处置率',
2002
+ indicatorPublish: '危险废物合规处置率',
2003
+ indicatorDisplayUnit: '%',
2004
+ indicatorUnitPublish: '%',
2005
+ indicatorValuePublish: '100.00',
2006
+ calcIndicatorRemark: null,
2007
+ contentDescription: null
2008
+ }
2009
+ ]
2010
+ },
2011
+ {
2012
+ name: '固废处置合规率',
2013
+ code: null,
2014
+ unit: '%',
2015
+ isKeyIndicators: '0',
2016
+ helpIcon: '0',
2017
+ annotation: null,
2018
+ historicalTrend: '1',
2019
+ isBlankLine: false,
2020
+ isTraceSource: '1',
2021
+ values: [
2022
+ {
2023
+ year: 2021,
2024
+ value: '100.00',
2025
+ yoy: null,
2026
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2027
+ fileType: 'pdf',
2028
+ locationInDocument: 'P56',
2029
+ indicator: '固废处置合规率',
2030
+ indicatorPublish: '固体废物合法合规处置率达到',
2031
+ indicatorDisplayUnit: '%',
2032
+ indicatorUnitPublish: '%',
2033
+ indicatorValuePublish: '100.00',
2034
+ calcIndicatorRemark: null,
2035
+ contentDescription: null
2036
+ }
2037
+ ]
2038
+ }
2039
+ ]
2040
+ }
2041
+ ]
2042
+ },
2043
+ {
2044
+ classificationLevel: 2,
2045
+ classificationLevel2: '环保投入',
2046
+ secondClassificationDetails: [
2047
+ {
2048
+ classificationLevel3: '环保投入',
2049
+ thirdClassificationDetails: [
2050
+ {
2051
+ name: '环境保护投入',
2052
+ code: null,
2053
+ unit: '万元',
2054
+ isKeyIndicators: '1',
2055
+ helpIcon: '0',
2056
+ annotation: null,
2057
+ historicalTrend: '1',
2058
+ isBlankLine: false,
2059
+ isTraceSource: '1',
2060
+ values: [
2061
+ {
2062
+ year: 2021,
2063
+ value: '216.00',
2064
+ yoy: '-42.40%',
2065
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2066
+ fileType: 'pdf',
2067
+ locationInDocument: 'P77',
2068
+ indicator: '环境保护投入',
2069
+ indicatorPublish: '环境保护投入金额',
2070
+ indicatorDisplayUnit: '万元',
2071
+ indicatorUnitPublish: '万元',
2072
+ indicatorValuePublish: '216.00',
2073
+ calcIndicatorRemark: null,
2074
+ contentDescription: null
2075
+ },
2076
+ {
2077
+ year: 2020,
2078
+ value: '375.00',
2079
+ yoy: '-91.44%',
2080
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2081
+ fileType: 'pdf',
2082
+ locationInDocument: 'P91',
2083
+ indicator: '环境保护投入',
2084
+ indicatorPublish: '环境保护',
2085
+ indicatorDisplayUnit: '万元',
2086
+ indicatorUnitPublish: '万元',
2087
+ indicatorValuePublish: '375.00',
2088
+ calcIndicatorRemark: null,
2089
+ contentDescription: null
2090
+ },
2091
+ {
2092
+ year: 2019,
2093
+ value: '4,383.00',
2094
+ yoy: '-9.81%',
2095
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2096
+ fileType: 'pdf',
2097
+ locationInDocument: 'P91',
2098
+ indicator: '环境保护投入',
2099
+ indicatorPublish: '环境保护',
2100
+ indicatorDisplayUnit: '万元',
2101
+ indicatorUnitPublish: '万元',
2102
+ indicatorValuePublish: '4,383.00',
2103
+ calcIndicatorRemark: null,
2104
+ contentDescription: null
2105
+ },
2106
+ {
2107
+ year: 2018,
2108
+ value: '4,860.00',
2109
+ yoy: '1346.43%',
2110
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
2111
+ fileType: 'pdf',
2112
+ locationInDocument: 'P75',
2113
+ indicator: '环境保护投入',
2114
+ indicatorPublish: '环境保护',
2115
+ indicatorDisplayUnit: '万元',
2116
+ indicatorUnitPublish: '万元',
2117
+ indicatorValuePublish: '4,860.00',
2118
+ calcIndicatorRemark: null,
2119
+ contentDescription: null
2120
+ },
2121
+ {
2122
+ year: 2017,
2123
+ value: '336.00',
2124
+ yoy: '38.27%',
2125
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
2126
+ fileType: 'pdf',
2127
+ locationInDocument: 'P80',
2128
+ indicator: '环境保护投入',
2129
+ indicatorPublish: '环境保护',
2130
+ indicatorDisplayUnit: '万元',
2131
+ indicatorUnitPublish: '万元人民币',
2132
+ indicatorValuePublish: '336.00',
2133
+ calcIndicatorRemark: null,
2134
+ contentDescription: null
2135
+ },
2136
+ {
2137
+ year: 2016,
2138
+ value: '243.00',
2139
+ yoy: '-97.39%',
2140
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/20f9d543d56b1bda21474e9fca693712.pdf',
2141
+ fileType: 'pdf',
2142
+ locationInDocument: 'P62',
2143
+ indicator: '环境保护投入',
2144
+ indicatorPublish: '环境保护',
2145
+ indicatorDisplayUnit: '万元',
2146
+ indicatorUnitPublish: '万元人民币',
2147
+ indicatorValuePublish: '243.00',
2148
+ calcIndicatorRemark: null,
2149
+ contentDescription: null
2150
+ },
2151
+ {
2152
+ year: 2015,
2153
+ value: '9,295.00',
2154
+ yoy: null,
2155
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/0db2f6841c61d92edb877950597b59f3.pdf',
2156
+ fileType: 'pdf',
2157
+ locationInDocument: 'P40',
2158
+ indicator: '环境保护投入',
2159
+ indicatorPublish: '环境保护',
2160
+ indicatorDisplayUnit: '万元',
2161
+ indicatorUnitPublish: '万元人民币',
2162
+ indicatorValuePublish: '9,295.00',
2163
+ calcIndicatorRemark: null,
2164
+ contentDescription: null
2165
+ }
2166
+ ]
2167
+ }
2168
+ ]
2169
+ }
2170
+ ]
2171
+ },
2172
+ {
2173
+ classificationLevel: 3,
2174
+ classificationLevel2: '更多环境绩效',
2175
+ secondClassificationDetails: [
2176
+ {
2177
+ classificationLevel3: '节能减排降碳',
2178
+ thirdClassificationDetails: [
2179
+ {
2180
+ name: '节约标准煤',
2181
+ code: null,
2182
+ unit: '吨',
2183
+ isKeyIndicators: '1',
2184
+ helpIcon: '0',
2185
+ annotation: null,
2186
+ historicalTrend: '1',
2187
+ isBlankLine: false,
2188
+ isTraceSource: '1',
2189
+ values: [
2190
+ {
2191
+ year: 2021,
2192
+ value: '700,000.00',
2193
+ yoy: '-7.89%',
2194
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2195
+ fileType: 'pdf',
2196
+ locationInDocument: 'P54',
2197
+ indicator: '节约标准煤',
2198
+ indicatorPublish: '节能量',
2199
+ indicatorDisplayUnit: '吨',
2200
+ indicatorUnitPublish: '万吨标准煤',
2201
+ indicatorValuePublish: '70.00',
2202
+ calcIndicatorRemark: null,
2203
+ contentDescription: null
2204
+ },
2205
+ {
2206
+ year: 2020,
2207
+ value: '760,000.00',
2208
+ yoy: '-2.56%',
2209
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2210
+ fileType: 'pdf',
2211
+ locationInDocument: 'P88',
2212
+ indicator: '节约标准煤',
2213
+ indicatorPublish: '节能量',
2214
+ indicatorDisplayUnit: '吨',
2215
+ indicatorUnitPublish: '万吨标准煤',
2216
+ indicatorValuePublish: '76.00',
2217
+ calcIndicatorRemark: null,
2218
+ contentDescription: null
2219
+ },
2220
+ {
2221
+ year: 2019,
2222
+ value: '780,000.00',
2223
+ yoy: '-3.70%',
2224
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2225
+ fileType: 'pdf',
2226
+ locationInDocument: 'P88',
2227
+ indicator: '节约标准煤',
2228
+ indicatorPublish: '节能量',
2229
+ indicatorDisplayUnit: '吨',
2230
+ indicatorUnitPublish: '万吨标准煤',
2231
+ indicatorValuePublish: '78.00',
2232
+ calcIndicatorRemark: null,
2233
+ contentDescription: null
2234
+ },
2235
+ {
2236
+ year: 2018,
2237
+ value: '810,000.00',
2238
+ yoy: null,
2239
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
2240
+ fileType: 'pdf',
2241
+ locationInDocument: 'P75',
2242
+ indicator: '节约标准煤',
2243
+ indicatorPublish: '节能量',
2244
+ indicatorDisplayUnit: '吨',
2245
+ indicatorUnitPublish: '万吨标准煤',
2246
+ indicatorValuePublish: '81.00',
2247
+ calcIndicatorRemark: null,
2248
+ contentDescription: null
2249
+ }
2250
+ ]
2251
+ },
2252
+ {
2253
+ name: '节水量',
2254
+ code: null,
2255
+ unit: '吨',
2256
+ isKeyIndicators: '1',
2257
+ helpIcon: '0',
2258
+ annotation: null,
2259
+ historicalTrend: '1',
2260
+ isBlankLine: false,
2261
+ isTraceSource: '1',
2262
+ values: [
2263
+ {
2264
+ year: 2021,
2265
+ value: '9,690,000.00',
2266
+ yoy: '2.65%',
2267
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2268
+ fileType: 'pdf',
2269
+ locationInDocument: 'P89',
2270
+ indicator: '节水量',
2271
+ indicatorPublish: '节水量',
2272
+ indicatorDisplayUnit: '吨',
2273
+ indicatorUnitPublish: '万立方米',
2274
+ indicatorValuePublish: '969.00',
2275
+ calcIndicatorRemark: null,
2276
+ contentDescription: null
2277
+ },
2278
+ {
2279
+ year: 2020,
2280
+ value: '9,440,000.00',
2281
+ yoy: '-3.67%',
2282
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2283
+ fileType: 'pdf',
2284
+ locationInDocument: 'P89',
2285
+ indicator: '节水量',
2286
+ indicatorPublish: '节水量',
2287
+ indicatorDisplayUnit: '吨',
2288
+ indicatorUnitPublish: '万立方米',
2289
+ indicatorValuePublish: '944.00',
2290
+ calcIndicatorRemark: null,
2291
+ contentDescription: null
2292
+ },
2293
+ {
2294
+ year: 2019,
2295
+ value: '9,800,000.00',
2296
+ yoy: '-8.92%',
2297
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2022/4/1/50e13b32eaa7b513add4a0b0051e922c.pdf',
2298
+ fileType: 'pdf',
2299
+ locationInDocument: 'P89',
2300
+ indicator: '节水量',
2301
+ indicatorPublish: '节水量',
2302
+ indicatorDisplayUnit: '吨',
2303
+ indicatorUnitPublish: '万立方米',
2304
+ indicatorValuePublish: '980.00',
2305
+ calcIndicatorRemark: null,
2306
+ contentDescription: null
2307
+ },
2308
+ {
2309
+ year: 2018,
2310
+ value: '10,760,000.00',
2311
+ yoy: null,
2312
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
2313
+ fileType: 'pdf',
2314
+ locationInDocument: 'P75',
2315
+ indicator: '节水量',
2316
+ indicatorPublish: '节水量',
2317
+ indicatorDisplayUnit: '吨',
2318
+ indicatorUnitPublish: '万立方米',
2319
+ indicatorValuePublish: '1,076.00',
2320
+ calcIndicatorRemark: null,
2321
+ contentDescription: null
2322
+ }
2323
+ ]
2324
+ }
2325
+ ]
2326
+ },
2327
+ {
2328
+ classificationLevel3: '矿山资源',
2329
+ thirdClassificationDetails: [
2330
+ {
2331
+ name: '绿色矿山数量',
2332
+ code: null,
2333
+ unit: '座',
2334
+ isKeyIndicators: '0',
2335
+ helpIcon: '0',
2336
+ annotation: null,
2337
+ historicalTrend: '1',
2338
+ isBlankLine: false,
2339
+ isTraceSource: '1',
2340
+ values: [
2341
+ {
2342
+ year: 2020,
2343
+ value: '47.00',
2344
+ yoy: '193.75%',
2345
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/5d3f4ec73b49e07cf1b1db0fc68eaa0b.pdf',
2346
+ fileType: 'pdf',
2347
+ locationInDocument: 'P43',
2348
+ indicator: '绿色矿山数量',
2349
+ indicatorPublish: '入选全国绿色矿山名录',
2350
+ indicatorDisplayUnit: '座',
2351
+ indicatorUnitPublish: '家',
2352
+ indicatorValuePublish: '47.00',
2353
+ calcIndicatorRemark: null,
2354
+ contentDescription: null
2355
+ },
2356
+ {
2357
+ year: 2019,
2358
+ value: '16.00',
2359
+ yoy: null,
2360
+ fileUrl: 'http://huanbaonew.obs.cn-north-1.myhuaweicloud.com/2021/11/3/80a20a3e10bcf282661fb0767af04ded.pdf',
2361
+ fileType: 'pdf',
2362
+ locationInDocument: 'P46',
2363
+ indicator: '绿色矿山数量',
2364
+ indicatorPublish: null,
2365
+ indicatorDisplayUnit: '座',
2366
+ indicatorUnitPublish: null,
2367
+ indicatorValuePublish: null,
2368
+ calcIndicatorRemark: null,
2369
+ contentDescription: '根据4家示范企业和12家油气生产单位通过了国家和地方绿色矿山建设验收推断出'
2370
+ }
2371
+ ]
2372
+ }
2373
+ ]
2374
+ }
2375
+ ]
2376
+ }
2377
+ ],
2378
+ yearsData = [2021, 2020, 2019, 2018, 2017, 2016, 2015]
2379
+ } = defineProps<Props>();
2380
+
2381
+ const tableData: any[] = $ref([]);
2382
+
2383
+ // 整理为 table 所需数据格式
2384
+ value.forEach(({ classificationLevel2, secondClassificationDetails, classificationLevel }) => {
2385
+ tableData.push({
2386
+ name: classificationLevel2,
2387
+ unit: ' ',
2388
+ level: 1
2389
+ });
2390
+ secondClassificationDetails.forEach((item) => {
2391
+ // 只有一级副标题的不 push 进去
2392
+ if (classificationLevel !== 2) {
2393
+ tableData.push({
2394
+ name: item.classificationLevel3,
2395
+ unit: ' ',
2396
+ level: 2
2397
+ });
2398
+ }
2399
+
2400
+ item.thirdClassificationDetails?.forEach((subItem) => {
2401
+ tableData.push(subItem);
2402
+ });
2403
+ });
2404
+ });
2405
+
2406
+ let columns = $ref<ColumnsProps[]>([
2407
+ {
2408
+ title: '指标',
2409
+ fixed: true,
2410
+ width: 120,
2411
+ align: 'left',
2412
+ dataIndex: 'name',
2413
+ render: (text, record, index) => {
2414
+ // 第一层大标题
2415
+ if (record.level === 1) {
2416
+ return (
2417
+ <>
2418
+ <div class={{ placeholder: !!index }}></div>
2419
+ <div class={['h-21px', 'mt-12px']}>
2420
+ <VriPresudoInsert
2421
+ class={['title', 'absolute ml-[-13px]']}
2422
+ text={text}
2423
+ prseudoCfg={{
2424
+ color: '#15b4f1',
2425
+ width: 4,
2426
+ distance: 9
2427
+ }}
2428
+ />
2429
+ </div>
2430
+ </>
2431
+ );
2432
+ }
2433
+ // 小标题
2434
+ else if (record.level === 2) {
2435
+ return <div class="sub-title">{text}</div>;
2436
+ }
2437
+ return text;
2438
+ }
2439
+ },
2440
+ {
2441
+ title: '单位',
2442
+ align: 'left',
2443
+ dataIndex: 'unit',
2444
+ cellClassName: 'unit-cell'
2445
+ }
2446
+ ]);
2447
+
2448
+ yearsData.forEach((item) => {
2449
+ columns.push({
2450
+ title: item + '年',
2451
+ align: 'right',
2452
+ render: (_, record) => {
2453
+ if ([1, 2].includes(record?.level)) {
2454
+ return '';
2455
+ }
2456
+ const data = record?.values?.filter((subItem) => {
2457
+ return subItem.year === item;
2458
+ });
2459
+ return data?.[0]?.value || '-';
2460
+ }
2461
+ });
2462
+ });
2463
+
2464
+ const tableInitStyle = {
2465
+ // theadThHeight: '32px',
2466
+ theadBackground: '#f9f9f9',
2467
+ theadPadding: '7.5px 10px',
2468
+ theadFontSize: '13px',
2469
+ theadColor: '#111',
2470
+
2471
+ // tbodyTrHeight: '32px',
2472
+ tbodyBackground: '#fff',
2473
+ tbodyPadding: '7.5px 10px',
2474
+ tbodyFontSize: '14px',
2475
+ tbodyColor: '#111'
2476
+ };
2477
+ </script>
2478
+
2479
+ <template>
2480
+ <config-provider :themeVars="tableInitStyle">
2481
+ <vri-table :tableData="tableData" :columns="columns">
2482
+ <template v-if="yearsData?.length > 2" #thead-right>
2483
+ <span class="showAngle" />
2484
+ </template>
2485
+ </vri-table>
2486
+ </config-provider>
2487
+ </template>
2488
+
2489
+ <style scoped lang="less">
2490
+ :deep(.vri-table) {
2491
+ .title {
2492
+ white-space: nowrap;
2493
+ font-weight: bold;
2494
+ font-size: 16px;
2495
+ color: #000000;
2496
+ }
2497
+
2498
+ .vri-table__tbody__left {
2499
+ .vri-table__tbody__td {
2500
+ padding: 7.5px 0 7.5px 13px !important;
2501
+ }
2502
+ }
2503
+
2504
+ .sub-title {
2505
+ width: 130px;
2506
+ white-space: nowrap;
2507
+ color: #ee5a00;
2508
+ font-weight: 400;
2509
+ font-size: 15px;
2510
+ }
2511
+
2512
+ .placeholder {
2513
+ min-width: 100% !important;
2514
+ width: 100vw;
2515
+ //position: relative;
2516
+
2517
+ &::before {
2518
+ content: '';
2519
+ position: absolute;
2520
+ width: 100%;
2521
+ height: 8px;
2522
+ display: block;
2523
+ background: #fafafa;
2524
+ left: 0;
2525
+ }
2526
+ }
2527
+
2528
+ .unit-cell {
2529
+ font-size: 12px !important;
2530
+ }
2531
+
2532
+ .showAngle {
2533
+ content: '';
2534
+ background: url('./rightAngle.png');
2535
+ position: absolute;
2536
+ right: 0.04rem;
2537
+ width: 0.12rem;
2538
+ height: 0.16rem;
2539
+ background-size: 100% 100%;
2540
+ background-repeat: no-repeat;
2541
+ }
2542
+ }
2543
+ </style>