Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.wxml 559B

il y a 1 an
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>