From a3ede4ccecd98b6a7f113c322b70223dbcf0f8ff Mon Sep 17 00:00:00 2001 From: hupeng Date: Thu, 6 Feb 2020 11:54:52 +0800 Subject: [PATCH] =?UTF-8?q?yshop1.9.4,=E6=96=B0=E5=A2=9E=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E6=99=AE=E9=80=9A=E4=BA=8C=E7=BB=B4=E7=A0=81=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=8F=8A=E5=85=B6=E4=BF=AE=E5=A4=8D=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E5=85=B6=E4=BB=96=E9=97=AE=E9=A2=98,=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E7=99=BB=E9=99=86=E6=BC=94=E7=A4=BA=E5=90=8E=E5=8F=B0?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E6=98=8E=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/activity/bargain/index.vue | 18 ++++--- src/views/dashboard/YshopInfo.vue | 78 ++++++++++++++++++---------- src/views/shop/user/index.vue | 27 +++++++++- 3 files changed, 86 insertions(+), 37 deletions(-) diff --git a/src/views/activity/bargain/index.vue b/src/views/activity/bargain/index.vue index 7da9b03..9585e77 100644 --- a/src/views/activity/bargain/index.vue +++ b/src/views/activity/bargain/index.vue @@ -9,16 +9,20 @@ - - + - - - + + + + + + - + - + + + + @@ -105,10 +122,16 @@ export default { data() { return { delLoading: false, + userType: '', queryTypeOptions: [ { key: 'nickname', display_name: '用户昵称' }, { key: 'phone', display_name: '手机号码' } - ] + ], + statusOptions: [ + { value: 'routine', label: '小程序' }, + { value: 'wechat', label: '公众号' }, + { value: 'H5', label: 'H5' } + ] } }, created() { @@ -142,7 +165,7 @@ export default { beforeInit() { this.url = 'api/yxUser' const sort = 'uid,desc' - this.params = { page: this.page, size: this.size, sort: sort } + this.params = { page: this.page, size: this.size, sort: sort, userType: this.userType } const query = this.query const type = query.type const value = query.value