From 6c58ec77f4a9b1da454533c0420a71c0a91a20b7 Mon Sep 17 00:00:00 2001 From: dy-hu Date: Fri, 14 Jun 2024 10:22:53 +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 | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/src/views/shop/myshop/index.vue b/src/views/shop/myshop/index.vue index 839cdb5..c8f99a9 100644 --- a/src/views/shop/myshop/index.vue +++ b/src/views/shop/myshop/index.vue @@ -167,7 +167,7 @@ : $t('shop.shopDetail') " :visible.sync="dialogVisible" - width="30%" + width="40%" center :close-on-click-modal="false" > @@ -308,14 +308,20 @@ /> - - + + + + {{ $t('shop.type-value-1') }} + {{ $t('shop.type-value-2') }} + {{ $t('shop.type-value-3') }} + ', this.ruleForm.shopLogo) }, + + 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) + } } }