合伙人运营小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

message.wxml 356B

123456789
  1. <block wx:for="{{messageList}}" wx:key="id">
  2. <t-message-item id="{{item.id}}" bind:close-btn-click="handleClose" bind:link-click="handleLinkClick">
  3. <slot name="icon" slot="icon" />
  4. <slot name="content" slot="content" />
  5. <slot />
  6. <slot name="link" slot="link" />
  7. <slot name="close-btn" slot="close-btn" />
  8. </t-message-item>
  9. </block>