noticePopup.wxml 730 B

1234567891011121314
  1. <popup show="{{show}}" showCloseIcon bindclose="closeTip" opacity="8">
  2. <view class="content {{theam}}">
  3. <view class="prize_pic">
  4. <image src="{{prizeInfo.item.logo}}" mode="widthFix"></image>
  5. </view>
  6. <view class="prize_name">{{prizeInfo.item.title}}</view>
  7. <view class="prize_instr">{{prizeInfo.item.mtitle}}</view>
  8. <view class="btn">
  9. <button type="warn" bindtap="{{prizeInfo.item.itemType==1 && prizeInfo.item.needMailAddress==1?'inputAddress':'tryAgain'}}">{{prizeInfo.item.itemType==1 && prizeInfo.item.needMailAddress==1?'填写地址':'再来一次'}}</button>
  10. <button type="warn" open-type="share" plain bindtap="closePopup">邀请好友参与</button>
  11. </view>
  12. </view>
  13. </popup>