This commit is contained in:
pushuo 2022-08-30 10:11:56 +08:00
parent ffd688cfc6
commit f802f48299
3 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -4,7 +4,7 @@
"description": "按订单总额收取固定运费",
"type": "shipping",
"version": "v1.0.0",
"icon": "plugin/flat_shipping/image/logo.png",
"icon": "",
"author": {
"name": "成都光大网络科技有限公司",
"email": "yangjin@opencart.cn"

View File

@ -118,7 +118,7 @@
:id="'payment-method-' + index" class="form-check-input">
<img :src="payment.icon" class="img-fluid">
</div>
<div class="right">
<div class="right ms-3">
<div class="title">@{{ payment.name }}</div>
<div class="sub-title" v-html="payment.description"></div>
</div>
@ -135,9 +135,9 @@
<div class="left">
<input name="shipping" type="radio" v-model="form.shipping_method_code" :value="shipping.code"
:id="'shipping-method-' + index" class="form-check-input">
<img :src="shipping.icon" class="img-fluid">
<img :src="shipping.icon" class="img-fluid" v-if="shipping.icon">
</div>
<div class="right">
<div class="right ms-3">
<div class="title">@{{ shipping.name }}</div>
<div class="sub-title" v-html="shipping.description"></div>
</div>