|
|
@@ -1106,8 +1106,8 @@ export default {
|
|
|
// 重置维度筛选
|
|
|
this.dimensionFilters = {
|
|
|
location: {
|
|
|
- center: false,
|
|
|
- station: false
|
|
|
+ center: true,
|
|
|
+ station: true
|
|
|
},
|
|
|
fan: {
|
|
|
number: false,
|
|
|
@@ -1116,8 +1116,8 @@ export default {
|
|
|
system: false
|
|
|
},
|
|
|
type: {
|
|
|
- repair: false,
|
|
|
- maintenance: false
|
|
|
+ repair: true,
|
|
|
+ maintenance: true
|
|
|
},
|
|
|
other: {
|
|
|
repairman: false,
|
|
|
@@ -1125,7 +1125,9 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
// 重置设备筛选
|
|
|
+ this.selectedFilterCombination = [];
|
|
|
this.selectedEquipment = [];
|
|
|
+ this.selectedEquipmentNodes = [];
|
|
|
this.queryParams.devices = null;
|
|
|
this.equipmentKeyword = '';
|
|
|
// 恢复原始选项
|
|
|
@@ -1135,7 +1137,8 @@ export default {
|
|
|
// 重置指标筛选
|
|
|
this.indicatorFilters = {
|
|
|
workorder: {
|
|
|
- enabled: false
|
|
|
+ workorder: true,
|
|
|
+ restartNum: false,
|
|
|
},
|
|
|
workhour: {
|
|
|
enabled: false,
|
|
|
@@ -1157,7 +1160,8 @@ export default {
|
|
|
this.selectedIndicatorCategory = null;
|
|
|
this.orderList = [];
|
|
|
// 强制更新视图
|
|
|
- this.$forceUpdate()
|
|
|
+ this.$forceUpdate();
|
|
|
+ this.handleQuery();
|
|
|
},
|
|
|
hasOrderCode() {
|
|
|
if (this.orderList.length>0) {
|