index.vue 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079
  1. <template>
  2. <div class="analysisReport" :class="!theme ? 'themeDark' : 'themeLight'">
  3. <div class="analysisReportMain">
  4. <div class="main_top">
  5. <p class="topPsty">能效分析报告</p>
  6. <div class="seach currSearch">
  7. <el-form class="generat-seach" :inline="true">
  8. <el-form-item label="场站" class="!mb-0">
  9. <el-select
  10. style="width: 120px"
  11. v-model="station"
  12. clearable
  13. class="w-[150px]"
  14. >
  15. <el-option
  16. v-for="item in stationList"
  17. :key="item.id"
  18. :label="item.name"
  19. :value="item.id"
  20. >
  21. </el-option>
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item label="选择时间">
  25. <el-date-picker
  26. v-model="pickerVal"
  27. type="monthrange"
  28. value-format="YYYY-MM"
  29. range-separator="至"
  30. start-placeholder="开始时间"
  31. end-placeholder="结束时间"
  32. />
  33. </el-form-item>
  34. <el-form-item>
  35. <el-button type="primary" @click="addform">查询</el-button>
  36. <!-- <el-button
  37. style="width: 100px"
  38. type="primary"
  39. handleReportOp
  40. @click="handleReportOp"
  41. >经济运行报告</el-button
  42. > -->
  43. </el-form-item>
  44. </el-form>
  45. </div>
  46. </div>
  47. <div class="main" :style="{ height: tableHeight }">
  48. <div class="tableDataMain">
  49. <el-table :data="tableData" size="small">
  50. <el-table-column
  51. resizable
  52. align="center"
  53. type="index"
  54. label="序号"
  55. />
  56. <el-table-column
  57. resizable
  58. align="center"
  59. prop="station"
  60. label="场站名称"
  61. />
  62. <el-table-column
  63. resizable
  64. align="center"
  65. prop="time"
  66. label="时间"
  67. />
  68. <el-table-column
  69. resizable
  70. align="center"
  71. prop="wtidcount"
  72. label="风机数量"
  73. />
  74. <el-table-column resizable align="center" label="操作">
  75. <template #default="scope">
  76. <el-button
  77. size="small"
  78. type="danger"
  79. @click="handleReport(scope.$index, scope.row)"
  80. >
  81. 查看报告
  82. </el-button>
  83. </template>
  84. </el-table-column>
  85. <template #empty>
  86. <div class="nodata">
  87. <img :src="nodata" alt="" />
  88. <p class="nodataText">暂无数据,敬请期待</p>
  89. </div>
  90. </template>
  91. </el-table>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. <!-- 查看报告 -->
  97. <el-dialog
  98. class="windLifeDialog reportDia"
  99. v-model="centerDialogVisible"
  100. width="50%"
  101. center
  102. :before-close="handleClose"
  103. style="padding: 15px 40px"
  104. >
  105. <div
  106. id="pdfDom"
  107. :class="!theme ? 'block' : 'white'"
  108. :style="!theme ? 'background-color: #040c0b' : 'background-color: #fff'"
  109. >
  110. <h3
  111. style="
  112. font-weight: bolder;
  113. font-size: 18px;
  114. text-align: center;
  115. margin-bottom: 20px;
  116. text-align: center;
  117. "
  118. :style="!theme ? 'color: #fff' : 'color: #000'"
  119. >
  120. 风电场性能分析报告
  121. </h3>
  122. <div style="margin-bottom: 20px">
  123. <p>
  124. <span class="ml-5" style="width: 500px"
  125. >场站: {{ nbdata.name }}&nbsp;</span
  126. >
  127. <span class="ml-77">风机型号: {{ nbdata.model }}</span>
  128. </p>
  129. <p>
  130. <span class="ml-5">风机数量: {{ nbdata.jrwindQuantityLd }}</span>
  131. <span class="ml-87">装机容量(MW): {{ nbdata.jrwindCapacity }}</span>
  132. </p>
  133. <p>
  134. <span class="ml-5">报告生成日期: {{ time }}</span>
  135. <span class="ml-70">数据分析周期: {{ eltime }}</span>
  136. </p>
  137. </div>
  138. <h3
  139. style="font-weight: bolder; font-size: 18px; margin-bottom: 10px"
  140. :style="!theme ? 'color: #fff' : 'color: #000'"
  141. >
  142. 概述:
  143. </h3>
  144. <p class="ml-7">
  145. 报告基于曲线偏差率、静态偏差对风、容量系数、停机时长、分别对场站{{
  146. nbdata.quantity
  147. }}台风机进行了性能分析,其中有{{
  148. wtcount
  149. }}台风机指标严重异常,信息如下:
  150. </p>
  151. <h3
  152. style="font-weight: bolder; font-size: 18px; margin: 10px 0"
  153. :style="!theme ? 'color: #fff' : 'color: #000'"
  154. >
  155. 1、曲线偏差率
  156. </h3>
  157. <div >
  158. <p class="ml-7">
  159. 曲线偏差率对不同风速区间的实际功率和保证功率做偏差率分析,高偏差率表明存在需要进一步调查潜在问题,偏差率负值表明实际功率低于保证功率
  160. </p>
  161. <el-table
  162. class="toolSty"
  163. :data="curve"
  164. border
  165. style="width: 100%; margin-top: 20px"
  166. >
  167. <el-table-column
  168. prop="section"
  169. align="center"
  170. label="风速区间"
  171. width="180"
  172. />
  173. <el-table-column prop="module" align="center" label="偏差率" />
  174. <el-table-column prop="wtidcount" align="center" label="风机数量" />
  175. <el-table-column
  176. prop="windturbineId"
  177. show-overflow-tooltip
  178. align="center"
  179. label="风机编号"
  180. >
  181. <!-- <template #default="scope">
  182. <el-tooltip class="box-item" effect="dark" :content="scope.row.windturbineId"
  183. placement="top-start">
  184. </el-tooltip>
  185. </template> -->
  186. </el-table-column>
  187. </el-table>
  188. </div>
  189. <h3
  190. style="font-weight: bolder; font-size: 18px; margin: 10px 0"
  191. :style="!theme ? 'color: #fff' : 'color: #000'"
  192. >
  193. 2、静态偏航对风
  194. </h3>
  195. <div >
  196. <p class="ml-7">
  197. 静态偏航对风指风机的叶片与风向之间的偏差,偏差角度过大表明对风存在问题,以下为5-10m风速区间的对风误差
  198. </p>
  199. <el-table
  200. class="toolSty"
  201. :data="staticwind"
  202. border
  203. style="width: 100%; margin-top: 20px"
  204. >
  205. <el-table-column
  206. prop="section"
  207. align="center"
  208. label="严重程度"
  209. width="180"
  210. />
  211. <el-table-column prop="wtidcount" align="center" label="风机数量" />
  212. <!-- <el-table-column prop="amount1" label="风机数量" /> -->
  213. <el-table-column
  214. prop="windturbineId"
  215. show-overflow-tooltip
  216. align="center"
  217. label="风机编号"
  218. />
  219. </el-table>
  220. </div>
  221. <h3
  222. style="font-weight: bolder; font-size: 18px; margin: 10px 0"
  223. :style="!theme ? 'color: #fff' : 'color: #000'"
  224. >
  225. 3、容量系数
  226. </h3>
  227. <div >
  228. <p class="ml-7">
  229. 容量系数是风机发电量能力的指标,数值越低,说明发电效率越低
  230. </p>
  231. <el-table
  232. class="toolSty"
  233. :data="mrlxs"
  234. border
  235. style="width: 100%; margin-top: 20px"
  236. >
  237. <el-table-column
  238. prop="section"
  239. align="center"
  240. label="容量系数"
  241. width="180"
  242. />
  243. <!-- <el-table-column prop="name" label="偏差率" /> -->
  244. <el-table-column prop="wtidcount" align="center" label="风机数量" />
  245. <el-table-column
  246. prop="windturbineId"
  247. show-overflow-tooltip
  248. align="center"
  249. label="风机编号"
  250. />
  251. </el-table>
  252. </div>
  253. <h3
  254. style="font-weight: bolder; font-size: 18px; margin: 10px 0"
  255. :style="!theme ? 'color: #fff' : 'color: #000'"
  256. >
  257. 4、桨距角
  258. </h3>
  259. <div >
  260. <p class="ml-7">
  261. 桨距角分析并网开桨和停机收桨,并网状态下桨距角趋近于0度最优,停机状态下桨距角趋近于90度最优
  262. </p>
  263. <el-table
  264. class="toolSty"
  265. :data="blade"
  266. border
  267. style="width: 100%; margin-top: 20px"
  268. >
  269. <el-table-column
  270. prop="section"
  271. align="center"
  272. label="桨距角"
  273. width="180"
  274. />
  275. <!-- <el-table-column prop="name" label="偏差率" /> -->
  276. <el-table-column prop="wtidcount" align="center" label="风机数量" />
  277. <el-table-column
  278. prop="windturbineId"
  279. show-overflow-tooltip
  280. align="center"
  281. label="风机编号"
  282. />
  283. </el-table>
  284. </div>
  285. <h3
  286. style="font-weight: bolder; font-size: 18px; margin: 10px 0"
  287. :style="!theme ? 'color: #fff' : 'color: #000'"
  288. >
  289. 5、停机时间
  290. </h3>
  291. <div >
  292. <p class="ml-7">
  293. 小风速下停机时间越长反应出低风速风机切入不及时,暴风天气不停机反应出风机切出不及时
  294. </p>
  295. <el-table
  296. class="toolSty"
  297. :data="stoptime"
  298. border
  299. style="width: 100%; margin-top: 20px"
  300. >
  301. <el-table-column
  302. prop="section"
  303. align="center"
  304. label="风速区间"
  305. width="180"
  306. />
  307. <el-table-column prop="wtidcount" align="center" label="风机数量" />
  308. <el-table-column prop="remark" align="center" label="累计时间(min)" />
  309. <el-table-column
  310. prop="windturbineId"
  311. show-overflow-tooltip
  312. align="center"
  313. label="风机编号"
  314. />
  315. </el-table>
  316. </div>
  317. <!-- <h3 style="font-weight: bolder; font-size: 18px; color: black">
  318. 5、损失电量
  319. </h3>
  320. <p class="ml-7">
  321. 损失电量指因故障或维护等原因导致风机未能正常发电,损失电量占比越高,存在的问题越明显
  322. </p>
  323. <el-table
  324. :data="tableData1"
  325. border
  326. style="width: 100%; margin-top: 20px"
  327. >
  328. <el-table-column prop="id" align="center" label="损失占比" width="180" />
  329. <el-table-column prop="amount1" align="center" label="风机数量" />
  330. <el-table-column prop="amount2" align="center" label="风机编号" />
  331. </el-table> -->
  332. <h3
  333. style="font-weight: bolder; font-size: 18px; margin: 10px 0"
  334. :style="!theme ? 'color: #fff' : 'color: #000'"
  335. >
  336. 结论及建议
  337. </h3>
  338. <p class="ml-7">
  339. 综上统计周期内数据分析,{{ nbdata.name }}的{{
  340. hjwtid
  341. }}台风机出现频率最高为{{
  342. hjcount
  343. }}次,可做为重点检修对象,详细可参考分析系统分析功能。
  344. </p>
  345. </div>
  346. <template #footer>
  347. <span class="dialog-footer">
  348. <el-button @click="handleClose">取消</el-button>
  349. <!-- <el-button type="primary" @click="centerDialogVisible = false">
  350. 确定
  351. </el-button> -->
  352. <el-button @click="exportPDF" type="primary" :loading="loading"
  353. >导出 PDF</el-button
  354. >
  355. </span>
  356. </template>
  357. </el-dialog>
  358. <!-- 经济运行分析报告 -->
  359. <el-dialog
  360. class="windLifeDialog reportDia"
  361. v-model="economicalOperationVisible"
  362. width="50%"
  363. center
  364. :before-close="handleCloseOp"
  365. style="padding: 15px 40px"
  366. >
  367. <div class="repoerDateBox">
  368. <span>报告月份选择:</span>
  369. <el-date-picker
  370. style="width: 120px"
  371. v-model="reportParamDate"
  372. type="month"
  373. value-format="YYYY-MM"
  374. placeholder="请选择"
  375. @change="handleReportOp"
  376. />
  377. </div>
  378. <div
  379. id="pdfDomop"
  380. :class="!theme ? 'block' : 'white'"
  381. :style="!theme ? 'background-color: #040c0b' : 'background-color: #fff'"
  382. >
  383. <h2
  384. style="
  385. font-weight: bolder;
  386. text-align: center;
  387. margin-bottom: 20px;
  388. text-align: center;
  389. "
  390. :style="!theme ? 'color: #fff' : 'color: #000'"
  391. >
  392. {{ OperationName }}
  393. </h2>
  394. <p style="text-indent: 2em; font-size: 16px; margin-bottom: 10px">
  395. 根据会议安排,现将公司{{
  396. OperationMonth
  397. }}月份及年累计经济运行情况汇报如下:
  398. </p>
  399. <h3
  400. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  401. :style="!theme ? 'color: #fff' : 'color: #000'"
  402. >
  403. 一、重点指标分析
  404. </h3>
  405. <h3
  406. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  407. :style="!theme ? 'color: #fff' : 'color: #000'"
  408. >
  409. (一)生产指标完成情况
  410. </h3>
  411. <h3
  412. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  413. :style="!theme ? 'color: #fff' : 'color: #000'"
  414. >
  415. 1.月度生产指标完成情况
  416. </h3>
  417. <p
  418. style="
  419. text-indent: 2em;
  420. font-size: 15px;
  421. text-align: justify;
  422. line-height: 22px;
  423. "
  424. >
  425. <!-- 2月份,公司全口径完成发电量8895.2704万kWh,完成月度计划电量(内控值)10423万kWh的85.34%,同比(9295.3119万kWh)减少400.0416万kWh;其中,繁食沟1281.42万kWh、同比增加40.6万kWh;草山梁720.9180万kWh、同比增加329.75万kWh;吉山梁1622.04万kWh、同比减少268.1万kWh;左庄1353.24万kWh、同比减少35万kWh;新庄2254.28万kWh、同比减少335.44万kWh;雷家山1392.52万kWh、同比减少338.733万kWh;芦河光伏40.208万kWh、同比减少3.696万kWh;咸阳光伏22.9354万kWh、同比增加2.8685万kWh;兴平光伏1.7913万kWh;九宗山光伏108.1081万kWh;西社光伏97.8096万kWh。 -->
  426. {{ OperationData.yfdl }}
  427. </p>
  428. <p
  429. style="
  430. text-indent: 2em;
  431. font-size: 15px;
  432. text-align: justify;
  433. line-height: 22px;
  434. "
  435. >
  436. <!-- 2月份,公司全口径综合厂用电率2.11%,同比升高0.57个百分点;风电综合厂用电率1.96%,同比升高0.42个百分点;光伏综合厂用电率6.81%,同比升高5.73个百分点。其中繁食沟2.55%、同比升高0.48个百分点;草山梁2.06%、同比降低0.61个百分点;吉山梁2.59%、同比升高0.51个百分点;左庄1.96%,同比增加0.46个百分点;新庄1.43%、同比升高0.21个百分点;雷家山1.51%、同比升高0.67个百分点;芦河光伏2.02%,同比升高0.45个百分点;九宗山光伏9.93%;西社光伏7.07%。 -->
  437. {{ OperationData.ycydl }}
  438. </p>
  439. <h3
  440. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  441. :style="!theme ? 'color: #fff' : 'color: #000'"
  442. >
  443. 2.年度生产指标完成情况
  444. </h3>
  445. <p
  446. style="
  447. text-indent: 2em;
  448. font-size: 15px;
  449. text-align: justify;
  450. line-height: 22px;
  451. "
  452. >
  453. <!-- 截止2月份,公司全口径完成发电量20427.6872万kWh,同比(25259.3143万kWh)减少4831.63万kWh;其中,繁食沟3015.18万kWh、同比减少798.25万kWh;草山梁1488.184万kWh、同比减少33.42万kWh;吉山梁3686.76万kWh、同比减少879.76万kWh;左庄3121.44万kWh、同比减少878.08万kWh;新庄5342.4万kWh、同比减少1526万kWh;雷家山3215.795万kWh、同比减少1139.76万kWh;芦河光伏92.68万kWh、同比增加3.04万kWh;咸阳光伏50.1944万kWh、同比增加5.55万kWh;兴平光伏17.9517万kWh;九宗山光伏162.9198万kWh;西社光伏234.1823万kWh。 -->
  454. {{ OperationData.nfdl }}
  455. </p>
  456. <p
  457. style="
  458. text-indent: 2em;
  459. font-size: 15px;
  460. text-align: justify;
  461. line-height: 22px;
  462. "
  463. >
  464. <!-- 截止2月份,公司全口径综合厂用电率1.74%,同比升高0.45个百分点;风电综合厂用电率1.61%,同比升高0.32个百分点;光伏综合厂用电率6.27%,同比升高5.02个百分点。其中繁食沟2.02%、同比升高0.41个百分点;草山梁1.74%、同比升高0.34个百分点;吉山梁2.13%、同比升高0.28个百分点;左庄1.51%、同比升高0.41个百分点;新庄1.18%、同比升高0.22个百分点;雷家山1.36%、同比升高0.28个百分点;芦河光伏1.98%,同比升高0.1个百分点;九宗山光伏13.46%;西社光伏4.80%。 -->
  465. {{ OperationData.ncydl }}
  466. </p>
  467. <h3
  468. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  469. :style="!theme ? 'color: #fff' : 'color: #000'"
  470. >
  471. (二)重点指标完成情况
  472. </h3>
  473. <h3
  474. style="font-weight: bolder; margin-bottom: 10px"
  475. :style="!theme ? 'color: #fff' : 'color: #000'"
  476. >
  477. 1.风资源变化与利用小时变化的对应关系分析
  478. </h3>
  479. <h3
  480. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  481. :style="!theme ? 'color: #fff' : 'color: #000'"
  482. >
  483. 月度
  484. </h3>
  485. <div >
  486. <el-table
  487. class="toolSty"
  488. :data="fzylyxslistM"
  489. border
  490. style="width: 100%; margin: 10px 0"
  491. >
  492. <el-table-column prop="station" align="center" label="项目" />
  493. <el-table-column
  494. prop="pjfs"
  495. align="center"
  496. label="风机平均风速(m/s)"
  497. />
  498. <el-table-column
  499. prop="cftPjfs"
  500. align="center"
  501. label="测风塔平均风速(m/s)"
  502. />
  503. <el-table-column prop="hjwd" align="center" label="环境温度(℃)" />
  504. <el-table-column
  505. prop="lllyxs"
  506. align="center"
  507. label="理论利用小时数(h)"
  508. />
  509. <el-table-column
  510. prop="sjlyxs"
  511. align="center"
  512. label="实际利用小时数(h)"
  513. />
  514. </el-table>
  515. </div>
  516. <p
  517. style="
  518. text-indent: 2em;
  519. font-size: 15px;
  520. text-align: justify;
  521. line-height: 22px;
  522. "
  523. >
  524. <!-- 2月份,全口径平均风速5.13m/s,较同期5.15m/s降低0.02m/s,与测风塔平均风速基本一致;各风场平均风速与测风塔平均风速偏差基本符合实际情况。从六个风场的风速、实际利用小时数与理论利用小时数比值可以看出,本月左庄风电场风速最高,理论利用小时数偏低;新庄风电场理论利用小时数与实际利用小时数偏差过大,但利用小时数最高;新庄风场风能利用率最高,吉山梁风场风能利用率最低。 -->
  525. {{ OperationData.yfzybh }}
  526. </p>
  527. <h3
  528. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  529. :style="!theme ? 'color: #fff' : 'color: #000'"
  530. >
  531. 年度
  532. </h3>
  533. <div >
  534. <el-table
  535. class="toolSty"
  536. :data="fzylyxslistY"
  537. border
  538. style="width: 100%; margin: 10px 0"
  539. >
  540. <el-table-column prop="station" align="center" label="项目" />
  541. <el-table-column
  542. prop="pjfs"
  543. align="center"
  544. label="风机平均风速(m/s)"
  545. />
  546. <el-table-column
  547. prop="cftPjfs"
  548. align="center"
  549. label="测风塔平均风速(m/s)"
  550. />
  551. <el-table-column prop="hjwd" align="center" label="环境温度(℃)" />
  552. <el-table-column
  553. prop="lllyxs"
  554. align="center"
  555. label="理论利用小时数(h)"
  556. />
  557. <el-table-column
  558. prop="sjlyxs"
  559. align="center"
  560. label="实际利用小时数(h)"
  561. />
  562. </el-table>
  563. </div>
  564. <p
  565. style="
  566. text-indent: 2em;
  567. font-size: 15px;
  568. text-align: justify;
  569. line-height: 22px;
  570. "
  571. >
  572. <!-- 截止2月份,全口径平均风速5.21m/s,较同期5.59m/s降低0.38m/s,与测风塔平均风速基本一致;各风场平均风速与测风塔平均风速偏差基本符合实际情况。从六个风场的风速、实际利用小时数与理论利用小时数比值可以看出,左庄风电场风速最高,理论利用小时数偏低;新庄风电场、繁食沟风电场理论利用小时数与实际利用小时数偏差过大;新庄风场风能利用率最高,吉山梁风场风能利用率最低。 -->
  573. {{ OperationData.nfzybh }}
  574. </p>
  575. <h3
  576. style="font-weight: bolder; margin: 10px 0"
  577. :style="!theme ? 'color: #fff' : 'color: #000'"
  578. >
  579. 2.实际发电量与理论发电量差异
  580. </h3>
  581. <h3
  582. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  583. :style="!theme ? 'color: #fff' : 'color: #000'"
  584. >
  585. 月度
  586. </h3>
  587. <div >
  588. <el-table
  589. class="toolSty"
  590. :data="dlcylistM"
  591. border
  592. style="width: 100%; margin: 10px 0"
  593. >
  594. <el-table-column
  595. prop="windpowerstationName"
  596. align="center"
  597. label="风场"
  598. />
  599. <el-table-column
  600. prop="llfdl"
  601. align="center"
  602. label="理论发电量(SCADA)"
  603. />
  604. <el-table-column prop="fdl" align="center" label="发电量" />
  605. <el-table-column prop="swdl" align="center" label="上网电量" />
  606. <el-table-column prop="zydl" align="center" label="35kV站用电量" />
  607. <el-table-column prop="ssdl" align="center" label="损失电量" />
  608. <el-table-column prop="xnssdl" align="center" label="性能损失电量" />
  609. </el-table>
  610. </div>
  611. <h3
  612. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  613. :style="!theme ? 'color: #fff' : 'color: #000'"
  614. >
  615. 年度
  616. </h3>
  617. <div >
  618. <el-table
  619. class="toolSty"
  620. :data="dlcylistY"
  621. border
  622. style="width: 100%; margin: 10px 0"
  623. >
  624. <el-table-column
  625. prop="windpowerstationName"
  626. align="center"
  627. label="风场"
  628. />
  629. <el-table-column
  630. prop="llfdl"
  631. align="center"
  632. label="理论发电量(SCADA)"
  633. />
  634. <el-table-column prop="fdl" align="center" label="发电量" />
  635. <el-table-column prop="swdl" align="center" label="上网电量" />
  636. <el-table-column prop="zydl" align="center" label="35kV站用电量" />
  637. <el-table-column prop="ssdl" align="center" label="损失电量" />
  638. <el-table-column prop="xnssdl" align="center" label="性能损失电量" />
  639. </el-table>
  640. </div>
  641. <h3
  642. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  643. :style="!theme ? 'color: #fff' : 'color: #000'"
  644. >
  645. (1)实际发电量与理论发电量差异
  646. </h3>
  647. <p
  648. style="
  649. text-indent: 2em;
  650. font-size: 15px;
  651. text-align: justify;
  652. line-height: 22px;
  653. "
  654. >
  655. <!-- 2月份,全口径实际发电量占理论发电量86.05%,其中:吉山梁77.90%,繁食沟94.09%,草山梁85.48%,左庄92.78%,新庄78.68%,雷家山98.69%;全口径损失电量(不包含性能损失)占理论发电量20.13%,其中:吉山梁19.39%,繁食沟10.92%,草山梁4.64%,左庄45.4%,新庄16.93%,雷家山19.77%;全口径性能损失占理论发电量5.94%,其中:吉山梁2.71%,繁食沟5.7%,草山梁2.45%,左庄13.69%,新庄6.96%;全口径性能损失占理论发电量2.94%。 -->
  656. {{ OperationData.yfdl_llfdlcy }}
  657. </p>
  658. <p
  659. style="
  660. text-indent: 2em;
  661. font-size: 15px;
  662. text-align: justify;
  663. line-height: 22px;
  664. "
  665. >
  666. <!-- 截止2月份,全口径实际发电量占理论发电量88.32%,其中:吉山梁88.50%,繁食沟81.17%,草山梁90.54%,左庄97.84%,新庄83.08%,雷家山95.93%;全口径损失电量(不包含性能损失)占理论发电量14.74%,其中:吉山梁12.06%,繁食沟5.97%,草山梁4.66%,左庄24.01%,新庄19.78%,雷家山14.1%;全口径性能损失占理论发电量5.56%,其中:吉山梁2.08%,繁食沟5.70%,草山梁2.44%,左庄8.5%,新庄7.45%,雷家山4.76%。 -->
  667. {{ OperationData.nfdl_llfdlcy }}
  668. </p>
  669. <h3
  670. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  671. :style="!theme ? 'color: #fff' : 'color: #000'"
  672. >
  673. (2)上网电量与实际发电量差异
  674. </h3>
  675. <p
  676. style="
  677. text-indent: 2em;
  678. font-size: 15px;
  679. text-align: justify;
  680. line-height: 22px;
  681. "
  682. >
  683. <!-- 2月份,全口径上网电量占实际发电量98.96%,其中:吉山梁98.51%,繁食沟98.58%,草山梁99.25%,左庄99.13%,新庄99.19%,雷家山99.11%。主要原因:主变、站用变及110kV线路损耗。 -->
  684. {{ OperationData.yswdl_fdl }}
  685. </p>
  686. <p
  687. style="
  688. text-indent: 2em;
  689. font-size: 15px;
  690. text-align: justify;
  691. line-height: 22px;
  692. "
  693. >
  694. <!-- 截止2月份,全口径上网电量占实际发电量98.94%,其中:吉山梁98.53%,繁食沟98.61%,草山梁99.16%,左庄99.11%,新庄99.19%,雷家山99.05%。主要原因:主变、站用变及110kV线路损耗。 -->
  695. {{ OperationData.nswdl_fdl }}
  696. </p>
  697. <h3
  698. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  699. :style="!theme ? 'color: #fff' : 'color: #000'"
  700. >
  701. (3)35kV站用电量对比分析
  702. </h3>
  703. <p
  704. style="
  705. text-indent: 2em;
  706. font-size: 15px;
  707. text-align: justify;
  708. line-height: 22px;
  709. "
  710. >
  711. <!-- 2月份,全口径35kV站用变电量占实际发电量0.39%,其中:吉山梁0.41%,繁食沟0.40%,草山梁0.54%,左庄0.24%,新庄0.42%,雷家山0.35%。 -->
  712. {{ OperationData.yzydl_fdl }}
  713. </p>
  714. <p
  715. style="
  716. text-indent: 2em;
  717. font-size: 15px;
  718. text-align: justify;
  719. line-height: 22px;
  720. "
  721. >
  722. <!-- 截止2月份,全口径35kV站用变电量占实际发电量0.35%,其中:吉山梁0.39%,繁食沟0.36%,草山梁0.53%,左庄0.22%,新庄0.38%,雷家山0.33%。 -->
  723. {{ OperationData.nzydl_fdl }}
  724. </p>
  725. <h3
  726. style="font-weight: bolder; margin: 10px 0"
  727. :style="!theme ? 'color: #fff' : 'color: #000'"
  728. >
  729. 3.五大损失电量分析
  730. </h3>
  731. <div >
  732. <el-table
  733. class="toolSty"
  734. :data="wdssdlfx"
  735. :span-method="objectSpanMethod"
  736. border
  737. style="width: 100%; margin: 10px 0"
  738. >
  739. <el-table-column
  740. prop="windpowerstationName"
  741. align="center"
  742. label="场站"
  743. />
  744. <el-table-column prop="wdss" align="center" label="五大损失" />
  745. <el-table-column
  746. prop="gzssdl"
  747. align="center"
  748. label="非计划(故障)损失电量"
  749. />
  750. <el-table-column prop="jhssdl" align="center" label="计划损失电量" />
  751. <el-table-column
  752. prop="xdssdl"
  753. align="center"
  754. label="限负荷损失电量"
  755. />
  756. <el-table-column prop="slssdl" align="center" label="受累损失电量" />
  757. <el-table-column
  758. prop="xnssdl"
  759. align="center"
  760. label="拟合性能损失电量"
  761. />
  762. <el-table-column prop="zhj" align="center" label="合计" />
  763. <el-table-column
  764. prop="hj"
  765. align="center"
  766. label="合计(无性能损失电量)"
  767. />
  768. </el-table>
  769. </div>
  770. <h3
  771. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  772. :style="!theme ? 'color: #fff' : 'color: #000'"
  773. >
  774. (1)计划损失电量分析
  775. </h3>
  776. <p
  777. style="
  778. text-indent: 2em;
  779. font-size: 15px;
  780. text-align: justify;
  781. line-height: 22px;
  782. "
  783. >
  784. <!-- 2月份,全口径非计划(故障)损失电量9.7698万kWh,较同期减少6.004万kWh,其中:吉山梁损失1.745万kWh;繁食沟损失5.995万kWh;草山梁损失0.8809万kWh;左庄损失0万kWh;新庄损失1.05万kWh;雷家山损失0.0989万kWh。 -->
  785. {{ OperationData.ygzssdl }}
  786. </p>
  787. <p
  788. style="
  789. text-indent: 2em;
  790. font-size: 15px;
  791. text-align: justify;
  792. line-height: 22px;
  793. "
  794. >
  795. <!-- 截止2月份,全口径非计划(故障)损失电量19.9239万kWh,较同期减少8.91万kWh,其中:吉山梁损失2.8028万kWh;繁食沟损失9.8832万kWh;草山梁损失1.9975万kWh;左庄损失0.015万kWh;新庄损失4.84万kWh;雷家山损失0.3854万kWh。 -->
  796. {{ OperationData.ngzssdl }}
  797. </p>
  798. <h3
  799. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  800. :style="!theme ? 'color: #fff' : 'color: #000'"
  801. >
  802. (2)计划损失电量分析
  803. </h3>
  804. <p
  805. style="
  806. text-indent: 2em;
  807. font-size: 15px;
  808. text-align: justify;
  809. line-height: 22px;
  810. "
  811. >
  812. <!-- 2月份,全口径非计划损失电量11.8679万kWh,较同期增加2.7731万kWh,其中:吉山梁损失6.086万kWh;繁食沟损失2.8607万kWh;草山梁损失0.7405万kWh;左庄损失0.445万kWh;新庄损失1.7357万kWh;雷家山损失0万kWh。 -->
  813. {{ OperationData.yjhssdl }}
  814. </p>
  815. <p
  816. style="
  817. text-indent: 2em;
  818. font-size: 15px;
  819. text-align: justify;
  820. line-height: 22px;
  821. "
  822. >
  823. <!-- 截止2月份,全口径非计划损失电量35.3876万kWh,较同期增加12.4608万kWh,其中:吉山梁损失11.7818万kWh;繁食沟损失8.415万kWh;草山梁损失3.3606万kWh;左庄损失0.535万kWh;新庄损失5.7077万kWh;雷家山损失5.5875万kWh。全口径较同期增加主要原因是小风期间开展风机检修技改作业,2月份公司风机半年检完成38台,整年检完成1台,其中:繁食沟风场完成风机半年定检12台,左庄风场完成风机半年定检9台,吉山梁风场完成风机半年定检13台,草山梁风场完成风机半年定检4台,新庄风场二期完成风机整年定检1台,2024年度公司全口径累计完成风机半年定检维护129台;2024年度公司全口径累计完成风机整年定检维护8台。 -->
  824. {{ OperationData.njhssdl }}
  825. </p>
  826. <h3
  827. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  828. :style="!theme ? 'color: #fff' : 'color: #000'"
  829. >
  830. (3)限负荷损失电量分析
  831. </h3>
  832. <p
  833. style="
  834. text-indent: 2em;
  835. font-size: 15px;
  836. text-align: justify;
  837. line-height: 22px;
  838. "
  839. >
  840. <!-- 2月份,全口径限负荷损失电量1304.4314万kWh,较同期增加806.8129万kWh,其中:吉山梁损失280.73万kWh;繁食沟损失0万kWh;草山梁损失18.5333万kWh;左庄损失294.092万kWh;新庄损失384.6524万kWh;雷家山损失326.4237万kWh。 -->
  841. {{ OperationData.yxdssdl }}
  842. </p>
  843. <p
  844. style="
  845. text-indent: 2em;
  846. font-size: 15px;
  847. text-align: justify;
  848. line-height: 22px;
  849. "
  850. >
  851. <!-- 截止2月份,全口径限负荷损失电量2047.1078万kWh,较同期增加669.9767万kWh,其中:吉山梁损失383.5654万kWh;繁食沟损失0万kWh;草山梁损失70.0147万kWh;左庄损失500.8866万kWh;新庄损失586.8554万kWh;雷家山损失505.7857万kWh。 -->
  852. {{ OperationData.nxdssdl }}
  853. </p>
  854. <!-- <h3 style="text-indent: 2em;font-weight: bolder; margin: 10px 0"
  855. :style="!theme ? 'color: #fff' : 'color: #000'">
  856. (4)受累损失电量分析
  857. </h3>
  858. <div >
  859. <el-table class="toolSty" :data="curve" border
  860. style="width: 100%; margin: 10px 0">
  861. <el-table-column prop="section" align="center" label="月份" />
  862. <el-table-column prop="module" align="center" label="场站" />
  863. <el-table-column prop="wtidcount" align="center" label="损失电量(万千瓦时)" />
  864. <el-table-column prop="wtidcount" align="center" label="受累原因" />
  865. </el-table>
  866. </div>
  867. <p style="text-indent: 2em;font-size:15px;text-align: justify;line-height:22px">
  868. 2月份,全口径受累损失电量共计2099.23万kWh,较同期增加873.28万千瓦时,其中繁食沟环保风机损失电量55.99万kWh,叶片结冰受累损失270.5万kWh;吉山梁叶片结冰受累损失393万kWh;草山梁叶片结冰受累损失105.95万kWh;左庄叶片结冰受累损失384.41万kWh;新庄叶片结冰受累损失433.61万kWh;雷家山大风切出受累损失113.17万kWh,叶片结冰受累损失342.6万kWh。
  869. </p>
  870. <p style="text-indent: 2em;font-size:15px;text-align: justify;line-height:22px">
  871. 截止2月份,全口径受累损失电量共计2172.505万kWh,较同期增加946.555万千瓦时,其中繁食沟环保风机损失电量119.74万kWh,叶片结冰受累损失270.5万kWh;吉山梁叶片结冰受累损失393万kWh;草山梁叶片结冰受累损失105.95万kWh;左庄叶片结冰受累损失390.68万kWh,新庄叶片结冰受累损失434.46万kWh,雷家山大风切出受累损失115.575万kWh,叶片结冰受累损失342.6万kWh。
  872. </p> -->
  873. <h3
  874. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  875. :style="!theme ? 'color: #fff' : 'color: #000'"
  876. >
  877. (5)性能损失电量分析
  878. </h3>
  879. <p
  880. style="
  881. text-indent: 2em;
  882. font-size: 15px;
  883. text-align: justify;
  884. line-height: 22px;
  885. "
  886. >
  887. 性能损失主要是指风机在正常运行状态下,实际功率曲线未达到最优功率曲线形成的功率损失电量,如对风不准、桨叶角不精确或脏污等引起的降出力损失电量。
  888. </p>
  889. <p
  890. style="
  891. text-indent: 2em;
  892. font-size: 15px;
  893. text-align: justify;
  894. line-height: 22px;
  895. "
  896. >
  897. <!-- 2月份,全口径性能损失电量595.3638万千瓦时,较同期增加342.2639万千瓦时;其中,吉山梁损失56.4836万kWh、繁食沟损失77.63万kWh、草山梁损失20.678万kWh、左庄损失199.7145万kWh、新庄损失199.3288万kWh,雷家山损失41.5289万kWh。 -->
  898. {{ OperationData.yxnssdl }}
  899. </p>
  900. <p
  901. style="
  902. text-indent: 2em;
  903. font-size: 15px;
  904. text-align: justify;
  905. line-height: 22px;
  906. "
  907. >
  908. <!-- 截止2月份全口径性能损失电量1264.3083万千瓦时,较同期增加628.3524万千瓦时;其中,吉山梁损失96.7204万kWh、繁食沟损失211.74万kWh、草山梁损失40.1016万kWh、左庄损失276.9502万kWh、新庄损失479.289万kWh,雷家山损失159.5071万kWh。 -->
  909. {{ OperationData.nxnssdl }}
  910. </p>
  911. <p
  912. style="
  913. text-indent: 2em;
  914. font-size: 15px;
  915. text-align: justify;
  916. line-height: 22px;
  917. "
  918. >
  919. 改进措施:一是充分利用集控中心指标分析系统,对单台风机性能进行分析,发现性能损失异常,及时进行针对性处理。二是集控中心日常监盘中加强风速与功率匹配情况的监盘,发现异常情况及时记录并通知检修处理;三是集控中心日常监盘中对风机桨叶角度、对风角度的监视,发现异常及时通知处理;四是在日常、定期维护中做好风机风速仪、风向标、叶片角度的校正工作。
  920. </p>
  921. <h3
  922. style="font-weight: bolder; margin: 10px 0"
  923. :style="!theme ? 'color: #fff' : 'color: #000'"
  924. >
  925. 4.各风场风机可利用率对比分析
  926. </h3>
  927. <div >
  928. <el-table
  929. class="toolSty"
  930. :data="fjklyl"
  931. border
  932. style="width: 100%; margin: 10px 0"
  933. >
  934. <el-table-column prop="stationid" align="center" label="场站" />
  935. <el-table-column :label="OperationMonth + '月份'" align="center">
  936. <el-table-column
  937. prop="ygztjxs"
  938. label="故障停机小时数(h)"
  939. width="120"
  940. />
  941. <el-table-column
  942. prop="yjhtjxs"
  943. label="计划停机小时数(h)"
  944. width="120"
  945. />
  946. <el-table-column prop="ysbklyl" label="设备可利用率(%)" />
  947. </el-table-column>
  948. <el-table-column label="年累计" align="center">
  949. <el-table-column
  950. prop="ngztjxs"
  951. label="故障停机小时数(h)"
  952. width="120"
  953. />
  954. <el-table-column
  955. prop="njhtjxs"
  956. label="计划停机小时数(h)"
  957. width="120"
  958. />
  959. <el-table-column prop="nsbklyl" label="设备可利用率(%)" />
  960. </el-table-column>
  961. </el-table>
  962. </div>
  963. <p
  964. style="
  965. text-indent: 2em;
  966. font-size: 15px;
  967. text-align: justify;
  968. line-height: 22px;
  969. "
  970. >
  971. <!-- 2月份全口径可利用率99.94%,吉山梁可利用率99.96%;繁食沟可利用率99.84%;草山梁可利用率99.94%,左庄可利用率99.88%,新庄可利用率99.68%,雷家山可利用率99.99%。 -->
  972. {{ OperationData.yfjkyly }}
  973. </p>
  974. <p
  975. style="
  976. text-indent: 2em;
  977. font-size: 15px;
  978. text-align: justify;
  979. line-height: 22px;
  980. "
  981. >
  982. <!-- 截止2月份全口径可利用率99.86%,吉山梁可利用率99.85%;繁食沟可利用率99.77%;草山梁可利用率99.89%,左庄可利用率99.77%,新庄可利用率99.51%,雷家山可利用率99.85%。 -->
  983. {{ OperationData.nfjkyly }}
  984. </p>
  985. <h3
  986. style="font-weight: bolder; margin: 10px 0"
  987. :style="!theme ? 'color: #fff' : 'color: #000'"
  988. >
  989. 5.能耗指标分析(风电)
  990. </h3>
  991. <div >
  992. <el-table
  993. class="toolSty"
  994. :data="nhzbfxlist"
  995. border
  996. style="width: 100%; margin: 10px 0"
  997. >
  998. <el-table-column prop="wpid" align="center" label="场站" />
  999. <el-table-column prop="type" align="center" label="类型" />
  1000. <el-table-column
  1001. prop="zhcydl"
  1002. align="center"
  1003. label="综合厂用电率(%)"
  1004. />
  1005. <el-table-column
  1006. prop="fdcydl"
  1007. align="center"
  1008. label="发电厂用电率(%)"
  1009. />
  1010. <el-table-column prop="zbsh" align="center" label="主变损耗" />
  1011. <el-table-column
  1012. prop="xbsh"
  1013. align="center"
  1014. label="箱变及35kV线路损耗(万kWh)"
  1015. />
  1016. </el-table>
  1017. </div>
  1018. <p
  1019. style="
  1020. text-indent: 2em;
  1021. font-size: 15px;
  1022. text-align: justify;
  1023. line-height: 22px;
  1024. "
  1025. >
  1026. <!-- 2月份,全口径综合厂用电率1.96%,较同期升高0.42个百分点;截止2月份,全口径综合厂用电率1.61%,较同期升高0.32个百分点。 -->
  1027. {{ OperationData.nhzbfx }}
  1028. </p>
  1029. <p
  1030. style="
  1031. text-indent: 2em;
  1032. font-size: 15px;
  1033. text-align: justify;
  1034. line-height: 22px;
  1035. "
  1036. >
  1037. <!-- 所有场站综合厂用电率较同期偏高,主要原因是2月份发电量较同期减少,综合厂用电量较同期降幅小于发电量降幅;改进措施:各风场继续做好场站节能降耗管理,降低综合厂用电量。 -->
  1038. {{ OperationData.nhzbfx2 }}
  1039. </p>
  1040. <h3
  1041. style="font-weight: bolder; margin: 10px 0"
  1042. :style="!theme ? 'color: #fff' : 'color: #000'"
  1043. >
  1044. 6.“两个细则”考核情况
  1045. </h3>
  1046. <div >
  1047. <el-table
  1048. class="toolSty"
  1049. :data="twoxize"
  1050. border
  1051. style="width: 100%; margin: 10px 0"
  1052. >
  1053. <el-table-column prop="wpid" align="center" label="场站" />
  1054. <el-table-column prop="pro" align="center" label="项目" />
  1055. <el-table-column prop="by" align="center" label="月份" />
  1056. <el-table-column prop="ytq" align="center" label="同期" />
  1057. <el-table-column prop="nlj" align="center" label="年累计" />
  1058. <el-table-column prop="ntq" align="center" label="同期" />
  1059. </el-table>
  1060. </div>
  1061. <p
  1062. style="
  1063. text-indent: 2em;
  1064. font-size: 15px;
  1065. text-align: justify;
  1066. line-height: 22px;
  1067. "
  1068. >
  1069. 1月份公司全口径“两个细则”兑现分546.8362分,同比增加239.3401分,其中调度管理考核10分,同比增加10分,风(光)考核460.4229分,同比增加142.9548分,可用功率考核29.97分,同比增加18.9196分,AGC有功调节考核14.1453分,同比增加14.1453分,AVC无功调节考核0.4937分,同比增加0.4937分,分摊分319.7573分,同比增加66.3611分,补偿分257.983分,同比减少5.3852分。
  1070. </p>
  1071. <p
  1072. style="
  1073. text-indent: 2em;
  1074. font-size: 15px;
  1075. text-align: justify;
  1076. line-height: 22px;
  1077. "
  1078. >
  1079. 截止1月31日公司全口径“两个细则”兑现分546.8362分,同比增加239.3401分,其中调度管理考核10分,同比增加10分,风(光)功率预测考核460.4229分,同比增加142.9548分,可用功率考核29.97分,同比增加18.9196分,AGC有功调节考核14.1453分,同比增加14.1453分,AVC无功调节考核0.4937分,同比增加0.4937分,分摊分319.7573分,同比增加66.3611分,补偿分257.983分,同比减少5.3852分。(2024年2月份双细则考核未出)
  1080. </p>
  1081. <h3
  1082. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  1083. :style="!theme ? 'color: #fff' : 'color: #000'"
  1084. >
  1085. 二、截止{{ OperationMonth }}月份单机性能指标对比分析
  1086. </h3>
  1087. <h3
  1088. style="text-indent: 2em; font-weight: bolder; margin-bottom: 10px"
  1089. :style="!theme ? 'color: #fff' : 'color: #000'"
  1090. >
  1091. 1.繁食沟风电场
  1092. </h3>
  1093. <div >
  1094. <el-table
  1095. class="toolSty"
  1096. :data="fanshigouXN"
  1097. border
  1098. style="width: 100%; margin: 10px 0"
  1099. >
  1100. <el-table-column prop="equipmentid" align="center" label="风机号" />
  1101. <el-table-column
  1102. prop="llfdl"
  1103. align="center"
  1104. label="拟合理论发电量(kWh)"
  1105. />
  1106. <el-table-column prop="fdl" align="center" label="发电量(kWh)" />
  1107. <el-table-column prop="t" align="center" label="△t(kWh)" />
  1108. <el-table-column prop="pjfs" align="center" label="平均风速(m/s)" />
  1109. <el-table-column
  1110. prop="qrfs"
  1111. align="center"
  1112. label="单机切入风速(m/s)"
  1113. />
  1114. <el-table-column
  1115. prop="edfs"
  1116. align="center"
  1117. label="额定功率下的平均风速"
  1118. />
  1119. </el-table>
  1120. </div>
  1121. <p
  1122. style="
  1123. text-indent: 2em;
  1124. font-size: 15px;
  1125. text-align: justify;
  1126. line-height: 22px;
  1127. "
  1128. >
  1129. <!-- 对比分析F215、F205、F221、F210风机为性能最优风机,理论电量与实际电量相差较小;F121、F124、F118、F116风机为性能最差风机。(F113、F209、F229、F231因环保问题停机,不做分析对比) -->
  1130. {{ OperationData.xnzbfsg }}
  1131. </p>
  1132. <h3
  1133. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  1134. :style="!theme ? 'color: #fff' : 'color: #000'"
  1135. >
  1136. 2.草山梁风电场
  1137. </h3>
  1138. <div >
  1139. <el-table
  1140. class="toolSty"
  1141. :data="caoshaniangXN"
  1142. border
  1143. style="width: 100%; margin: 10px 0"
  1144. >
  1145. <el-table-column prop="equipmentid" align="center" label="风机号" />
  1146. <el-table-column
  1147. prop="llfdl"
  1148. align="center"
  1149. label="拟合理论发电量(kWh)"
  1150. />
  1151. <el-table-column prop="fdl" align="center" label="发电量(kWh)" />
  1152. <el-table-column prop="t" align="center" label="△t(kWh)" />
  1153. <el-table-column prop="pjfs" align="center" label="平均风速(m/s)" />
  1154. <el-table-column
  1155. prop="qrfs"
  1156. align="center"
  1157. label="单机切入风速(m/s)"
  1158. />
  1159. <el-table-column
  1160. prop="edfs"
  1161. align="center"
  1162. label="额定功率下的平均风速"
  1163. />
  1164. </el-table>
  1165. </div>
  1166. <p
  1167. style="
  1168. text-indent: 2em;
  1169. font-size: 15px;
  1170. text-align: justify;
  1171. line-height: 22px;
  1172. "
  1173. >
  1174. <!-- 对比分析C1-B04、C1-B08风机,理论电量与实际电量相差较小,同时C1-B08单机发电量在25万kWh以上,性能优异;C1-B02、C1-C01、C1-B01风机为性能最差风机。 -->
  1175. {{ OperationData.xnzbcsl }}
  1176. </p>
  1177. <h3
  1178. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  1179. :style="!theme ? 'color: #fff' : 'color: #000'"
  1180. >
  1181. 3.吉山梁风电场
  1182. </h3>
  1183. <div >
  1184. <el-table
  1185. class="toolSty"
  1186. :data="jishanliangXN"
  1187. border
  1188. style="width: 100%; margin: 10px 0"
  1189. >
  1190. <el-table-column prop="equipmentid" align="center" label="风机号" />
  1191. <el-table-column
  1192. prop="llfdl"
  1193. align="center"
  1194. label="拟合理论发电量(kWh)"
  1195. />
  1196. <el-table-column prop="fdl" align="center" label="发电量(kWh)" />
  1197. <el-table-column prop="t" align="center" label="△t(kWh)" />
  1198. <el-table-column prop="pjfs" align="center" label="平均风速(m/s)" />
  1199. <el-table-column
  1200. prop="qrfs"
  1201. align="center"
  1202. label="单机切入风速(m/s)"
  1203. />
  1204. <el-table-column
  1205. prop="edfs"
  1206. align="center"
  1207. label="额定功率下的平均风速"
  1208. />
  1209. </el-table>
  1210. </div>
  1211. <p
  1212. style="
  1213. text-indent: 2em;
  1214. font-size: 15px;
  1215. text-align: justify;
  1216. line-height: 22px;
  1217. "
  1218. >
  1219. <!-- 对比分析A11、A02、A28风机为性能最优风机,理论电量与实际电量相差较小,A11风机单机发电量25万kWh以上;C02、C14、C16风机为性能最差风机。 -->
  1220. {{ OperationData.xnzbjsl }}
  1221. </p>
  1222. <h3
  1223. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  1224. :style="!theme ? 'color: #fff' : 'color: #000'"
  1225. >
  1226. 4.左庄风电场
  1227. </h3>
  1228. <div >
  1229. <el-table
  1230. class="toolSty"
  1231. :data="zuozhuangXN"
  1232. border
  1233. style="width: 100%; margin: 10px 0"
  1234. >
  1235. <el-table-column prop="equipmentid" align="center" label="风机号" />
  1236. <el-table-column
  1237. prop="llfdl"
  1238. align="center"
  1239. label="拟合理论发电量(kWh)"
  1240. />
  1241. <el-table-column prop="fdl" align="center" label="发电量(kWh)" />
  1242. <el-table-column prop="t" align="center" label="△t(kWh)" />
  1243. <el-table-column prop="pjfs" align="center" label="平均风速(m/s)" />
  1244. </el-table>
  1245. </div>
  1246. <p
  1247. style="
  1248. text-indent: 2em;
  1249. font-size: 15px;
  1250. text-align: justify;
  1251. line-height: 22px;
  1252. "
  1253. >
  1254. <!-- 对比分析F406、F404、F309风机理论电量与实际电量相差较小,F404风机单机发电量最高;F301、F316、F417风机理论电量与实际电量相差较大,为性能最差风机。 -->
  1255. {{ OperationData.xnzbzz }}
  1256. </p>
  1257. <h3
  1258. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  1259. :style="!theme ? 'color: #fff' : 'color: #000'"
  1260. >
  1261. 5.新庄风电场
  1262. </h3>
  1263. <div >
  1264. <el-table
  1265. class="toolSty"
  1266. :data="xingzhuangXN"
  1267. border
  1268. style="width: 100%; margin: 10px 0"
  1269. >
  1270. <el-table-column prop="equipmentid" align="center" label="风机号" />
  1271. <el-table-column
  1272. prop="llfdl"
  1273. align="center"
  1274. label="拟合理论发电量(kWh)"
  1275. />
  1276. <el-table-column prop="fdl" align="center" label="发电量(kWh)" />
  1277. <el-table-column prop="t" align="center" label="△t(kWh)" />
  1278. <el-table-column prop="pjfs" align="center" label="平均风速(m/s)" />
  1279. <el-table-column
  1280. prop="qrfs"
  1281. align="center"
  1282. label="单机切入风速(m/s)"
  1283. />
  1284. </el-table>
  1285. </div>
  1286. <p
  1287. style="
  1288. text-indent: 2em;
  1289. font-size: 15px;
  1290. text-align: justify;
  1291. line-height: 22px;
  1292. "
  1293. >
  1294. <!-- 对比分析2MW风机中F712、F602、F609风机为性能最优风机,3MW风机中F710、F706、F714风机理论电量与实际电量相差较小,F714、F713、F709风机发电量最高;F519、F718风机为性能最差风机,理论电量与实际电量相差较大。 -->
  1295. {{ OperationData.xnzbxz }}
  1296. </p>
  1297. <h3
  1298. style="text-indent: 2em; font-weight: bolder; margin: 10px 0"
  1299. :style="!theme ? 'color: #fff' : 'color: #000'"
  1300. >
  1301. 6.雷家山风场
  1302. </h3>
  1303. <div >
  1304. <el-table
  1305. class="toolSty"
  1306. :data="leijiashanXN"
  1307. border
  1308. style="width: 100%; margin: 10px 0"
  1309. >
  1310. <el-table-column prop="equipmentid" align="center" label="风机号" />
  1311. <el-table-column
  1312. prop="llfdl"
  1313. align="center"
  1314. label="拟合理论发电量(kWh)"
  1315. />
  1316. <el-table-column prop="fdl" align="center" label="发电量(kWh)" />
  1317. <el-table-column prop="t" align="center" label="△t(kWh)" />
  1318. <el-table-column prop="pjfs" align="center" label="平均风速(m/s)" />
  1319. <el-table-column
  1320. prop="qrfs"
  1321. align="center"
  1322. label="单机切入风速(m/s)"
  1323. />
  1324. <el-table-column
  1325. prop="edfs"
  1326. align="center"
  1327. label="额定功率下的平均风速"
  1328. />
  1329. </el-table>
  1330. </div>
  1331. <p
  1332. style="
  1333. text-indent: 2em;
  1334. font-size: 15px;
  1335. text-align: justify;
  1336. line-height: 22px;
  1337. "
  1338. >
  1339. <!-- 对比分析L201、L216、L114风机为性能最优风机,理论电量与实际电量相差较小,L101、L102、L103风机发电量最高;L106、L108、L116风机为性能最差风机,理论电量与实际电量相差较大。 -->
  1340. {{ OperationData.xnzbljs }}
  1341. </p>
  1342. </div>
  1343. <template #footer>
  1344. <span class="dialog-footer">
  1345. <el-button @click="handleCloseOp">取消</el-button>
  1346. <!-- <el-button type="primary" @click="centerDialogVisible = false">
  1347. 确定
  1348. </el-button> -->
  1349. <!-- <el-button @click="exportPDFop" type="danger" :loading="loading"
  1350. >导出 PDF</el-button
  1351. > -->
  1352. <el-button @click="exportWORD" type="primary" :loading="loading"
  1353. >导出 WORD</el-button
  1354. >
  1355. </span>
  1356. </template>
  1357. </el-dialog>
  1358. </template>
  1359. <script setup name="report">
  1360. import httpRequest from "@/utils/request.js";
  1361. import jsPDF from "jspdf";
  1362. import html2canvas from "html2canvas";
  1363. import htmlToPdf from "./fixGetPDF";
  1364. // import dataJson from "./dataJson"
  1365. import twoxizeJson from "./lianggexizeJson";
  1366. import { ref, onMounted, reactive, watch, nextTick } from "vue";
  1367. import { useStore } from "vuex";
  1368. import Docxtemplater from "docxtemplater";
  1369. import PizZip from "pizzip";
  1370. import JSZipUtils from "jszip-utils";
  1371. import { saveAs } from "file-saver";
  1372. import dayjs from "dayjs";
  1373. import axios from "axios";
  1374. import jsonData from "./component/data.json";
  1375. const pickerVal = ref([
  1376. dayjs().subtract(1, "month").startOf("month").format("YYYY-MM"),
  1377. dayjs().format("YYYY-MM"),
  1378. ]);
  1379. const curve = ref([]);
  1380. const mrlxs = ref([]);
  1381. const blade = ref([]);
  1382. const staticwind = ref([]);
  1383. const stoptime = ref([]);
  1384. const nbdata = ref({});
  1385. const loading = ref(false);
  1386. const tableHeight = ref(window.innerHeight - 110 + "px");
  1387. const reportParamDate = ref(
  1388. dayjs().subtract(1, "month").startOf("month").format("YYYY-MM")
  1389. );
  1390. const exportPDF = () => {
  1391. loading.value = true;
  1392. // 调用htmlToPdf工具函数
  1393. htmlToPdf.getPdf(document.querySelector("#pdfDom"), "风电场性能分析报告");
  1394. // 定时器模拟按钮loading动画的时间
  1395. setTimeout(() => {
  1396. loading.value = false;
  1397. ElMessage.success("打印成功!");
  1398. }, 1000);
  1399. centerDialogVisible.value = false;
  1400. };
  1401. const exportWORD = () => {
  1402. httpRequest
  1403. .get(`/MeetingReport/Analysisreport?time=${reportParamDate.value}`)
  1404. .then((tempRes) => {
  1405. tempRes.data.titleYear = tempRes.data.title.year;
  1406. tempRes.data.titleMonth = tempRes.data.title.month;
  1407. tempRes.data.titleName = tempRes.data.title.name;
  1408. tempRes.data.dlcylistM = [];
  1409. tempRes.data.dlcylistY = [];
  1410. tempRes.data.wdssBase = [];
  1411. tempRes.data.wdssSum = [];
  1412. tempRes.data.dlcylist.forEach((it) => {
  1413. if (it.cycleType === "M") {
  1414. tempRes.data.dlcylistM.push(it);
  1415. } else if (it.cycleType === "Y") {
  1416. tempRes.data.dlcylistY.push(it);
  1417. }
  1418. });
  1419. tempRes.data.wdssdlfx.forEach((ele) => {
  1420. const cycleType = ele.cycleType;
  1421. const wpName = ele.windpowerstationName;
  1422. const findRes = tempRes.data.wdssBase.find((findEle) => {
  1423. return findEle.windpowerstationId === ele.windpowerstationId;
  1424. });
  1425. if (findRes) {
  1426. findRes[`gzssdl${cycleType}`] = ele.gzssdl;
  1427. findRes[`jhssdl${cycleType}`] = ele.jhssdl;
  1428. findRes[`xdssdl${cycleType}`] = ele.xdssdl;
  1429. findRes[`slssdl${cycleType}`] = ele.slssdl;
  1430. findRes[`xnssdl${cycleType}`] = ele.xnssdl;
  1431. findRes[`zhj${cycleType}`] = ele.zhj;
  1432. findRes[`hj${cycleType}`] = ele.hj;
  1433. findRes[`tqgzssdl${cycleType}`] = ele.tqgzssdl;
  1434. findRes[`tqjhssdl${cycleType}`] = ele.tqjhssdl;
  1435. findRes[`tqxdssdl${cycleType}`] = ele.tqxdssdl;
  1436. findRes[`tqslssdl${cycleType}`] = ele.tqslssdl;
  1437. findRes[`tqxnssdl${cycleType}`] = ele.tqxnssdl;
  1438. findRes[`tqzhj${cycleType}`] = ele.tqzhj;
  1439. findRes[`tqhj${cycleType}`] = ele.tqhj;
  1440. } else {
  1441. ele[`gzssdl${wpName === "合计" ? "" : cycleType}`] = ele.gzssdl;
  1442. ele[`jhssdl${wpName === "合计" ? "" : cycleType}`] = ele.jhssdl;
  1443. ele[`xdssdl${wpName === "合计" ? "" : cycleType}`] = ele.xdssdl;
  1444. ele[`slssdl${wpName === "合计" ? "" : cycleType}`] = ele.slssdl;
  1445. ele[`xnssdl${wpName === "合计" ? "" : cycleType}`] = ele.xnssdl;
  1446. ele[`zhj${wpName === "合计" ? "" : cycleType}`] = ele.zhj;
  1447. ele[`hj${wpName === "合计" ? "" : cycleType}`] = ele.hj;
  1448. ele[`tqgzssdl${wpName === "合计" ? "" : cycleType}`] = ele.tqgzssdl;
  1449. ele[`tqjhssdl${wpName === "合计" ? "" : cycleType}`] = ele.tqjhssdl;
  1450. ele[`tqxdssdl${wpName === "合计" ? "" : cycleType}`] = ele.tqxdssdl;
  1451. ele[`tqslssdl${wpName === "合计" ? "" : cycleType}`] = ele.tqslssdl;
  1452. ele[`tqxnssdl${wpName === "合计" ? "" : cycleType}`] = ele.tqxnssdl;
  1453. ele[`tqzhj${wpName === "合计" ? "" : cycleType}`] = ele.tqzhj;
  1454. ele[`tqhj${wpName === "合计" ? "" : cycleType}`] = ele.tqhj;
  1455. ele.wpName = ele.windpowerstationName;
  1456. if (ele.windpowerstationName !== "合计") {
  1457. tempRes.data.wdssBase.push(ele);
  1458. } else {
  1459. ele.wpName =
  1460. cycleType === "M" ? `月${ele.wpName}` : `年${ele.wpName}`;
  1461. tempRes.data.wdssSum.push(ele);
  1462. }
  1463. }
  1464. });
  1465. const lgxzList = [];
  1466. twoxizeJson?.data?.forEach((ele) => {
  1467. const findRes = lgxzList.find((findEle) => {
  1468. return ele.wpid === findEle.wpid;
  1469. });
  1470. if (findRes) {
  1471. ele.wpid = "";
  1472. findRes.list.push(ele);
  1473. } else {
  1474. lgxzList.push({
  1475. wpid: ele.wpid,
  1476. list: [ele],
  1477. });
  1478. }
  1479. });
  1480. tempRes.data.twoxize = lgxzList;
  1481. const xnzbdbfx = [];
  1482. let xnzbdbfxIdx = 1;
  1483. for (let wpName in tempRes.data.xnzbdbfx) {
  1484. let xnzb = "";
  1485. if (wpName === "吉山梁风电场") {
  1486. xnzb = tempRes.data.xnzbjsl;
  1487. } else if (wpName === "左庄风电场") {
  1488. xnzb = tempRes.data.xnzbzz;
  1489. } else if (wpName === "新庄风电场") {
  1490. xnzb = tempRes.data.xnzbxz;
  1491. } else if (wpName === "繁食沟风电场") {
  1492. xnzb = tempRes.data.xnzbfsg;
  1493. } else if (wpName === "草山梁风电场") {
  1494. xnzb = tempRes.data.xnzbcsl;
  1495. } else if (wpName === "雷家山风电场") {
  1496. xnzb = tempRes.data.xnzbljs;
  1497. }
  1498. xnzbdbfx.push({
  1499. wpName: `${xnzbdbfxIdx}.${wpName}`,
  1500. list: tempRes.data.xnzbdbfx[wpName],
  1501. xnzb,
  1502. });
  1503. xnzbdbfxIdx++;
  1504. }
  1505. tempRes.data.xnzbdbfxlist = xnzbdbfx;
  1506. // 读取并获得模板文件的二进制内容
  1507. JSZipUtils.getBinaryContent(
  1508. `./static/windReport.docx`,
  1509. (error, content) => {
  1510. // 抛出异常
  1511. if (error) throw error;
  1512. // 创建一个JSZip实例,内容为模板的内容
  1513. let zip = new PizZip(content);
  1514. // 创建并加载docxtemplater实例对象
  1515. let doc = new Docxtemplater();
  1516. doc.loadZip(zip);
  1517. doc.setData(tempRes.data);
  1518. try {
  1519. // 用模板变量的值替换所有模板变量
  1520. doc.render();
  1521. } catch (error) {
  1522. // 抛出异常
  1523. let e = {
  1524. message: error.message,
  1525. name: error.name,
  1526. stack: error.stack,
  1527. properties: error.properties,
  1528. };
  1529. console.log(JSON.stringify({ error: e }));
  1530. throw error;
  1531. }
  1532. // 生成一个代表docxtemplater对象的zip文件(不是一个真实的文件,而是在内存中的表示)
  1533. let out = doc.getZip().generate({
  1534. type: "blob",
  1535. mimeType:
  1536. "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
  1537. });
  1538. // 将目标文件对象保存为目标类型的文件,并命名
  1539. saveAs(out, `${tempRes.data.title.name}.docx`);
  1540. }
  1541. );
  1542. });
  1543. };
  1544. const centerDialogVisible = ref(false);
  1545. /**场站 */
  1546. const stationList = ref([]);
  1547. const funGetStation = async () => {
  1548. const res = await httpRequest.get("/base/station");
  1549. stationList.value = res.data;
  1550. };
  1551. /**查询表格数据 */
  1552. const tableData = ref([]);
  1553. const station = ref("");
  1554. const addform = async () => {
  1555. const res = await httpRequest.get(
  1556. `/report/list?station=${station.value}&st=${
  1557. pickerVal.value?.[0] || ""
  1558. }&et=${pickerVal.value?.[1] || ""}`
  1559. );
  1560. // res.data.forEach((ele)=>{
  1561. // ele.time=ele.time.slice(0, 7);
  1562. // })
  1563. tableData.value = res.data;
  1564. };
  1565. let val1 = ref();
  1566. let value2 = ref();
  1567. const BeginChange = (val) => {
  1568. // console.log(val);
  1569. val1.value = val;
  1570. // console.log(val);
  1571. };
  1572. const EndChange = (val) => {
  1573. // console.log(val);
  1574. value2.value = val;
  1575. };
  1576. let time = ref();
  1577. let eltime = ref();
  1578. let wtcount = ref();
  1579. let hjwtid = ref();
  1580. let hjcount = ref();
  1581. const handleReport = async (index, row) => {
  1582. time.value = row.time;
  1583. // console.log(index, row)
  1584. centerDialogVisible.value = true;
  1585. // const res = await httpRequest.get(
  1586. // `/report/info?station=${row.station}&date=${row.time}`
  1587. // );
  1588. const res=jsonData.bgData;
  1589. nbdata.value = res.data.station;
  1590. // console.log('nb',nbdata.value);
  1591. if (res.data.info.curve.length) {
  1592. res.data.info.curve.forEach((ele) => {
  1593. ele.module = "偏差率负值";
  1594. });
  1595. }
  1596. curve.value = res.data.info.curve;
  1597. mrlxs.value = res.data.info.mrlxs;
  1598. blade.value = res.data.info.blade;
  1599. staticwind.value = res.data.info.staticwind;
  1600. stoptime.value = res.data.info.stoptime;
  1601. eltime.value = res.data.time;
  1602. wtcount.value = res.data.wtcount;
  1603. hjwtid.value = res.data.hjwtid;
  1604. hjcount.value = res.data.hjcount;
  1605. nextTick(() => {
  1606. document.getElementsByClassName(".toolSty");
  1607. });
  1608. };
  1609. const economicalOperationVisible = ref(false);
  1610. const OperationData = ref({});
  1611. const OperationName = ref("");
  1612. const OperationMonth = ref("");
  1613. const fzylyxslistM = ref([]);
  1614. const fzylyxslistY = ref([]);
  1615. const dlcylistM = ref([]);
  1616. const dlcylistY = ref([]);
  1617. const wdssdlfx = ref([]);
  1618. const fjklyl = ref([]);
  1619. const nhzbfxlist = ref([]);
  1620. const twoxize = ref([]);
  1621. const fanshigouXN = ref([]);
  1622. const caoshaniangXN = ref([]);
  1623. const jishanliangXN = ref([]);
  1624. const leijiashanXN = ref([]);
  1625. const xingzhuangXN = ref([]);
  1626. const zuozhuangXN = ref([]);
  1627. const handleReportOp = () => {
  1628. if (reportParamDate.value) {
  1629. economicalOperationVisible.value = true;
  1630. OperationName.value = "";
  1631. OperationMonth.value = "";
  1632. OperationData.value = {};
  1633. fzylyxslistM.value = [];
  1634. fzylyxslistY.value = [];
  1635. fjklyl.value = [];
  1636. httpRequest
  1637. .get(`/MeetingReport/Analysisreport?time=${reportParamDate.value}`)
  1638. .then((res) => {
  1639. renderReportPage(res);
  1640. })
  1641. .catch(() => {
  1642. renderReportPage({ data: jsonData.reportData });
  1643. });
  1644. }
  1645. };
  1646. const renderReportPage = (res) => {
  1647. OperationName.value = res.data.title.name;
  1648. OperationMonth.value = res.data.title.month;
  1649. OperationData.value = res.data;
  1650. fzylyxslistM.value = res.data.yfzylyxslist;
  1651. fzylyxslistY.value = res.data.nfzylyxslist;
  1652. twoxize.value = twoxizeJson.data;
  1653. fjklyl.value = res.data.fjklyl;
  1654. res.data.dlcylist.forEach((it) => {
  1655. if (it.cycleType === "M") {
  1656. dlcylistM.value.push(it);
  1657. } else if (it.cycleType === "Y") {
  1658. dlcylistY.value.push(it);
  1659. }
  1660. });
  1661. // 五项损失列表数据处理
  1662. const stationName = [
  1663. "吉山梁",
  1664. "繁食沟",
  1665. "草山梁",
  1666. "左庄",
  1667. "新庄",
  1668. "雷家山",
  1669. "月度",
  1670. "年度",
  1671. ];
  1672. const typeOsY = ["月累计", "月同期"];
  1673. const typeOsN = ["年累计", "年同期"];
  1674. const typeOsHJ = ["合计", "同期合计"];
  1675. let arr = [];
  1676. stationName.forEach((iv) => {
  1677. let obj = {};
  1678. res.data.wdssdlfx.forEach((it) => {
  1679. if (iv !== "月度" && iv !== "年度") {
  1680. if (it.windpowerstationName.indexOf(iv) !== -1) {
  1681. if (it.cycleType === "M") {
  1682. typeOsY.forEach((ib) => {
  1683. obj = {
  1684. windpowerstationName: iv,
  1685. wdss: ib,
  1686. gzssdl: ib === "月累计" ? it.gzssdl : it.tqgzssdl,
  1687. jhssdl: ib === "月累计" ? it.jhssdl : it.tqjhssdl,
  1688. xdssdl: ib === "月累计" ? it.xdssdl : it.tqxdssdl,
  1689. slssdl: ib === "月累计" ? it.slssdl : it.tqslssdl,
  1690. xnssdl: ib === "月累计" ? it.xnssdl : it.tqxnssdl,
  1691. zhj: ib === "月累计" ? it.zhj : it.tqzhj,
  1692. hj: ib === "月累计" ? it.hj : it.tqhj,
  1693. };
  1694. arr.push(obj);
  1695. });
  1696. } else if (it.cycleType === "Y") {
  1697. typeOsN.forEach((ib) => {
  1698. obj = {
  1699. windpowerstationName: iv,
  1700. wdss: ib,
  1701. gzssdl: ib === "年累计" ? it.gzssdl : it.tqgzssdl,
  1702. jhssdl: ib === "年累计" ? it.jhssdl : it.tqjhssdl,
  1703. xdssdl: ib === "年累计" ? it.xdssdl : it.tqxdssdl,
  1704. slssdl: ib === "年累计" ? it.slssdl : it.tqslssdl,
  1705. xnssdl: ib === "年累计" ? it.xnssdl : it.tqxnssdl,
  1706. zhj: ib === "年累计" ? it.zhj : it.tqzhj,
  1707. hj: ib === "年累计" ? it.hj : it.tqhj,
  1708. };
  1709. arr.push(obj);
  1710. });
  1711. }
  1712. }
  1713. } else {
  1714. if (it.windpowerstationName === "合计") {
  1715. if (it.cycleType === "M" && iv === "月度") {
  1716. typeOsHJ.forEach((ib) => {
  1717. obj = {
  1718. windpowerstationName: iv,
  1719. wdss: ib,
  1720. gzssdl: ib === "合计" ? it.gzssdl : it.tqgzssdl,
  1721. jhssdl: ib === "合计" ? it.jhssdl : it.tqjhssdl,
  1722. xdssdl: ib === "合计" ? it.xdssdl : it.tqxdssdl,
  1723. slssdl: ib === "合计" ? it.slssdl : it.tqslssdl,
  1724. xnssdl: ib === "合计" ? it.xnssdl : it.tqxnssdl,
  1725. zhj: ib === "合计" ? it.zhj : it.tqzhj,
  1726. hj: ib === "合计" ? it.hj : it.tqhj,
  1727. };
  1728. arr.push(obj);
  1729. });
  1730. } else if (it.cycleType === "Y" && iv === "年度") {
  1731. typeOsHJ.forEach((ib) => {
  1732. obj = {
  1733. windpowerstationName: iv,
  1734. wdss: ib,
  1735. gzssdl: ib === "合计" ? it.gzssdl : it.tqgzssdl,
  1736. jhssdl: ib === "合计" ? it.jhssdl : it.tqjhssdl,
  1737. xdssdl: ib === "合计" ? it.xdssdl : it.tqxdssdl,
  1738. slssdl: ib === "合计" ? it.slssdl : it.tqslssdl,
  1739. xnssdl: ib === "合计" ? it.xnssdl : it.tqxnssdl,
  1740. zhj: ib === "合计" ? it.zhj : it.tqzhj,
  1741. hj: ib === "合计" ? it.hj : it.tqhj,
  1742. };
  1743. arr.push(obj);
  1744. });
  1745. }
  1746. }
  1747. }
  1748. });
  1749. });
  1750. console.log("wdssdl===>>", arr);
  1751. wdssdlfx.value = arr;
  1752. // 能耗指标分析(风电)
  1753. const stationArr = [
  1754. "吉山梁",
  1755. "繁食沟",
  1756. "草山梁",
  1757. "左庄",
  1758. "新庄",
  1759. "雷家山",
  1760. "月度",
  1761. ];
  1762. const typeArr = ["zhcydl", "fdcydl", "zbsh", "xbsh"];
  1763. res.data.nhzbfxlist.forEach((it) => {
  1764. if (it.wpid !== "月度") {
  1765. let obj = {
  1766. wpid: it.wpid,
  1767. type: "月累计",
  1768. zhcydl: it.yzhcydl,
  1769. fdcydl: it.yfdcydl,
  1770. zbsh: it.yzbsh,
  1771. xbsh: it.yxbsh,
  1772. };
  1773. nhzbfxlist.value.push(obj);
  1774. let obj2 = {
  1775. wpid: it.wpid,
  1776. type: "月同期",
  1777. zhcydl: it.ytqzhcydl,
  1778. fdcydl: it.ytqfdcydl,
  1779. zbsh: it.ytqzbsh,
  1780. xbsh: it.ytqxbsh,
  1781. };
  1782. nhzbfxlist.value.push(obj2);
  1783. let obj3 = {
  1784. wpid: it.wpid,
  1785. type: "年累计",
  1786. zhcydl: it.nzhcydl,
  1787. fdcydl: it.nfdcydl,
  1788. zbsh: it.nzbsh,
  1789. xbsh: it.nxbsh,
  1790. };
  1791. nhzbfxlist.value.push(obj3);
  1792. let obj4 = {
  1793. wpid: it.wpid,
  1794. type: "年同期",
  1795. zhcydl: it.ntqzhcydl,
  1796. fdcydl: it.ntqfdcydl,
  1797. zbsh: it.ntqzbsh,
  1798. xbsh: it.ntqxbsh,
  1799. };
  1800. nhzbfxlist.value.push(obj4);
  1801. } else {
  1802. let obj = {
  1803. wpid: it.wpid,
  1804. type: "合计",
  1805. zhcydl: it.yzhcydl,
  1806. fdcydl: it.yfdcydl,
  1807. zbsh: it.yzbsh,
  1808. xbsh: it.yxbsh,
  1809. };
  1810. nhzbfxlist.value.push(obj);
  1811. let obj2 = {
  1812. wpid: it.wpid,
  1813. type: "同期合计",
  1814. zhcydl: it.ytqzhcydl,
  1815. fdcydl: it.ytqfdcydl,
  1816. zbsh: it.ytqzbsh,
  1817. xbsh: it.ytqxbsh,
  1818. };
  1819. nhzbfxlist.value.push(obj2);
  1820. }
  1821. });
  1822. //单机性能指标对比分析
  1823. for (let i in res.data.xnzbdbfx) {
  1824. if (i === "繁食沟风电场") {
  1825. fanshigouXN.value = res.data.xnzbdbfx[i];
  1826. } else if (i === "草山梁风电场") {
  1827. caoshaniangXN.value = res.data.xnzbdbfx[i];
  1828. } else if (i === "吉山梁风电场") {
  1829. jishanliangXN.value = res.data.xnzbdbfx[i];
  1830. } else if (i === "左庄风电场") {
  1831. zuozhuangXN.value = res.data.xnzbdbfx[i];
  1832. } else if (i === "新庄风电场") {
  1833. xingzhuangXN.value = res.data.xnzbdbfx[i];
  1834. } else if (i === "雷家山风电场") {
  1835. leijiashanXN.value = res.data.xnzbdbfx[i];
  1836. }
  1837. }
  1838. };
  1839. const objectSpanMethod = ({ row, column, rowIndex, columnIndex }) => {
  1840. // if (columnIndex === 0) {
  1841. // const prevRow = wdssdlfx.value[rowIndex - 1];
  1842. // if (prevRow && row.windpowerstationName === prevRow.windpowerstationName) {
  1843. // return [1, 0];
  1844. // }
  1845. // }
  1846. // if (column.property === 'windpowerstationName') {
  1847. // const _row =
  1848. // }
  1849. };
  1850. const handleClose = () => {
  1851. reset();
  1852. centerDialogVisible.value = false;
  1853. };
  1854. const handleCloseOp = () => {
  1855. reset();
  1856. economicalOperationVisible.value = false;
  1857. };
  1858. const exportPDFop = () => {
  1859. loading.value = true;
  1860. // 调用htmlToPdf工具函数
  1861. htmlToPdf.getPdf(document.querySelector("#pdfDomop"), "经济运行分析会报告");
  1862. // 定时器模拟按钮loading动画的时间
  1863. setTimeout(() => {
  1864. loading.value = false;
  1865. ElMessage.success("打印成功!");
  1866. }, 1000);
  1867. economicalOperationVisible.value = false;
  1868. };
  1869. const reset = () => {
  1870. curve.value = [];
  1871. mrlxs.value = [];
  1872. blade.value = [];
  1873. staticwind.value = [];
  1874. stoptime.value = [];
  1875. eltime.value = "";
  1876. wtcount.value = "";
  1877. hjwtid.value = "";
  1878. hjcount.value = "";
  1879. };
  1880. const theme = ref(null);
  1881. const store = useStore();
  1882. watch(
  1883. () => store.state.theme,
  1884. (newVal, oldVal) => {
  1885. theme.value = newVal;
  1886. funGetStation();
  1887. addform();
  1888. },
  1889. {
  1890. deep: true,
  1891. }
  1892. );
  1893. const initPageData = () => {
  1894. stationList.value = jsonData.stationData;
  1895. tableData.value = jsonData.tableData;
  1896. };
  1897. onMounted(() => {
  1898. initPageData();
  1899. // funGetStation();
  1900. // addform();
  1901. theme.value = store.state.theme;
  1902. tableHeight.value = window.innerHeight - 110 + "px";
  1903. });
  1904. </script>
  1905. <style lang="less" scoped>
  1906. .analysisReport {
  1907. height: 100%;
  1908. .analysisReportMain {
  1909. height: 100%;
  1910. .main_top {
  1911. width: 100%;
  1912. height: 40px;
  1913. display: flex;
  1914. align-items: center;
  1915. .topPsty {
  1916. position: relative;
  1917. top: 5px;
  1918. padding: 7px 20px;
  1919. font-size: 12px;
  1920. font-weight: 600;
  1921. margin-left: 10px;
  1922. border-radius: 3px;
  1923. }
  1924. .seach {
  1925. width: calc(100% - 20px);
  1926. padding: 20px 0 0 20px;
  1927. }
  1928. }
  1929. .main {
  1930. width: 100%;
  1931. padding: 10px;
  1932. .tableDataMain {
  1933. width: calc(100% - 20px);
  1934. }
  1935. }
  1936. }
  1937. }
  1938. .themeDark {
  1939. .analysisReportMain {
  1940. .main_top {
  1941. .topPsty {
  1942. color: #1c99ff;
  1943. background: #1e2126;
  1944. }
  1945. }
  1946. .main {
  1947. background: #161f1e;
  1948. .tableDataMain {
  1949. margin-top: 5px;
  1950. background: #212223;
  1951. }
  1952. }
  1953. }
  1954. }
  1955. .themeLight {
  1956. padding: 0;
  1957. .analysisReportMain {
  1958. .main_top {
  1959. .topPsty {
  1960. color: #2778ff;
  1961. background: #ffffff;
  1962. }
  1963. }
  1964. .main {
  1965. background: #edeffb;
  1966. .tableDataMain {
  1967. background: #fff;
  1968. margin-top: 5px;
  1969. }
  1970. }
  1971. .analysisReportMain {
  1972. padding: 20px 0;
  1973. border-radius: 10px;
  1974. background: #fff;
  1975. }
  1976. }
  1977. }
  1978. #pdfDom {
  1979. p {
  1980. color: #fff;
  1981. }
  1982. }
  1983. </style>
  1984. <style lang="less">
  1985. .el-overlay {
  1986. .el-overlay-dialog {
  1987. .reportDia {
  1988. margin-top: 0 !important;
  1989. }
  1990. }
  1991. }
  1992. .reportDia {
  1993. .repoerDateBox {
  1994. width: 100%;
  1995. display: flex;
  1996. justify-content: center;
  1997. align-items: center;
  1998. font-size: 12px;
  1999. }
  2000. }
  2001. .currSearch {
  2002. .generat-seach {
  2003. width: 100%;
  2004. display: flex;
  2005. justify-content: flex-start;
  2006. align-items: center;
  2007. .el-form-item {
  2008. width: auto;
  2009. display: flex;
  2010. justify-content: flex-start;
  2011. align-items: center;
  2012. .el-form-item__label {
  2013. color: #fff !important;
  2014. }
  2015. .el-range-editor.el-input__inner {
  2016. display: block;
  2017. }
  2018. }
  2019. }
  2020. }
  2021. </style>