disclaimer.wxml 965 B

12345678910111213141516171819202122232425
  1. <view class="content">
  2. <view class="question flex-column" wx:if="{{ question.list }}">
  3. <view class="flex-justify-center">
  4. <text>问诊信息</text>
  5. </view>
  6. <view style="height:20rpx"></view>
  7. <checkbox-group bindchange="checkboxChange">
  8. <label class="checkbox">
  9. <checkbox value="{{ agree }}" color="#FA7D22" checked="{{ agree ? true : false }}" disabled="{{ agree ? true : false }}" />
  10. <text>{{ question.title }}</text>
  11. </label>
  12. </checkbox-group>
  13. <view style="height:20rpx"></view>
  14. <view class="flex" wx:for="{{ question.list }}" wx:key="index">
  15. <text style="width: 20px;">{{ index +1 }}.</text>
  16. <text>{{ item.content }}</text>
  17. </view>
  18. </view>
  19. <view style="height:20rpx"></view>
  20. <rich-text nodes="{{user_rules}}"></rich-text>
  21. </view>
  22. <view style="height:140rpx"></view>
  23. <view class="btm flex-center">
  24. <view class="btm-btn flex-center" bindtap="onBtn">确认提交</view>
  25. </view>