From d02fe2e48d6dff3b5f2129839e2ff6e3a39e578a Mon Sep 17 00:00:00 2001 From: dy-hu Date: Fri, 14 Jun 2024 10:32:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=9B=BD=E5=86=85=E8=B4=B8?= =?UTF-8?q?=E6=98=93=E3=80=81=E8=B7=A8=E5=A2=83=E4=BF=9D=E7=A8=8E=E3=80=81?= =?UTF-8?q?=E6=B5=B7=E5=A4=96=E7=9B=B4=E9=82=AE=E7=AD=89=E4=B8=89=E5=A4=A7?= =?UTF-8?q?=E5=BA=97=E9=93=BA=E7=B1=BB=E5=9E=8B=E4=B8=9A=E5=8A=A1=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/shop/myshop/index.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/views/shop/myshop/index.vue b/src/views/shop/myshop/index.vue index c8f99a9..38077aa 100644 --- a/src/views/shop/myshop/index.vue +++ b/src/views/shop/myshop/index.vue @@ -317,7 +317,7 @@ :disabled="disabled"> --> - + {{ $t('shop.type-value-1') }} {{ $t('shop.type-value-2') }} {{ $t('shop.type-value-3') }} @@ -611,6 +611,7 @@ export default { // 新建店铺 addbuss () { this.userState = 0 + this.localIsCross = true this.disabled = false this.newAddress = '' this.personPhone = '' @@ -620,6 +621,7 @@ export default { chargePersonName: '', // 店铺负责人 chargePersonPhone: '', // 负责人电话 shopAdress: '', // 地址 + isCross: 0, shopType: 1, // 店铺类型 shopReturn:{ returnAdress:"", @@ -840,10 +842,6 @@ export default { onShopTypeChange(e) { this.localIsCross = e === 2 this.ruleForm.isCross = e === 2 ? 1 : 0; - - console.log('onShopTypeChange-->', e) - console.log('localIsCross-->', this.localIsCross) - console.log('isCross-->', this.ruleForm.isCross) } } }