Commit 5ed97f6a authored by 姬鋆屾's avatar 姬鋆屾

parent eafd60a5
...@@ -30,6 +30,8 @@ export default { ...@@ -30,6 +30,8 @@ export default {
} else { } else {
delete this.query.createTimeStart; delete this.query.createTimeStart;
delete this.query.createTimeEnd; delete this.query.createTimeEnd;
delete this.query.errorTimeStart;
delete this.query.errorTimeEnd;
} }
} }
this.getData(); this.getData();
......
...@@ -352,6 +352,8 @@ export default { ...@@ -352,6 +352,8 @@ export default {
if (this.form.createTimeMonth) { if (this.form.createTimeMonth) {
this.form.createTimeStart = this.form.createTimeMonth + "-01"; this.form.createTimeStart = this.form.createTimeMonth + "-01";
this.form.createTimeEnd = this.form.createTimeMonth + "-31"; this.form.createTimeEnd = this.form.createTimeMonth + "-31";
this.form.errorTimeStart = this.form.createTimeMonth + "-01";
this.form.errorTimeEnd = this.form.createTimeMonth + "-31";
} else if (this.form.createTimeStart1 || this.form.createTimeEnd1) { } else if (this.form.createTimeStart1 || this.form.createTimeEnd1) {
this.form.createTimeStart = this.form.createTimeStart1; this.form.createTimeStart = this.form.createTimeStart1;
this.form.createTimeEnd = this.form.createTimeEnd1; this.form.createTimeEnd = this.form.createTimeEnd1;
...@@ -412,6 +414,8 @@ export default { ...@@ -412,6 +414,8 @@ export default {
} else { } else {
query.createTimeEnd = undefined; query.createTimeEnd = undefined;
query.createTimeStart = undefined; query.createTimeStart = undefined;
query.errorTimeStart = undefined;
query.errorTimeEnd = undefined;
} }
} }
console.log({ console.log({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment