From c7ce4e72c6c6aae53be337a838ee65acb0079f61 Mon Sep 17 00:00:00 2001 From: mabo Date: Wed, 11 Aug 2021 21:18:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=97=E9=93=BA=E5=85=A5=E9=A9=BBbug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=8C=E8=AE=A2=E5=8D=95=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BF=AE=E6=94=B9=E9=87=91=E9=A2=9D=E5=B1=95?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../goodsDetail/ShowGoodsDetail.vue | 3 +- .../pages/home/orderCenter/ApplyAfterSale.vue | 2 +- buyer/src/pages/shopEntry/FirstApply.vue | 24 ++++++++------ buyer/src/pages/shopEntry/ShopEntry.vue | 12 ++++--- buyer/src/pages/shopEntry/ThirdApply.vue | 32 +++++++++++++++++-- manager/src/views/order/order/orderDetail.vue | 4 +++ manager/src/views/seller/shop/shopList.vue | 2 +- seller/src/styles/common.scss | 1 - seller/src/views/order/order/orderDetail.vue | 7 ++++ 9 files changed, 67 insertions(+), 20 deletions(-) diff --git a/buyer/src/components/goodsDetail/ShowGoodsDetail.vue b/buyer/src/components/goodsDetail/ShowGoodsDetail.vue index f5f560c1..45360e65 100644 --- a/buyer/src/components/goodsDetail/ShowGoodsDetail.vue +++ b/buyer/src/components/goodsDetail/ShowGoodsDetail.vue @@ -390,7 +390,8 @@ export default { margin-right: 5px; width: 50px; height: 50px; - img{width: 100%;} + overflow: hidden; + img{width: 100%;height: 100%;} } } .preview-img{ diff --git a/buyer/src/pages/home/orderCenter/ApplyAfterSale.vue b/buyer/src/pages/home/orderCenter/ApplyAfterSale.vue index d716a60d..31c5d166 100644 --- a/buyer/src/pages/home/orderCenter/ApplyAfterSale.vue +++ b/buyer/src/pages/home/orderCenter/ApplyAfterSale.vue @@ -129,7 +129,7 @@ export default { { required: true, message: '请输入银行卡号' }, { type: 'string', - pattern: /^([1-9]{1})(\d{14}|\d{18})$/, + pattern: /^[0-9]\d*$/, message: '请输入正确的银行卡号' } ], diff --git a/buyer/src/pages/shopEntry/FirstApply.vue b/buyer/src/pages/shopEntry/FirstApply.vue index 54de5383..a2d0aed8 100644 --- a/buyer/src/pages/shopEntry/FirstApply.vue +++ b/buyer/src/pages/shopEntry/FirstApply.vue @@ -9,17 +9,17 @@ placeholder="请填写公司信息" /> - + - + @@ -31,7 +31,7 @@ > - + 已定位 + + + + + + { if (res.success) this.categoryList = res.result; }); + }, + // 地址选择回显 + selectedRegion (item) { + this.$set(this.form, 'storeAddressIdPath', item[0].toString()); + this.$set( + this.form, + 'storeAddressPath', + item[1].toString().replace(/\s/g, '') + ); } }, mounted () { @@ -226,6 +253,7 @@ export default { } else { this.form.storeLogo = []; } + this.address = this.form.storeAddressIdPath; this.$forceUpdate(); } } diff --git a/manager/src/views/order/order/orderDetail.vue b/manager/src/views/order/order/orderDetail.vue index c6857371..4518c16f 100644 --- a/manager/src/views/order/order/orderDetail.vue +++ b/manager/src/views/order/order/orderDetail.vue @@ -170,6 +170,10 @@ 运费: {{ orderInfo.order.freightPrice | unitPrice('¥')}} +
  • + 修改金额: + ¥{{ orderInfo.order.priceDetailDTO.updatePrice | unitPrice }} +
  • 使用积分: {{orderInfo.order.priceDetailDTO.payPoint}} diff --git a/manager/src/views/seller/shop/shopList.vue b/manager/src/views/seller/shop/shopList.vue index 72cfa1a2..8e25b918 100644 --- a/manager/src/views/seller/shop/shopList.vue +++ b/manager/src/views/seller/shop/shopList.vue @@ -29,10 +29,10 @@ - + diff --git a/seller/src/styles/common.scss b/seller/src/styles/common.scss index a6bcadd5..f0c17d1f 100644 --- a/seller/src/styles/common.scss +++ b/seller/src/styles/common.scss @@ -1,4 +1,3 @@ -$theme_color: #804ed1; //自动移滚动条样式 diff --git a/seller/src/views/order/order/orderDetail.vue b/seller/src/views/order/order/orderDetail.vue index 84d63465..5d31fb42 100644 --- a/seller/src/views/order/order/orderDetail.vue +++ b/seller/src/views/order/order/orderDetail.vue @@ -233,6 +233,10 @@ orderInfo.order.freightPrice | unitPrice("¥") }}
  • +
  • + 修改金额: + ¥{{ orderInfo.order.priceDetailDTO.updatePrice | unitPrice }} +
  • 使用积分: {{ @@ -987,4 +991,7 @@ dl dt { } } } +.theme_color{ + color: $theme_color; +}