index.wxml 250 B

1234567891011
  1. <view class="msgBox">
  2. <!-- 标题和按钮 -->
  3. <view class="msgBox-title-and-but">
  4. <view class="msgBox-title">{{title}}</view>
  5. <slot name='but'></slot>
  6. </view>
  7. <!-- 内容 -->
  8. <slot name='con'>
  9. </slot>
  10. </view>