|
|
@@ -197,6 +197,10 @@ export default {
|
|
|
/** 查询优惠券领取列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
+ if (this.dateRange!=null && this.dateRange.length>0){
|
|
|
+ this.dateRange[0]=this.dateRange[0]+" 00:00:00"
|
|
|
+ this.dateRange[1]=this.dateRange[1]+" 23:59:59"
|
|
|
+ }
|
|
|
listStoreCouponIssue(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|
|
this.storeCouponIssueList = response.rows;
|
|
|
this.total = response.total;
|
|
|
@@ -235,6 +239,7 @@ export default {
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
this.resetForm("queryForm");
|
|
|
+ this.dateRange = []; // 清空日期范围选择器的值
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
// 多选框选中数据
|