zhangxiaoxu123
2022-07-29 e695ab97b46b6cfd984a8234bdc9de950b82e2ec
components/common/combination-card/combination-card.vue
@@ -2,7 +2,7 @@
   <!-- 组合卡片 -->
   <view class="combination-card">
      <view class="combination-card_wrapper">
         <view class="combination-card_top" v-show="showTop">
         <view class="combination-card_top" v-if="showTop">
            <view class="combination-card_top__content">
               <slot name="top"></slot>
            </view>
@@ -10,7 +10,7 @@
         <view class="combination-card_content">
            <slot name="center"></slot>
         </view>
         <view class="combination-card_bottom" v-show="showBottom">
         <view class="combination-card_bottom" v-if="showTop">
            <slot name="bottom" a="$slots.name"></slot>
         </view>
      </view>
@@ -21,10 +21,6 @@
export default {
   props: {
      showTop: {
         type: Boolean,
         default: true
      },
      showBottom: {
         type: Boolean,
         default: true
      }