From ced8d97cf73226339cfd2d43eac5f4ef12feb885 Mon Sep 17 00:00:00 2001 From: lzhizhao <790086754@qq.com> Date: Tue, 10 Jun 2025 14:33:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A2=9E=E5=8A=A0=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=EF=BC=8C=E9=9C=80=E8=A6=81=E7=AD=89=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E9=85=8D=E5=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/presale/order/index.vue | 43 +++++++++++++++++++++-- 1 file changed, 40 insertions(+), 3 deletions(-) diff --git a/src/views/modules/presale/order/index.vue b/src/views/modules/presale/order/index.vue index 47925b9..8c4dc14 100644 --- a/src/views/modules/presale/order/index.vue +++ b/src/views/modules/presale/order/index.vue @@ -22,6 +22,23 @@ + + + + + + + 查询 重置 @@ -126,11 +143,15 @@ export default { components: { viewDetails }, data() { return { + valueOne: [], formInline: { group: '', shopId: '', pageNumber: 1, - pageSize: 10 + pageSize: 10, + name: '', + beginDate: '', + endDate: '' }, statusList: [ { @@ -162,11 +183,24 @@ export default { this.formInline = { group: '0', // marketId: this.marketId, - shopId: this.shopId + shopId: this.shopId, + name: '', + beginDate: '', + endDate: '' } this.getList() }, methods: { + changeValueOne(e) { + console.log(e) + if (e) { + this.formInline.beginDate = e[0] + this.formInline.endDate = e[1] + } else { + this.formInline.beginDate = '' + this.formInline.endDate = '' + } + }, getList() { //根据店铺查询 this.$api.mer_admin @@ -183,7 +217,10 @@ export default { Reset() { this.formInline = { group: '0', - shopId: this.shopId + shopId: this.shopId, + name: '', + beginDate: '', + endDate: '' } this.getList() },