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

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

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