Commit 87fd9478 authored by 姬鋆屾's avatar 姬鋆屾

推修改绩效哦管理、绩效核查和绩效申诉的时间搜索参数字段

parent d97f3b37
...@@ -458,10 +458,16 @@ export default { ...@@ -458,10 +458,16 @@ export default {
this.form.month = undefined; this.form.month = undefined;
} }
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.errorTimeStart = this.form.createTimeMonth + "-01";
this.form.errorTimeEnd = this.form.createTimeMonth + "-31"; this.form.errorTimeEnd = this.form.createTimeMonth + "-31";
this.form.reviewTimeStart = this.form.createTimeMonth + "-01";
this.form.reviewTimeEnd = this.form.createTimeMonth + "-31";
this.form.complainTimeStart = this.form.createTimeMonth + "-01";
this.form.complainTimeEnd = this.form.createTimeMonth + "-31";
this.form.goworkTimeStart = this.form.createTimeMonth + "-01";
this.form.goworkTimeEnd = 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;
......
...@@ -112,6 +112,12 @@ export default { ...@@ -112,6 +112,12 @@ export default {
processStatus: this.activeName, processStatus: this.activeName,
page: this.query.page, page: this.query.page,
size: this.query.size, size: this.query.size,
appealTimeStart: this.query.yearmonth
? this.query.yearmonth + "-01"
: "",
appealTimeEnd: this.query.yearmonth
? this.query.yearmonth + "-31"
: "",
}).then((res) => { }).then((res) => {
if (res.code == 1) { if (res.code == 1) {
this.tableData = res.data; this.tableData = res.data;
...@@ -200,9 +206,9 @@ export default { ...@@ -200,9 +206,9 @@ export default {
fuzzy: false, fuzzy: false,
}, },
{ {
name: "date", name: "yearmonth",
type: "datetime", type: "month",
label: "请选择日期", label: "请选择申诉时间",
fuzzy: false, fuzzy: false,
}, },
{ {
......
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