|
@@ -392,8 +392,8 @@
|
|
|
},
|
|
|
{
|
|
|
leftName: '利用小时',
|
|
|
- leftValue: Math.ceil(datas.fdylyxs + datas.fdnlyxs),
|
|
|
- leftCode: '(万kWh)'
|
|
|
+ leftValue: Math.ceil(datas.fdnlyxs),
|
|
|
+ leftCode: '(h/年)'
|
|
|
}
|
|
|
]
|
|
|
that.windPowerData = [{
|
|
@@ -436,11 +436,10 @@
|
|
|
let that = this
|
|
|
cockpitProjectplanApi({
|
|
|
wpId: 'KGDL_FGS0'
|
|
|
- }).then(res =>{
|
|
|
+ }).then(res => {
|
|
|
if (res && res.data) {
|
|
|
let item = res.data.proplanmap
|
|
|
- let arr2 = [
|
|
|
- {
|
|
|
+ let arr2 = [{
|
|
|
leftName: '日发电量',
|
|
|
leftValue: Math.ceil(item.qy_r_sjdl / 10000),
|
|
|
leftCode: '(万kWh)'
|
|
@@ -452,7 +451,7 @@
|
|
|
},
|
|
|
{
|
|
|
leftName: '年发电量',
|
|
|
- leftValue: Math.ceil(item.qy_n_sjdl / 10000 /10000),
|
|
|
+ leftValue: Math.ceil(item.qy_n_sjdl / 10000 / 10000),
|
|
|
leftCode: '(亿kWh)'
|
|
|
},
|
|
|
]
|
|
@@ -473,7 +472,7 @@
|
|
|
let obj = {
|
|
|
name: item.wpname,
|
|
|
fs: Math.ceil(item.spped),
|
|
|
- sjgl: Math.ceil(item.sjgl/1000),
|
|
|
+ sjgl: Math.ceil(item.sjgl / 1000),
|
|
|
cxgl: Math.ceil(item.cxgl)
|
|
|
}
|
|
|
this.windData.push(obj)
|
|
@@ -481,7 +480,7 @@
|
|
|
let obj = {
|
|
|
name: item.wpname,
|
|
|
gzqd: Math.ceil(item.spped),
|
|
|
- sjgl: Math.ceil(item.sjgl/1000),
|
|
|
+ sjgl: Math.ceil(item.sjgl / 1000),
|
|
|
cxgl: Math.ceil(item.cxgl)
|
|
|
}
|
|
|
this.powerData.push(obj)
|