index.vue 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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">
  12. <view v-if="title" class="van-card__title title-class">{{ title }}</view>
  13. <slot v-else name="title"></slot>
  14. <view v-if="desc" class="van-card__desc desc-class">{{ desc }}</view>
  15. <slot v-else name="desc"></slot>
  16. <slot name="tags"></slot>
  17. <view class="van-card__bottom">
  18. <view v-if="price || price === 0" class="van-card__price price-class">{{ currency }} {{ price }}</view>
  19. <view v-if="originPrice || originPrice === 0" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
  20. <view v-if="num" class="van-card__num num-class">x {{ num }}</view>
  21. <slot name="bottom"></slot>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="van-card__footer">
  26. <slot name="footer"></slot>
  27. </view>
  28. </view></uni-shadow-root>
  29. </template>
  30. <wxs src="../wxs/utils.wxs" module="utils"></wxs>
  31. <script>
  32. import VanTag from '../tag/index.vue'
  33. global['__wxVueOptions'] = {components:{'van-tag': VanTag}}
  34. global['__wxRoute'] = 'vant/card/index'
  35. import { link } from '../mixins/link';
  36. import { VantComponent } from '../common/component';
  37. VantComponent({
  38. classes: [
  39. 'num-class',
  40. 'desc-class',
  41. 'thumb-class',
  42. 'title-class',
  43. 'price-class',
  44. 'origin-price-class',
  45. ],
  46. mixins: [link],
  47. props: {
  48. tag: String,
  49. num: String,
  50. desc: String,
  51. thumb: String,
  52. title: String,
  53. price: String,
  54. centered: Boolean,
  55. lazyLoad: Boolean,
  56. thumbLink: String,
  57. originPrice: String,
  58. thumbMode: {
  59. type: String,
  60. value: 'aspectFit'
  61. },
  62. currency: {
  63. type: String,
  64. value: '¥'
  65. }
  66. },
  67. methods: {
  68. onClickThumb() {
  69. this.jumpLink('thumbLink');
  70. }
  71. }
  72. });
  73. export default global['__wxComponents']['vant/card/index']
  74. </script>
  75. <style platform="mp-weixin">
  76. @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:90px;width:var(--card-thumb-size,90px);height:90px;height:var(--card-thumb-size,90px);margin-right:8px;margin-right:var(--padding-xs,8px)}.van-card__thumb:empty{display:none}.van-card__img{width:100%;height:100%}.van-card__content{position:relative;-webkit-flex:1;flex:1;min-width:0}.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)}.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}
  77. </style>