|
@@ -92,11 +92,11 @@ export default {
|
|
|
// 增发电量
|
|
|
AddElectricity: 30,
|
|
|
// 避免故障
|
|
|
- bmgz_: 0,
|
|
|
+ bmgz_: 32,
|
|
|
// 提升率
|
|
|
tsl_: 0,
|
|
|
// 降低率
|
|
|
- jdl_: 0,
|
|
|
+ jdl_: '61',
|
|
|
// 风能利用率
|
|
|
fnlyl_: 0,
|
|
|
// 设备科利用率
|
|
@@ -108,9 +108,9 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.bmgz_ = this.bmgz;
|
|
|
+ this.bmgz_ = this.bmgz ? this.bmgz : 32;
|
|
|
this.tsl_ = this.tsl;
|
|
|
- this.jdl_ = this.jdl;
|
|
|
+ this.jdl_ = this.jdl_ ? this.jdl_ : 61;
|
|
|
this.fnlyl_ = this.fnlyl;
|
|
|
this.sbklyl_ = this.sbklyl;
|
|
|
this.zhcydl_ = this.zhcydl;
|