|
@@ -44,10 +44,10 @@
|
|
|
<ul class="gnlb">
|
|
|
<li><span>频率死区上限:<em class="dzFront">{{this.dzForm.dbMax}}</em></span></li>
|
|
|
<li><span>频率死区下限:<em class="dzFront">{{this.dzForm.dbMin}}</em></span></li>
|
|
|
- <li><span>调差率上扰值:<em class="dzFront">{{this.dzForm.epMin}}</em></span></li>
|
|
|
- <li><span>调差率下扰值:<em class="dzFront">{{this.dzForm.epMax}}</em></span></li>
|
|
|
- <li><span>上调功率限幅:<em class="dzFront">{{this.dzForm.limitMin}}</em></span></li>
|
|
|
- <li><span>下调功率限幅:<em class="dzFront">{{this.dzForm.limitMax}}</em></span></li>
|
|
|
+ <li><span>调差率上扰值:<em class="dzFront">{{this.dzForm.epMin*100+'%'}}</em></span></li>
|
|
|
+ <li><span>调差率下扰值:<em class="dzFront">{{this.dzForm.epMax*100+'%'}}</em></span></li>
|
|
|
+ <li><span>上调功率限幅:<em class="dzFront">{{this.dzForm.limitMin*100+'%Pn'}}</em></span></li>
|
|
|
+ <li><span>下调功率限幅:<em class="dzFront">{{this.dzForm.limitMax*100+'%Pn'}}</em></span></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -83,6 +83,7 @@
|
|
|
<th>频率异常时间点</th>
|
|
|
<th>频率恢复时间点</th>
|
|
|
<th>调频耗时(秒)</th>
|
|
|
+ <th>装机容量(MW)</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
<tr v-for="(item,index) in fdList" :key="index" >
|
|
@@ -90,7 +91,8 @@
|
|
|
<td>{{formatTime(item.exceptionStartTime)}}</td>
|
|
|
<td>{{formatTime(item.restoreTime)}}</td>
|
|
|
<td>{{Math.round((item.restoreTime-item.exceptionStartTime)/1000)}}</td>
|
|
|
- <td><a href="javascript:void(0);" @click="fdDetail(item.id,item.exceptionStartTime,item.restoreTime)">详细</a></td>
|
|
|
+ <td>{{item.capacity}}</td>
|
|
|
+ <td><a href="javascript:void(0);" @click="fdDetail(item.id,item.exceptionStartTime,item.restoreTime,item.capacity)">详细</a></td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
@@ -184,7 +186,7 @@ export default {
|
|
|
this.detailChart.clear()
|
|
|
this.detailChart = null
|
|
|
},
|
|
|
- renderFdDetailChart(fdDetailList,exceptionStartTime,restoreTime){
|
|
|
+ renderFdDetailChart(fdDetailList,exceptionStartTime,restoreTime,fdCapacity){
|
|
|
let fdfm = []
|
|
|
let fdap = []
|
|
|
let times = []
|
|
@@ -230,7 +232,7 @@ export default {
|
|
|
position: 'left',
|
|
|
name: '功率',
|
|
|
min: 0,
|
|
|
- max: this.capacity,
|
|
|
+ max: fdCapacity,
|
|
|
axisLabel: {
|
|
|
formatter: '{value} MW'
|
|
|
},
|
|
@@ -284,7 +286,7 @@ export default {
|
|
|
this.detailChart.setOption(fdoption,true)
|
|
|
window.onresize = this.detailChart.resize()
|
|
|
},
|
|
|
- fdDetail(id,exceptionStartTime,restoreTime){
|
|
|
+ fdDetail(id,exceptionStartTime,restoreTime,fdCapacity){
|
|
|
// 弹出详细页面
|
|
|
this.open = true;
|
|
|
var searchParams = {
|
|
@@ -293,7 +295,7 @@ export default {
|
|
|
// 获取后端明细数据
|
|
|
this.$axios.get('/faultRecorderDetailController/getFdDetailList',{params: searchParams}).then((res) => {
|
|
|
// 渲染明细图表
|
|
|
- this.renderFdDetailChart(res.data,exceptionStartTime,restoreTime)
|
|
|
+ this.renderFdDetailChart(res.data,exceptionStartTime,restoreTime,fdCapacity)
|
|
|
}).catch((error) => {
|
|
|
})
|
|
|
},
|