verify.wxml 453 B

1234567891011
  1. <view wx:if='{{check==false}}'>
  2. <icon class="icon-box-img" type="warn" size="100"></icon>
  3. <text>您没有该会议的核销权限</text>
  4. <navigator url="../index/index" open-type="switchTab">返回首页</navigator>
  5. </view>
  6. <view wx:if='{{check==true}}'>
  7. <icon class="icon-box-img" type="success" size="100"></icon>
  8. <text>核销成功</text>
  9. <navigator url="../index/index" open-type="switchTab">返回首页</navigator>
  10. </view>