|
@@ -182,7 +182,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
// 查询时间数组
|
|
|
- dateTime: "",
|
|
|
+ dateTime: null,
|
|
|
// 充电机ID下拉列表
|
|
|
chargerArr: null,
|
|
|
// 数据列表
|
|
@@ -225,7 +225,6 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log(this,'this')
|
|
|
this.onLoadHeight();
|
|
|
this.changeWindow();
|
|
|
this.getLogModel();
|
|
@@ -278,6 +277,11 @@ export default {
|
|
|
//获取BMS日志列表
|
|
|
getrobotList() {
|
|
|
this.loading = true;
|
|
|
+ if(!this.dateTime){
|
|
|
+ this.queryParams.startTime = this.$moment().format("YYYY-MM-DD 00:00:00");
|
|
|
+ this.queryParams.endTime = this.$moment().format("YYYY-MM-DD 23:59:59");
|
|
|
+ this.dateTime=[this.queryParams.startTime,this.queryParams.endTime]
|
|
|
+ }
|
|
|
bmsList(this.queryParams).then((res) => {
|
|
|
this.datalist = res.data.list;
|
|
|
this.total = res.data.total;
|
|
@@ -315,7 +319,6 @@ export default {
|
|
|
},
|
|
|
// 搜索
|
|
|
handleQuery() {
|
|
|
- console.log(this.queryParams.sn);
|
|
|
if (this.dateTime || this.robotValue.length > 0 || this.queryParams.sn || this.queryParams.deviceNo != undefined) {
|
|
|
if (this.dateTime) {
|
|
|
this.queryParams.startTime = this.$moment(this.dateTime[0]).format(
|