|
@@ -35,7 +35,7 @@
|
|
|
v-if="chillerHourList.length>0"
|
|
|
:data="chillerCommand"
|
|
|
:chillerHourList="chillerHourList"
|
|
|
- :chillerCommandQ="chillerCommandQ"
|
|
|
+ :chillerCommandQ="chillerCommand"
|
|
|
></animation-box>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -59,15 +59,12 @@ export default {
|
|
|
showTodayStrategy: false,
|
|
|
tableData: [],
|
|
|
chillerCommand: {},
|
|
|
- chillerCommandQ: {},
|
|
|
chillerCount: 0,
|
|
|
chillerIsNotExecutedCount: 0,
|
|
|
today: "",
|
|
|
now: "",
|
|
|
chillerOrg: {},
|
|
|
- chillerOrgQ: {},
|
|
|
chillerHourList: [],
|
|
|
- chillerHourListQ: [],
|
|
|
idArr: []
|
|
|
};
|
|
|
},
|
|
@@ -108,18 +105,18 @@ export default {
|
|
|
: new Date(datetime).getMinutes();
|
|
|
return (this.now = hours + "" + minute);
|
|
|
},
|
|
|
- getQuickData() {
|
|
|
- let params = {
|
|
|
- getParams: {
|
|
|
- date: this.today //日期 yyyyMMdd
|
|
|
- }
|
|
|
- };
|
|
|
- queryCommand(params).then(res => {
|
|
|
- this.chillerOrgQ = res.chillerOrg;
|
|
|
- this.chillerCommandQ = res.chillerCommand;
|
|
|
- this.chillerHourListQ = res.chillerHourList;
|
|
|
- });
|
|
|
- },
|
|
|
+ // getQuickData() {
|
|
|
+ // let params = {
|
|
|
+ // getParams: {
|
|
|
+ // date: this.today //日期 yyyyMMdd
|
|
|
+ // }
|
|
|
+ // };
|
|
|
+ // queryCommand(params).then(res => {
|
|
|
+ // this.chillerOrgQ = res.chillerOrg;
|
|
|
+ // this.chillerCommandQ = res.chillerCommand;
|
|
|
+ // this.chillerHourListQ = res.chillerHourList;
|
|
|
+ // });
|
|
|
+ // },
|
|
|
getChiller() {
|
|
|
let params = {
|
|
|
getParams: {}
|
|
@@ -165,7 +162,7 @@ export default {
|
|
|
// setInterval(function(){
|
|
|
// vm.getData()
|
|
|
// },1500)
|
|
|
- this.getQuickData();
|
|
|
+ // this.getQuickData();
|
|
|
this.getChiller();
|
|
|
}
|
|
|
};
|