weeklyTemplate.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/html">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>周报</title>
  6. </head>
  7. <style>
  8. table {
  9. text-align: center;
  10. border-collapse: collapse;
  11. }
  12. th,
  13. td {
  14. border: 1px solid #000;
  15. }
  16. </style>
  17. <body style="font-family:STSong-Light">
  18. <div>
  19. <p> <h2 style="text-align:center">储能电站电池监控预警与性能分析平台周报</h2></p>
  20. <p style="text-align:center">( {{this_date}} {{this_week}} )</p>
  21. <ol>
  22. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px">电池运行状态信息汇总</li>
  23. <p> {{start_date}}~{{end_date}}, 平台累计监测电池数量为{{sum_car_count}}簇, 本周期新增监测簇数量{{new_car_count}}台。</p>
  24. <p> {{evaluate_text}}</p>
  25. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px">电池运行安全状态信息汇总</li>
  26. <ol>
  27. <li> 本周预警电池数{{alarm_bat_count}}台, 占电池总数{{alarm_bat_percent}}%, 较上周{{alarm_change_rate}}</li>
  28. <br>
  29. <li> 本周预警数总量{{alarm}}条;</li>
  30. <br>
  31. {% if alarm > 0%}
  32. <li> 本周告警等级统计如下:</li>
  33. <br>
  34. <img src={{alarm_level_url}} height=450 width=800 style="margin: 0 30px;" />
  35. {% endif%}
  36. </ol>
  37. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px"> 本周告警类型趋势如下:</li>
  38. <img src={{alarm_type_url}} height=450 width=800 style="margin: 0 30px;" />
  39. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px">电池健康状态信息汇总</li>
  40. <ol>
  41. <li> 本周SOH>80%电池总数{{soh_bat_count}}台, 占电池总数{{soh_bat_percent}}%, 较上周{{soh_change_rate}}</li>
  42. <br>
  43. <br>
  44. <li> 本周SOH分布状态如下:</li>
  45. <br>
  46. <img src={{soh_url}} height=450 width=800 style="margin: 0 30px;" />
  47. <p> </p>
  48. </ol>
  49. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px">本周预警次数排名前10</li>
  50. <img src="{{alarm_top_url}}" height=450 width=800 style="margin: 0 30px;"/>
  51. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px">本周充入总电量</li>
  52. <img src="{{charge_capacity_url}}" height=450 width=800 style="margin: 0 30px;"/>
  53. <li style="font-size: 28px; font-weight: 800;margin-bottom: 30px">本周放出总电量</li>
  54. <img src="{{discharge_capacity_url}}" height=450 width=800 style="margin: 0 30px;"/>
  55. </ol>
  56. </div>
  57. </body>
  58. </html>