123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- import * as echarts from 'echarts';
- export const getAreaOptions = ({ xAxisData, seriesList }) => {
- const series = seriesList.map((data, index) => {
- const i = !index;
- return {
- name: i ? '过去' : '未来',
- type: 'line',
- symbol: 'circle',
- showAllSymbol: true,
- symbolSize: 5,
- smooth: true,
- lineStyle: {
- width: 2,
- color: i ? "rgba(25,163,223,1)" : "rgba(36,175,83,1)",
- borderColor: 'rgba(0,0,0,.4)',
- },
- itemStyle: {
- color: i ? "#b7f9ff" : "#fff",
- borderColor: i ? "#2185da" : "#2ee055",
- borderWidth: 1,
- shadowColor: 'rgba(22, 137, 229)',
- shadowBlur: 1
- },
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: i ? "rgba(25,163,223,.3)" : "rgba(48, 209, 136,.3)"
- },
- {
- offset: 1,
- color: i ? "rgba(25,163,223, 0)" : "rgba(48, 209, 136, 0)"
- }
- ], false),
- shadowColor: 'rgba(25,163,223, 0.5)',
- shadowBlur: 20
- },
- z: i ? 3 : 2,
- data
- }
- })
- return {
- backgroundColor: '#fff',
- tooltip: {
- trigger: "axis",
- show: true,
- formatter: function (params) {
- const [item] = params.filter(item => item.value);
- const color = item?.dataIndex <= 5 ? '#2185da' : '#2ee055'
- return `
- <div class="text-[12px]">
- <p>时间:${item.name + ':00'}</p>
- <p class="flex items-center space-x-[6px]">
- <span class="block w-[6px] h-[6px] rounded-full bg-[${color}]"></span>
- <span>${Number(item.value.toFixed(2))} mg/L</span>
- </p>
- </div>
- `
- },
- },
- grid: {
- top: '10',
- left: 60,
- right: '5%',
- bottom: '15%',
- },
- xAxis: [{
- type: 'category',
- boundaryGap: false,
- axisLine: {
- show: true,
- lineStyle: {
- color: '#e0e6f1'
- },
- },
- axisLabel: {
- color: '#1F2328',
- fontSize: 12,
- formatter: function (data) {
- return data + ":00"
- }
- },
- splitLine: {
- show: true,
- lineStyle: {
- type: 'dashed',
- },
- },
- axisTick: {
- show: false,
- },
- data: xAxisData
- }],
- yAxis: [{
- name: '',
- nameTextStyle: {
- fontSize: 12,
- align: 'right',
- padding: [10, 5],
- },
- min: 0,
- splitLine: {
- show: true,
- lineStyle: {
- type: 'dashed',
- },
- },
- axisLine: {
- show: false,
- lineStyle: {
- color: "#233653"
- }
- },
- axisLabel: {
- show: true,
- color: '#1F2328',
- padding: 0,
- // textStyle: {
- // },
- formatter: function (value) {
- if (value === 0) {
- return value
- }
- return value
- }
- },
- axisTick: {
- show: false,
- },
- }],
- series
- }
- }
- export const getOrderAreaOptions = ({ xAxisData, yAxisData, whichWay }) => {
- const color = [
- '#0FFEFF',
- '#FFCA06',
- '#3DD784',
- '#3D80FF',
- '#D35AE8',
- '#EC2E72',
- '#8B4513',
- ];
- const commonYAxisOptions = {
- name: '',
- nameTextStyle: {
- fontSize: 12,
- align: 'right',
- padding: [10, 5],
- },
- min: 0,
- splitLine: {
- show: true,
- lineStyle: {
- type: 'dashed',
- },
- },
- axisLine: {
- show: false,
- lineStyle: {
- color: "#233653"
- }
- },
- axisLabel: {
- show: true,
- color: '#666',
- padding: 0,
- formatter: function (value) {
- return value
- }
- },
- axisTick: {
- show: false,
- },
- }
- const series = [];
- const arrKey = yAxisData.map(item => item.key);
- const isIncludeAssignKey = arrKey.includes('csSlqc') || arrKey.includes('jsSlq');
- const isOneSelfKey = isIncludeAssignKey && arrKey.length === 1;
- yAxisData.map((item, index) => {
- const itemColor = color[index];
- let yAxisIndex = Number(item.key === 'csSlqc' || item.key === 'jsSlq')
- if ( isOneSelfKey ) yAxisIndex = 0;
- series.push({
- name: item.title,
- type: 'line',
- symbol: 'circle',
- showAllSymbol: true,
- smooth: true,
- symbolSize: 5,
- yAxisIndex,
- lineStyle: {
- width: 2,
- color: itemColor,
- borderColor: 'rgba(0,0,0,.4)',
- },
- itemStyle: {
- color: itemColor,
- borderColor: itemColor,
- borderWidth: 3,
- },
- tooltip: {
- valueFormatter: function (value) {
- const wihteKeyList = ['jsSlq', 'csSlqc'];
- let unit = '';
- if(wihteKeyList.includes(item.key)) {
- unit = whichWay === 1 ? ' m³/h' : ' m³/d';
- } else if (item.key !== 'time') {
- unit = ' mg/L';
- }
- return value + unit;
- },
- },
- data: item.list,
- });
- });
- return {
- series,
- tooltip: {
- trigger: 'axis',
- },
- backgroundColor: '#fff',
- grid: {
- top: 40,
- // left: 40,
- // right: 50,
- bottom: 30,
- },
- legend: {
- orient: 'horizontal',
- fontSize: '20px',
- icon: 'rect',
- itemWidth: 6,
- itemHeight: 2,
- // formatter: ['{a|{name}}'].join('\n'),
- formatter: function (name) {
- const isNeedUnit = name === '进水水量' || name === '出水水量';
- return isNeedUnit ? `{a|${name}(次)}` : `{a|${name}}`
- },
- textStyle: {
- rich: {
- a: {
- width: 20,
- color: '#666',
- fontSize: 10,
- lineHeight: 18,
- },
- },
- },
- right: '4',
- top: '10',
- },
- xAxis: [{
- type: "category",
- axisLabel: {
- color: "#666",
- fontSize: 12,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(127, 214, 255, .4)",
- },
- },
- splitLine: {
- show: true,
- interval: '0',
- lineStyle: {
- type: 'dashed',
- },
- },
- axisTick: {
- show: false,
- },
- boundaryGap: false,
- data: xAxisData
- }],
- yAxis: [
- {
- ...commonYAxisOptions,
- position: 'left'
- },
- {
- ...commonYAxisOptions,
- position: 'right',
- splitLine: {
- show: false
- }
- }
- ],
- }
- }
|