mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] SubmitBar: update amount font size (#841)
This commit is contained in:
parent
c4fdf175ba
commit
814ec07820
@ -32,8 +32,13 @@
|
||||
}
|
||||
|
||||
&__price {
|
||||
padding-right: 12px;
|
||||
color: @red;
|
||||
font-size: 18px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
&__currency {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
&__button {
|
||||
|
@ -8,7 +8,7 @@ VantComponent({
|
||||
],
|
||||
|
||||
props: {
|
||||
tip: [String, Boolean],
|
||||
tip: null,
|
||||
type: Number,
|
||||
price: null,
|
||||
label: String,
|
||||
|
@ -10,7 +10,9 @@
|
||||
<view class="van-submit-bar__text">
|
||||
<block wx:if="{{ hasPrice }}">
|
||||
<text>{{ label || '合计:' }}</text>
|
||||
<text class="van-submit-bar__price price-class">{{ currency }} {{ priceStr }}</text>
|
||||
<text class="van-submit-bar__price price-class">
|
||||
<text class="van-submit-bar__currency">{{ currency }}</text> {{ priceStr }}
|
||||
</text>
|
||||
</block>
|
||||
</view>
|
||||
<van-button
|
||||
|
Loading…
x
Reference in New Issue
Block a user