From d5750cfb51e81cd5e6d7e76226b5ff76150b1302 Mon Sep 17 00:00:00 2001 From: wuhui_zzw <1760308791@qq.com> Date: Thu, 25 Apr 2024 17:43:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=EF=BC=9A=E5=95=86=E6=88=B7?= =?UTF-8?q?=E5=88=86=E7=B1=BB=E5=A2=9E=E5=8A=A0=E5=9F=8E=E5=B8=82=E4=BC=9A?= =?UTF-8?q?=E5=AE=A2=E5=8E=85=EF=BC=8C=E5=B9=B6=E4=B8=94=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E7=AE=A1=E7=90=86=E5=8A=9F=E8=83=BD=20?= =?UTF-8?q?=E4=BC=98=E5=8C=96=EF=BC=9A=E9=83=A8=E5=88=86=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E5=95=86=E6=88=B7=E5=88=97=E8=A1=A8=E4=B8=AD=E4=B8=8D=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=88=86=E7=B1=BB=E3=80=81=E7=B1=BB=E5=88=AB=E7=AD=89?= =?UTF-8?q?=E4=B8=8D=E9=9C=80=E8=A6=81=E7=9A=84=E6=90=9C=E7=B4=A2=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/merchant.js | 18 + src/views/merchant/application/hall_apply.vue | 375 +++++++++++++++++ src/views/merchant/list/hall.vue | 378 ++++++++++++++++++ .../merchant/list/handle/merEditForm.vue | 1 + src/views/merchant/list/handle/merInfo.vue | 1 + src/views/merchant/list/province.vue | 56 --- src/views/merchant/list/shop.vue | 56 --- src/views/merchant/list/smoke.vue | 56 --- src/views/merchant/list/supermarket.vue | 56 --- src/views/merchant/list/supplier.vue | 56 --- 10 files changed, 773 insertions(+), 280 deletions(-) create mode 100644 src/views/merchant/application/hall_apply.vue create mode 100644 src/views/merchant/list/hall.vue diff --git a/src/router/modules/merchant.js b/src/router/modules/merchant.js index 44ae576..ab69d30 100644 --- a/src/router/modules/merchant.js +++ b/src/router/modules/merchant.js @@ -75,6 +75,24 @@ const merchantRouter = }, component: () => import('@/views/merchant/application/smoke_apply') }, + { + path: 'hall', + name: 'hallShopList', + meta: { + title: '城市会客厅', + noCache: true + }, + component: () => import('@/views/merchant/list/hall') + }, + { + path: 'hall_apply', + name: 'hallApplyList', + meta: { + title: '入驻申请审核', + noCache: true + }, + component: () => import('@/views/merchant/application/hall_apply') + }, { path: 'supermarket', name: 'supermarketShopList', diff --git a/src/views/merchant/application/hall_apply.vue b/src/views/merchant/application/hall_apply.vue new file mode 100644 index 0000000..0150e79 --- /dev/null +++ b/src/views/merchant/application/hall_apply.vue @@ -0,0 +1,375 @@ + + + + + + + + + + {{ itemn.text }} + + + + + + {{ itemn.text }} + + + + + + + + + + + + + + + + + + + + + + {{ scope.row.applicant.nickname }} + ID:{{ scope.row.applicant.uid }} + + + + + + + + + + + + {{ scope.row.manage.nickname }} + ID:{{ scope.row.manage.uid }} + + + + + + + {{scope.row.mer_name || ''}} + + + + + + + + {{scope.row.name || ''}} + {{scope.row.phone || ''}} + + + + + + + + + + + + + 通过 + 未处理 + 未通过 + {{ scope.row.fail_msg }} + + + + + + 审核 + 备注 + 删除 + + + + + + + + + + + + + diff --git a/src/views/merchant/list/hall.vue b/src/views/merchant/list/hall.vue new file mode 100644 index 0000000..75da22b --- /dev/null +++ b/src/views/merchant/list/hall.vue @@ -0,0 +1,378 @@ + + + + + + + + + {{ itemn.text }} + + + + + + + + + + + + + + 添加城市会客厅 + + + + + + + + + + + + + + + + + + + + {{scope.row.is_margin == 1 ? '未支付' : scope.row.is_margin == 0 ? '无' : '已支付'}} + + + + + + + + + + 登录 + 编辑 + 详情 + 删除 + + + + + + + + + + + + + + + diff --git a/src/views/merchant/list/handle/merEditForm.vue b/src/views/merchant/list/handle/merEditForm.vue index 1d8f220..f0697b2 100644 --- a/src/views/merchant/list/handle/merEditForm.vue +++ b/src/views/merchant/list/handle/merEditForm.vue @@ -534,6 +534,7 @@ export default { else if(this.defaultMerchantType == 3) this.mar_type_name = '烟酒店'; else if(this.defaultMerchantType == 4) this.mar_type_name = '超市'; else if(this.defaultMerchantType == 5) this.mar_type_name = '门店'; + else if(this.defaultMerchantType == 6) this.mar_type_name = '城市会客厅'; else this.mar_type_name = '商户'; diff --git a/src/views/merchant/list/handle/merInfo.vue b/src/views/merchant/list/handle/merInfo.vue index 118f973..682b6fb 100644 --- a/src/views/merchant/list/handle/merInfo.vue +++ b/src/views/merchant/list/handle/merInfo.vue @@ -272,6 +272,7 @@ export default { else if(this.defaultMerchantType == 3) this.mar_type_name = '烟酒店'; else if(this.defaultMerchantType == 4) this.mar_type_name = '超市'; else if(this.defaultMerchantType == 5) this.mar_type_name = '门店'; + else if(this.defaultMerchantType == 6) this.mar_type_name = '城市会客厅'; else this.mar_type_name = '商户'; }, deep: true diff --git a/src/views/merchant/list/province.vue b/src/views/merchant/list/province.vue index cdee5e2..e3016a7 100644 --- a/src/views/merchant/list/province.vue +++ b/src/views/merchant/list/province.vue @@ -38,62 +38,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -