tableStatus.wxml 664 B

12345678910111213141516
  1. <popup show="{{show}}" opacity='3' bindclose="closeTip">
  2. <view class="content {{theam}}">
  3. <view class="status_pic">
  4. <view class="bgColor">
  5. <view class="bgcolor_inset"></view>
  6. <image src="{{info.imgsrc}}" mode="widthFix"></image>
  7. </view>
  8. </view>
  9. <view class="status_art">{{info.art}}</view>
  10. <view class="btn">
  11. <button type="warn" bindtap="{{(status==0 || status ==3)?'getMoreChange':'closePopup'}}">{{(status==0 || status ==3)?'获取更多机会':'确定'}}</button>
  12. <view bindtap="closePopup" wx:if="{{status==0 || status ==3}}">{{status==0?'关闭':'暂不获取'}}</view>
  13. </view>
  14. </view>
  15. </popup>