index.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <uni-shadow-root class="vant-card-index"><view class="custom-class van-card">
  3. <view :class="utils.bem('card__header', { center: centered })">
  4. <view class="van-card__thumb" @click="onClickThumb">
  5. <image v-if="thumb" :src="thumb" :mode="thumbMode" :lazy-load="lazyLoad" class="van-card__img thumb-class"></image>
  6. <slot name="thumb"></slot>
  7. <van-tag v-if="tag" mark type="danger" custom-class="van-card__tag">
  8. {{ tag }}
  9. </van-tag>
  10. </view>
  11. <view :class="'van-card__content '+(utils.bem('card__content', { center: centered }))">
  12. <view>
  13. <view v-if="title" class="van-card__title title-class">{{ title }}</view>
  14. <slot v-else name="title"></slot>
  15. <view v-if="desc" class="van-card__desc desc-class">{{ desc }}</view>
  16. <slot v-else name="desc"></slot>
  17. <slot name="tags"></slot>
  18. </view>
  19. <view class="van-card__bottom">
  20. <slot name="price-top"></slot>
  21. <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>
  22. <slot v-else name="price"></slot>
  23. <view v-if="originPrice || originPrice === 0" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
  24. <view v-if="num" class="van-card__num num-class">x {{ num }}</view>
  25. <slot v-else name="num"></slot>
  26. <slot name="bottom"></slot>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="van-card__footer">
  31. <slot name="footer"></slot>
  32. </view>
  33. </view></uni-shadow-root>
  34. </template>
  35. <wxs src="../wxs/utils.wxs" module="utils"></wxs>
  36. <script>
  37. import VanTag from '../tag/index.vue'
  38. global['__wxVueOptions'] = {components:{'van-tag': VanTag}}
  39. global['__wxRoute'] = 'vant/card/index'
  40. import { link } from '../mixins/link';
  41. import { VantComponent } from '../common/component';
  42. VantComponent({
  43. classes: [
  44. 'num-class',
  45. 'desc-class',
  46. 'thumb-class',
  47. 'title-class',
  48. 'price-class',
  49. 'origin-price-class',
  50. ],
  51. mixins: [link],
  52. props: {
  53. tag: String,
  54. num: String,
  55. desc: String,
  56. thumb: String,
  57. title: String,
  58. price: {
  59. type: String,
  60. observer: 'updatePrice',
  61. },
  62. centered: Boolean,
  63. lazyLoad: Boolean,
  64. thumbLink: String,
  65. originPrice: String,
  66. thumbMode: {
  67. type: String,
  68. value: 'aspectFit',
  69. },
  70. currency: {
  71. type: String,
  72. value: '¥',
  73. },
  74. },
  75. methods: {
  76. updatePrice() {
  77. const { price } = this.data;
  78. const priceArr = price.toString().split('.');
  79. this.setData({
  80. integerStr: priceArr[0],
  81. decimalStr: priceArr[1] ? `.${priceArr[1]}` : '',
  82. });
  83. },
  84. onClickThumb() {
  85. this.jumpLink('thumbLink');
  86. },
  87. },
  88. });
  89. export default global['__wxComponents']['vant/card/index']
  90. </script>
  91. <style platform="mp-weixin">
  92. @import '../common/index.css';.van-card{position:relative;box-sizing:border-box;padding:8px 16px;padding:var(--card-padding,8px 16px);font-size:12px;font-size:var(--card-font-size,12px);color:#323233;color:var(--card-text-color,#323233);background-color:#fafafa;background-color:var(--card-background-color,#fafafa)}.van-card__header{display:-webkit-flex;display:flex}.van-card__header--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-card__thumb{position:relative;-webkit-flex:none;flex:none;width:88px;width:var(--card-thumb-size,88px);height:88px;height:var(--card-thumb-size,88px);margin-right:8px;margin-right:var(--padding-xs,8px)}.van-card__thumb:empty{display:none}.van-card__img{width:100%;height:100%;border-radius:8px;border-radius:var(--border-radius-lg,8px)}.van-card__content{position:relative;display:-webkit-flex;display:flex;-webkit-flex:1;flex:1;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:space-between;justify-content:space-between;min-width:0;min-height:88px;min-height:var(--card-thumb-size,88px)}.van-card__content--center{-webkit-justify-content:center;justify-content:center}.van-card__desc,.van-card__title{word-wrap:break-word}.van-card__title{font-weight:700;line-height:16px;line-height:var(--card-title-line-height,16px)}.van-card__desc{line-height:20px;line-height:var(--card-desc-line-height,20px);color:#646566;color:var(--card-desc-color,#646566)}.van-card__bottom{line-height:20px}.van-card__price{display:inline-block;font-weight:700;color:#ee0a24;color:var(--card-price-color,#ee0a24);font-size:12px;font-size:var(--card-price-font-size,12px)}.van-card__price-integer{font-size:16px;font-size:var(--card-price-integer-font-size,16px)}.van-card__price-decimal,.van-card__price-integer{font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif;font-family:var(--card-price-font-family,Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif)}.van-card__origin-price{display:inline-block;margin-left:5px;text-decoration:line-through;font-size:10px;font-size:var(--card-origin-price-font-size,10px);color:#646566;color:var(--card-origin-price-color,#646566)}.van-card__num{float:right}.van-card__tag{position:absolute;top:2px;left:0}.van-card__footer{-webkit-flex:none;flex:none;width:100%;text-align:right}
  93. </style>