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.

index.wxml 559B

1 jaar geleden
123456789101112
  1. <view style="text-align: center;margin: 10px; font-weight: 700;font-size: 40rpx;">{{title}}</view>
  2. <view style="padding: 20rpx 20rpx 150rpx;">
  3. <rich-text nodes="{{content}}" space="nbsp"></rich-text>
  4. </view>
  5. <view class="footer">
  6. <view wx:if="{{total != 0}}" class="footer-button" bind:tap="toApplyFor">
  7. 我要申请 <text wx:if="{{total && total< 101}}">(名额剩余:{{total}})</text>
  8. </view>
  9. <view wx:if="{{total == 0}}" class="footer-button" style="background-color: gray;">
  10. 我要申请 <text>(名额剩余:0)</text>
  11. </view>
  12. </view>