|
@@ -55,7 +55,7 @@ const funGetTree = async () => {
|
|
|
actTreeNode.value = null
|
|
|
excelCheckIds.value = []
|
|
|
excelCheckData.value = []
|
|
|
- const res = await request.get("/allfilelist")
|
|
|
+ const res = await request.get("/new/photovol/allfilelist")
|
|
|
treeData.value = funRepeatMap(res.data)
|
|
|
excelList.value = []
|
|
|
if(actTreeNode.value){
|
|
@@ -74,7 +74,7 @@ const funCurrentChange = ({ current, currentNode }) => {
|
|
|
station: o.station,
|
|
|
time: o.time,
|
|
|
type: o.type,
|
|
|
- windturbine: o.windturbine,
|
|
|
+ windturbineId: o.windturbineId,
|
|
|
name: o.path
|
|
|
}
|
|
|
})
|
|
@@ -116,7 +116,7 @@ const funSubmit = async () => {
|
|
|
tableShowId.value = '1'
|
|
|
tableName.value = params.filelist
|
|
|
tableLoading.value = true
|
|
|
- const res = await request.get('/analysis/powertimefile', { params })
|
|
|
+ const res = await request.get('/new/photovol/analysis/powertimefile', { params })
|
|
|
if(res.code !== 200){
|
|
|
tableLoading.value = false
|
|
|
return false
|
|
@@ -128,44 +128,46 @@ const funSubmit = async () => {
|
|
|
width: o.des==='时间'? 100: 80,
|
|
|
}
|
|
|
})
|
|
|
- const wtIds = excelCheckData.value.map(o => o.windturbine)
|
|
|
+ const wtIds = excelCheckData.value.map(o => o.windturbineId)
|
|
|
const xAxis = []
|
|
|
const series = []
|
|
|
if(!res.data.data || !wtIds.length){ tableLoading.value = false; return false}
|
|
|
- for(const index in wtIds){
|
|
|
- const llgl = []
|
|
|
- const sjgl = []
|
|
|
- // console.log(wtIds[index],res.data.data[wtIds[index]])
|
|
|
- for(const o of res.data.data[wtIds[index]]){
|
|
|
- if(index === '0'){
|
|
|
- xAxis.push(o.datetime)
|
|
|
+ if (wtIds && wtIds.length>0) {
|
|
|
+ for(const index in wtIds){
|
|
|
+ const llgl = []
|
|
|
+ const sjgl = []
|
|
|
+ // console.log(wtIds[index],res.data.data[wtIds[index]])
|
|
|
+ for(const o of res.data.data[wtIds[index]]){
|
|
|
+ if(index === '0'){
|
|
|
+ xAxis.push(o.datetime)
|
|
|
+ }
|
|
|
+ tableData.value.push(o)
|
|
|
+ llgl.push(o.ideaP)
|
|
|
+ sjgl.push(o.actualP)
|
|
|
}
|
|
|
- tableData.value.push(o)
|
|
|
- llgl.push(o.ideaP)
|
|
|
- sjgl.push(o.actualP)
|
|
|
+ series.push(
|
|
|
+ {
|
|
|
+ name: wtIds[index] + "\n实际功率",
|
|
|
+ type: "line",
|
|
|
+ symbol: "line", //设定为实心点
|
|
|
+ symbolSize: 0, //设定实心点的大小
|
|
|
+ smooth: false, //这个是把线变成曲线
|
|
|
+ data: sjgl,
|
|
|
+ xAxisIndex: 0,
|
|
|
+ }
|
|
|
+ )
|
|
|
+ series.push(
|
|
|
+ {
|
|
|
+ name: wtIds[index] + "\n理论功率",
|
|
|
+ type: "line",
|
|
|
+ symbol: "line", //设定为实心点
|
|
|
+ symbolSize: 0, //设定实心点的大小
|
|
|
+ smooth: false, //这个是把线变成曲线
|
|
|
+ data: llgl,
|
|
|
+ xAxisIndex: 0,
|
|
|
+ }
|
|
|
+ )
|
|
|
}
|
|
|
- series.push(
|
|
|
- {
|
|
|
- name: wtIds[index] + "\n实际功率",
|
|
|
- type: "line",
|
|
|
- symbol: "line", //设定为实心点
|
|
|
- symbolSize: 0, //设定实心点的大小
|
|
|
- smooth: false, //这个是把线变成曲线
|
|
|
- data: sjgl,
|
|
|
- xAxisIndex: 0,
|
|
|
- }
|
|
|
- )
|
|
|
- series.push(
|
|
|
- {
|
|
|
- name: wtIds[index] + "\n理论功率",
|
|
|
- type: "line",
|
|
|
- symbol: "line", //设定为实心点
|
|
|
- symbolSize: 0, //设定实心点的大小
|
|
|
- smooth: false, //这个是把线变成曲线
|
|
|
- data: llgl,
|
|
|
- xAxisIndex: 0,
|
|
|
- }
|
|
|
- )
|
|
|
}
|
|
|
xAxisData.value = xAxis
|
|
|
seriesData.value = series
|