123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <template>
- <view class="custom-class van-card">
- <view :class="utils.bem('card__header', { center: centered })">
- <view class="van-card__thumb" @tap="onClickThumb">
- <image v-if="thumb" :src="thumb" :mode="thumbMode" :lazy-load="lazyLoad" class="van-card__img thumb-class" />
- <slot name="thumb" />
- <van-tag v-if="tag" mark type="danger" custom-class="van-card__tag">
- {{ tag }}
- </van-tag>
- </view>
- <view :class="'van-card__content ' + utils.bem('card__content', { center: centered })">
- <view>
- <view v-if="title" class="van-card__title title-class">{{ title }}</view>
- <slot v-else name="title" />
- <view v-if="desc" class="van-card__desc desc-class">{{ desc }}</view>
- <slot v-else name="desc" />
- <slot name="tags" />
- </view>
- <view class="van-card__bottom">
- <slot name="price-top" />
- <view v-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 v-else name="price" />
- <view v-if="originPrice || originPrice === 0" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
- <view v-if="num" class="van-card__num num-class">x {{ num }}</view>
- <slot v-else name="num" />
- <slot name="bottom" />
- </view>
- </view>
- </view>
- <view class="van-card__footer">
- <slot name="footer" />
- </view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script>
- import { link } from '../mixins/link';
- import { VantComponent } from '../common/component';
- export default {
- data() {
- return {
- integerStr: '',
- decimalStr: ''
- };
- },
- classes: ['num-class', 'desc-class', 'thumb-class', 'title-class', 'price-class', 'origin-price-class'],
- mixins: [link],
- props: {
- tag: String,
- num: String,
- desc: String,
- thumb: String,
- title: String,
- price: {
- type: String
- },
- centered: Boolean,
- lazyLoad: Boolean,
- thumbLink: String,
- originPrice: String,
- thumbMode: {
- type: String,
- default: 'aspectFit'
- },
- currency: {
- type: String,
- default: '¥'
- }
- },
- methods: {
- updatePrice() {
- const { price } = this;
- const priceArr = price.toString().split('.');
- this.setData({
- integerStr: priceArr[0],
- decimalStr: priceArr[1] ? `.${priceArr[1]}` : ''
- });
- },
- onClickThumb() {
- this.jumpLink('thumbLink');
- }
- },
- watch: {
- price: {
- handler: function () {
- const { price } = this;
- const priceArr = price.toString().split('.');
- this.setData({
- integerStr: priceArr[0],
- decimalStr: priceArr[1] ? `.${priceArr[1]}` : ''
- });
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|