Commit 1d00b9b6 by LJM

去掉begin

parent f14a0f42
Showing with 12 additions and 12 deletions
...@@ -115,12 +115,12 @@ ...@@ -115,12 +115,12 @@
this.resetChange(); this.resetChange();
if (this.curr == 0) { if (this.curr == 0) {
//商务已回复 //商务已回复
this.searchParams.ask_customer_sw_confirm_time_begin = e.detail.value; this.searchParams.ask_customer_sw_confirm_time = e.detail.value;
this.searchParams.store_execute_time_begin = ''; this.searchParams.store_execute_time = '';
} else if (this.curr == 1) { } else if (this.curr == 1) {
//等待回复 //等待回复
this.searchParams.ask_customer_sw_confirm_time_begin = ''; this.searchParams.ask_customer_sw_confirm_time = '';
this.searchParams.store_execute_time_begin = e.detail.value; this.searchParams.store_execute_time = e.detail.value;
} }
this.date_format = e.detail.value; //显示日期字段更新 this.date_format = e.detail.value; //显示日期字段更新
this.getData(); this.getData();
...@@ -135,13 +135,13 @@ ...@@ -135,13 +135,13 @@
if (index == 0) { if (index == 0) {
//商务已回复 //商务已回复
this.searchParams.ask_customer_sw_status = 2; this.searchParams.ask_customer_sw_status = 2;
this.searchParams.ask_customer_sw_confirm_time_begin = this.date_format; this.searchParams.ask_customer_sw_confirm_time = this.date_format;
this.searchParams.store_execute_time_begin = ''; this.searchParams.store_execute_time = '';
} else if (index == 1) { } else if (index == 1) {
//等待回复 //等待回复
this.searchParams.ask_customer_sw_status = 1; this.searchParams.ask_customer_sw_status = 1;
this.searchParams.ask_customer_sw_confirm_time_begin = ''; this.searchParams.ask_customer_sw_confirm_time = '';
this.searchParams.store_execute_time_begin = this.date_format; this.searchParams.store_execute_time = this.date_format;
} }
this.getData(); this.getData();
}, },
...@@ -162,12 +162,12 @@ ...@@ -162,12 +162,12 @@
this.date_format = formattedDate; //显示日期字段更新 this.date_format = formattedDate; //显示日期字段更新
if (this.curr == 0) { if (this.curr == 0) {
//商务已回复 //商务已回复
this.searchParams.ask_customer_sw_confirm_time_begin = formattedDate; this.searchParams.ask_customer_sw_confirm_time = formattedDate;
this.searchParams.store_execute_time_begin = ''; this.searchParams.store_execute_time = '';
} else if (this.curr == 1) { } else if (this.curr == 1) {
//等待回复 //等待回复
this.searchParams.ask_customer_sw_confirm_time_begin = ''; this.searchParams.ask_customer_sw_confirm_time = '';
this.searchParams.store_execute_time_begin = formattedDate; this.searchParams.store_execute_time = formattedDate;
} }
this.getData(); this.getData();
}, },
......
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 sign in to comment