mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.0.7-beta1
This commit is contained in:
parent
a0fbedc1e4
commit
44bff3b490
4
dist/card/index.js
vendored
4
dist/card/index.js
vendored
@ -7,7 +7,7 @@ VantComponent({
|
|||||||
'thumb-class',
|
'thumb-class',
|
||||||
'title-class',
|
'title-class',
|
||||||
'price-class',
|
'price-class',
|
||||||
'origin-price-class',
|
'origin-price-class'
|
||||||
],
|
],
|
||||||
mixins: [link],
|
mixins: [link],
|
||||||
props: {
|
props: {
|
||||||
@ -39,7 +39,7 @@ VantComponent({
|
|||||||
const priceArr = price.toString().split('.');
|
const priceArr = price.toString().split('.');
|
||||||
this.setData({
|
this.setData({
|
||||||
integerStr: priceArr[0],
|
integerStr: priceArr[0],
|
||||||
decimalStr: priceArr[1] ? `.${priceArr[1]}` : '',
|
decimalStr: priceArr[1] ? `.${priceArr[1]}` : ''
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onClickThumb() {
|
onClickThumb() {
|
||||||
|
2
dist/card/index.wxml
vendored
2
dist/card/index.wxml
vendored
@ -35,8 +35,10 @@
|
|||||||
<view class="van-card__bottom">
|
<view class="van-card__bottom">
|
||||||
<slot name="price-top" />
|
<slot name="price-top" />
|
||||||
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">{{ currency }}<text class="van-card__price-integer">{{ integerStr }}</text><text class="van-card__price-decimal">{{ decimalStr }}</text></view>
|
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">{{ currency }}<text class="van-card__price-integer">{{ integerStr }}</text><text class="van-card__price-decimal">{{ decimalStr }}</text></view>
|
||||||
|
<slot wx:else name="price" />
|
||||||
<view wx:if="{{ originPrice || originPrice === 0 }}" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
|
<view wx:if="{{ originPrice || originPrice === 0 }}" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
|
||||||
<view wx:if="{{ num }}" class="van-card__num num-class">x {{ num }}</view>
|
<view wx:if="{{ num }}" class="van-card__num num-class">x {{ num }}</view>
|
||||||
|
<slot wx:else name="num" />
|
||||||
<slot name="bottom" />
|
<slot name="bottom" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -9,7 +9,7 @@ component_1.VantComponent({
|
|||||||
'thumb-class',
|
'thumb-class',
|
||||||
'title-class',
|
'title-class',
|
||||||
'price-class',
|
'price-class',
|
||||||
'origin-price-class',
|
'origin-price-class'
|
||||||
],
|
],
|
||||||
mixins: [link_1.link],
|
mixins: [link_1.link],
|
||||||
props: {
|
props: {
|
||||||
@ -41,7 +41,7 @@ component_1.VantComponent({
|
|||||||
var priceArr = price.toString().split('.');
|
var priceArr = price.toString().split('.');
|
||||||
this.setData({
|
this.setData({
|
||||||
integerStr: priceArr[0],
|
integerStr: priceArr[0],
|
||||||
decimalStr: priceArr[1] ? "." + priceArr[1] : '',
|
decimalStr: priceArr[1] ? "." + priceArr[1] : ''
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onClickThumb: function () {
|
onClickThumb: function () {
|
||||||
|
@ -35,8 +35,10 @@
|
|||||||
<view class="van-card__bottom">
|
<view class="van-card__bottom">
|
||||||
<slot name="price-top" />
|
<slot name="price-top" />
|
||||||
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">{{ currency }}<text class="van-card__price-integer">{{ integerStr }}</text><text class="van-card__price-decimal">{{ decimalStr }}</text></view>
|
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">{{ currency }}<text class="van-card__price-integer">{{ integerStr }}</text><text class="van-card__price-decimal">{{ decimalStr }}</text></view>
|
||||||
|
<slot wx:else name="price" />
|
||||||
<view wx:if="{{ originPrice || originPrice === 0 }}" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
|
<view wx:if="{{ originPrice || originPrice === 0 }}" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
|
||||||
<view wx:if="{{ num }}" class="van-card__num num-class">x {{ num }}</view>
|
<view wx:if="{{ num }}" class="van-card__num num-class">x {{ num }}</view>
|
||||||
|
<slot wx:else name="num" />
|
||||||
<slot name="bottom" />
|
<slot name="bottom" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user