绘制 普测计划页面
This commit is contained in:
@@ -28,7 +28,7 @@ const tableStore = new TableStore({
|
||||
data: ['日检测终端数量']
|
||||
},
|
||||
xAxis: {
|
||||
data: tableStore.table.data.dateStatistics.map(item => item.statisticsDate)
|
||||
data: tableStore.table.data.dateStatistics.map((item:any) => item.statisticsDate)
|
||||
},
|
||||
yAxis: {
|
||||
name: '台'
|
||||
@@ -38,7 +38,7 @@ const tableStore = new TableStore({
|
||||
name: '日检测终端数量',
|
||||
type: 'bar',
|
||||
|
||||
data: tableStore.table.data.dateStatistics.map(item => item.count)
|
||||
data: tableStore.table.data.dateStatistics.map((item:any) => item.count)
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -47,7 +47,7 @@ const tableStore = new TableStore({
|
||||
data: ['检测终端数量']
|
||||
},
|
||||
xAxis: {
|
||||
data: tableStore.table.data.orgStatistics.map(item => item.orgName)
|
||||
data: tableStore.table.data.orgStatistics.map((item:any) => item.orgName)
|
||||
},
|
||||
yAxis: {
|
||||
name: '台'
|
||||
@@ -57,7 +57,7 @@ const tableStore = new TableStore({
|
||||
name: '检测终端数量',
|
||||
type: 'bar',
|
||||
|
||||
data: tableStore.table.data.orgStatistics.map(item => item.count)
|
||||
data: tableStore.table.data.orgStatistics.map((item:any) => item.count)
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user