|
@@ -136,7 +136,7 @@ export default {
|
|
|
queryParams: {
|
|
|
name: "",
|
|
|
startDay: "",
|
|
|
- startTime: "",
|
|
|
+ endDay: "",
|
|
|
channelId: "",
|
|
|
status: null,
|
|
|
},
|
|
@@ -217,11 +217,11 @@ export default {
|
|
|
tardeTime(e) {
|
|
|
if (e) {
|
|
|
this.queryParams.startDay = e[0];
|
|
|
- this.queryParams.startTime = e[1];
|
|
|
+ this.queryParams.endDay = e[1];
|
|
|
this.handleQuery();
|
|
|
} else {
|
|
|
this.queryParams.startDay = "";
|
|
|
- this.queryParams.startTime = "";
|
|
|
+ this.queryParams.endDay = "";
|
|
|
this.handleQuery();
|
|
|
}
|
|
|
},
|