echartOptions.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. import * as echarts from 'echarts';
  2. export const getAreaOptions = ({ xAxisData, seriesList }) => {
  3. const series = seriesList.map((data, index) => {
  4. const i = !index;
  5. return {
  6. name: i ? '过去' : '未来',
  7. type: 'line',
  8. symbol: 'circle',
  9. showAllSymbol: true,
  10. symbolSize: 5,
  11. smooth: true,
  12. lineStyle: {
  13. width: 2,
  14. color: i ? "rgba(25,163,223,1)" : "rgba(36,175,83,1)",
  15. borderColor: 'rgba(0,0,0,.4)',
  16. },
  17. itemStyle: {
  18. color: i ? "#b7f9ff" : "#fff",
  19. borderColor: i ? "#2185da" : "#2ee055",
  20. borderWidth: 1,
  21. shadowColor: 'rgba(22, 137, 229)',
  22. shadowBlur: 1
  23. },
  24. areaStyle: {
  25. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  26. offset: 0,
  27. color: i ? "rgba(25,163,223,.3)" : "rgba(48, 209, 136,.3)"
  28. },
  29. {
  30. offset: 1,
  31. color: i ? "rgba(25,163,223, 0)" : "rgba(48, 209, 136, 0)"
  32. }
  33. ], false),
  34. shadowColor: 'rgba(25,163,223, 0.5)',
  35. shadowBlur: 20
  36. },
  37. z: i ? 3 : 2,
  38. data
  39. }
  40. })
  41. return {
  42. backgroundColor: '#fff',
  43. tooltip: {
  44. trigger: "axis",
  45. show: true,
  46. formatter: function (params) {
  47. const [item] = params.filter(item => item.value);
  48. const color = item?.dataIndex <= 5 ? '#2185da' : '#2ee055'
  49. return `
  50. <div class="text-[12px]">
  51. <p>时间:${item.name + ':00'}</p>
  52. <p class="flex items-center space-x-[6px]">
  53. <span class="block w-[6px] h-[6px] rounded-full bg-[${color}]"></span>
  54. <span>${Number(item.value.toFixed(2))} mg/L</span>
  55. </p>
  56. </div>
  57. `
  58. },
  59. },
  60. grid: {
  61. top: '10',
  62. left: 60,
  63. right: '5%',
  64. bottom: '15%',
  65. },
  66. xAxis: [{
  67. type: 'category',
  68. boundaryGap: false,
  69. axisLine: {
  70. show: true,
  71. lineStyle: {
  72. color: '#e0e6f1'
  73. },
  74. },
  75. axisLabel: {
  76. color: '#1F2328',
  77. fontSize: 12,
  78. formatter: function (data) {
  79. return data + ":00"
  80. }
  81. },
  82. splitLine: {
  83. show: true,
  84. lineStyle: {
  85. type: 'dashed',
  86. },
  87. },
  88. axisTick: {
  89. show: false,
  90. },
  91. data: xAxisData
  92. }],
  93. yAxis: [{
  94. name: '',
  95. nameTextStyle: {
  96. fontSize: 12,
  97. align: 'right',
  98. padding: [10, 5],
  99. },
  100. min: 0,
  101. splitLine: {
  102. show: true,
  103. lineStyle: {
  104. type: 'dashed',
  105. },
  106. },
  107. axisLine: {
  108. show: false,
  109. lineStyle: {
  110. color: "#233653"
  111. }
  112. },
  113. axisLabel: {
  114. show: true,
  115. color: '#1F2328',
  116. padding: 0,
  117. // textStyle: {
  118. // },
  119. formatter: function (value) {
  120. if (value === 0) {
  121. return value
  122. }
  123. return value
  124. }
  125. },
  126. axisTick: {
  127. show: false,
  128. },
  129. }],
  130. series
  131. }
  132. }
  133. export const getOrderAreaOptions = ({ xAxisData, yAxisData, whichWay }) => {
  134. const color = [
  135. '#0FFEFF',
  136. '#FFCA06',
  137. '#3DD784',
  138. '#3D80FF',
  139. '#D35AE8',
  140. '#EC2E72',
  141. '#8B4513',
  142. ];
  143. const commonYAxisOptions = {
  144. name: '',
  145. nameTextStyle: {
  146. fontSize: 12,
  147. align: 'right',
  148. padding: [10, 5],
  149. },
  150. min: 0,
  151. splitLine: {
  152. show: true,
  153. lineStyle: {
  154. type: 'dashed',
  155. },
  156. },
  157. axisLine: {
  158. show: false,
  159. lineStyle: {
  160. color: "#233653"
  161. }
  162. },
  163. axisLabel: {
  164. show: true,
  165. color: '#666',
  166. padding: 0,
  167. formatter: function (value) {
  168. return value
  169. }
  170. },
  171. axisTick: {
  172. show: false,
  173. },
  174. }
  175. const series = [];
  176. const arrKey = yAxisData.map(item => item.key);
  177. const isIncludeAssignKey = arrKey.includes('csSlqc') || arrKey.includes('jsSlq');
  178. const isOneSelfKey = isIncludeAssignKey && arrKey.length === 1;
  179. yAxisData.map((item, index) => {
  180. const itemColor = color[index];
  181. let yAxisIndex = Number(item.key === 'csSlqc' || item.key === 'jsSlq')
  182. if ( isOneSelfKey ) yAxisIndex = 0;
  183. series.push({
  184. name: item.title,
  185. type: 'line',
  186. symbol: 'circle',
  187. showAllSymbol: true,
  188. smooth: true,
  189. symbolSize: 5,
  190. yAxisIndex,
  191. lineStyle: {
  192. width: 2,
  193. color: itemColor,
  194. borderColor: 'rgba(0,0,0,.4)',
  195. },
  196. itemStyle: {
  197. color: itemColor,
  198. borderColor: itemColor,
  199. borderWidth: 3,
  200. },
  201. tooltip: {
  202. valueFormatter: function (value) {
  203. const wihteKeyList = ['jsSlq', 'csSlqc'];
  204. let unit = '';
  205. if(wihteKeyList.includes(item.key)) {
  206. unit = whichWay === 1 ? ' m³/h' : ' m³/d';
  207. } else if (item.key !== 'time') {
  208. unit = ' mg/L';
  209. }
  210. return value + unit;
  211. },
  212. },
  213. data: item.list,
  214. });
  215. });
  216. return {
  217. series,
  218. tooltip: {
  219. trigger: 'axis',
  220. },
  221. backgroundColor: '#fff',
  222. grid: {
  223. top: 40,
  224. // left: 40,
  225. // right: 50,
  226. bottom: 30,
  227. },
  228. legend: {
  229. orient: 'horizontal',
  230. fontSize: '20px',
  231. icon: 'rect',
  232. itemWidth: 6,
  233. itemHeight: 2,
  234. // formatter: ['{a|{name}}'].join('\n'),
  235. formatter: function (name) {
  236. const isNeedUnit = name === '进水水量' || name === '出水水量';
  237. return isNeedUnit ? `{a|${name}(次)}` : `{a|${name}}`
  238. },
  239. textStyle: {
  240. rich: {
  241. a: {
  242. width: 20,
  243. color: '#666',
  244. fontSize: 10,
  245. lineHeight: 18,
  246. },
  247. },
  248. },
  249. right: '4',
  250. top: '10',
  251. },
  252. xAxis: [{
  253. type: "category",
  254. axisLabel: {
  255. color: "#666",
  256. fontSize: 12,
  257. },
  258. axisLine: {
  259. show: true,
  260. lineStyle: {
  261. color: "rgba(127, 214, 255, .4)",
  262. },
  263. },
  264. splitLine: {
  265. show: true,
  266. interval: '0',
  267. lineStyle: {
  268. type: 'dashed',
  269. },
  270. },
  271. axisTick: {
  272. show: false,
  273. },
  274. boundaryGap: false,
  275. data: xAxisData
  276. }],
  277. yAxis: [
  278. {
  279. ...commonYAxisOptions,
  280. position: 'left'
  281. },
  282. {
  283. ...commonYAxisOptions,
  284. position: 'right',
  285. splitLine: {
  286. show: false
  287. }
  288. }
  289. ],
  290. }
  291. }