config.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. const formatTofixed = val => val != 0 && !val ? '' : val.toFixed(2);
  2. export const columns = [
  3. {
  4. title: "检测时间",
  5. key: "time",
  6. width: 180,
  7. fixed: "left",
  8. },
  9. {
  10. title: "进水总流量",
  11. key: "scJsZll",
  12. width: 100,
  13. render: ({ scJsZll }) => formatTofixed(scJsZll)
  14. },
  15. {
  16. title: "进水COD",
  17. key: "scJsCod",
  18. width: 100,
  19. render: ({ scJsCod }) => formatTofixed(scJsCod)
  20. },
  21. {
  22. title: "北池好氧硝酸盐",
  23. key: "jqr1HyXiaodan",
  24. width: 120,
  25. render: ({ scJsZll }) => formatTofixed(scJsZll)
  26. },
  27. {
  28. title: "南池好氧硝酸盐",
  29. key: "jqr2HyXiaodan",
  30. width: 120,
  31. render: ({ jqr2HyXiaodan }) => formatTofixed(jqr2HyXiaodan)
  32. },
  33. {
  34. title: "北池缺氧氨氮",
  35. key: "jqr1QyAndan",
  36. width: 120,
  37. render: ({ jqr1QyAndan }) => formatTofixed(jqr1QyAndan)
  38. },
  39. {
  40. title: "南池缺氧氨氮",
  41. key: "jqr2QyAndan",
  42. width: 120,
  43. render: ({ jqr2QyAndan }) => formatTofixed(jqr2QyAndan)
  44. },
  45. {
  46. title: "北池缺氧硝酸盐",
  47. key: "jqr1QyXiaodan",
  48. width: 120,
  49. render: ({ jqr1QyXiaodan }) => formatTofixed(jqr1QyXiaodan)
  50. },
  51. {
  52. title: "南池缺氧硝酸盐",
  53. key: "jqr2QyXiaodan",
  54. width: 120,
  55. render: ({ jqr2QyXiaodan }) => formatTofixed(jqr2QyXiaodan)
  56. },
  57. ];
  58. export const getEchartLineOptions = ({ xAxisData, seriesData }) => {
  59. const colorList = [
  60. "#FF6737",
  61. "#00AB84",
  62. "#85E822",
  63. "#21CCFF",
  64. "#FFE122",
  65. "#313CA9",
  66. "#F023FF",
  67. "#FFD22E",
  68. "#2181FF",
  69. "#F22",
  70. "#37DDE0",
  71. ];
  72. const series = seriesData.map((item, index) => {
  73. return {
  74. name: item.name,
  75. type: "line",
  76. smooth: true,
  77. showSymbol: false,
  78. itemStyle: {
  79. opacity: 0.8,
  80. color: colorList[index],
  81. },
  82. // tooltip: {
  83. // valueFormatter: function (value) {
  84. // return value;
  85. // },
  86. // },
  87. data: item.data,
  88. };
  89. });
  90. const option = {
  91. grid: {
  92. top: 80,
  93. bottom: 50,
  94. left: 40,
  95. right: 30,
  96. },
  97. tooltip: {
  98. trigger: "axis",
  99. // confine: true,
  100. appendToBody: true,
  101. },
  102. title: {
  103. show: !xAxisData.length,
  104. text: '暂无数据',
  105. x: 'center',
  106. y: 'center',
  107. textStyle: {
  108. fontSize: 14,
  109. fontWeight: 'normal',
  110. }
  111. },
  112. legend: [
  113. {
  114. show: !!xAxisData.length,
  115. data: ["进水总氮", "北池好氧硝酸盐", "北池缺氧氨氮", "北池缺氧硝酸盐"],
  116. top: 10,
  117. left: 10,
  118. icon: "rect",
  119. itemWidth: 10,
  120. itemHeight: 10,
  121. textStyle: {
  122. color: "rgba(0,0,0,0.65)",
  123. },
  124. },
  125. {
  126. show: !!xAxisData.length,
  127. data: ["进水COD", "南池好氧硝酸盐", "南池缺氧氨氮", "南池缺氧硝酸盐"],
  128. top: 35,
  129. left: 10,
  130. icon: "rect",
  131. itemWidth: 10,
  132. itemHeight: 10,
  133. icon: "rect",
  134. itemWidth: 10,
  135. itemHeight: 10,
  136. textStyle: {
  137. color: "rgba(0,0,0,0.65)",
  138. },
  139. },
  140. ],
  141. xAxis: [
  142. {
  143. type: "category",
  144. data: xAxisData || [],
  145. boundaryGap: false,
  146. axisTick: {
  147. show: false,
  148. },
  149. axisLine: {
  150. lineStyle: {
  151. color: "#DAE0E1",
  152. },
  153. },
  154. axisLabel: {
  155. align: "center",
  156. color: "#828282",
  157. margin: 10,
  158. },
  159. },
  160. ],
  161. yAxis: [
  162. {
  163. scale: false,
  164. minInterval: 1,
  165. backgroundColor: "#FFFFFF",
  166. splitLine: {
  167. lineStyle: {
  168. color: ["#DAE0E1"],
  169. shadowColor: "#DAE0E1",
  170. shadowBlur: 1,
  171. opacity: 1,
  172. width: 1,
  173. type: "dashed",
  174. },
  175. },
  176. axisLine: {
  177. show: false,
  178. },
  179. axisLabel: {
  180. align: "center",
  181. color: "#828282",
  182. margin: 20,
  183. },
  184. },
  185. ],
  186. series
  187. };
  188. return option;
  189. };