feat: 新增银行系统前端

This commit is contained in:
橙子
2024-03-12 23:01:10 +08:00
parent af98ef56a1
commit 61d774817f
10 changed files with 1805 additions and 1683 deletions

View File

@@ -0,0 +1,47 @@
export const exchangeRateConfig ={
title: {
text: '银行利息趋势图'
},
tooltip: {
trigger: 'axis'
},
legend: {},
toolbox: {
show: true,
feature: {
dataZoom: {
yAxisIndex: 'none'
},
dataView: { readOnly: false },
magicType: { type: ['line', 'bar'] },
restore: {},
saveAsImage: {}
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: []
},
yAxis: {
type: 'value',
axisLabel: {
formatter: '{value} 率'
}
},
series: [
{
type: 'line',
data: [],
markPoint: {
data: [
{ type: 'max', name: 'Max' },
{ type: 'min', name: 'Min' }
]
},
markLine: {
data: [{ type: 'average', name: 'Avg' }]
}
}
]
};