dialogRoom.wxml 518 B

123456789101112131415
  1. <template name="dialogRoom">
  2. <view class="dialog" catchtouchmove="wxvoid" hidden="{{hidden}}">
  3. <view class="dialog-main">
  4. <view class="dialog-body-share">
  5. <text class="title">{{title}}</text>
  6. <text class="sub-title">{{content}}</text>
  7. <view>
  8. <image src="../../resource/brain_share_friend.png"></image>
  9. <text>{{tip}}</text>
  10. </view>
  11. <button open-type="{{share}}" bindtap='{{tap}}'>{{button}}</button>
  12. </view>
  13. </view>
  14. </view>
  15. </template>