12345678910111213141516171819202122232425 |
- <view class="content">
- <view class="question flex-column" wx:if="{{ question.list }}">
- <view class="flex-justify-center">
- <text>问诊信息</text>
- </view>
- <view style="height:20rpx"></view>
- <checkbox-group bindchange="checkboxChange">
- <label class="checkbox">
- <checkbox value="{{ agree }}" color="#FA7D22" checked="{{ agree ? true : false }}" disabled="{{ agree ? true : false }}" />
- <text>{{ question.title }}</text>
- </label>
- </checkbox-group>
- <view style="height:20rpx"></view>
- <view class="flex" wx:for="{{ question.list }}" wx:key="index">
- <text style="width: 20px;">{{ index +1 }}.</text>
- <text>{{ item.content }}</text>
- </view>
- </view>
- <view style="height:20rpx"></view>
- <rich-text nodes="{{user_rules}}"></rich-text>
- </view>
- <view style="height:140rpx"></view>
- <view class="btm flex-center">
- <view class="btm-btn flex-center" bindtap="onBtn">确认提交</view>
- </view>
|