<!--pages/fireSafetymeasure/fireSafetymeasure.wxml-->
|
<view style="height: 93%;">
|
<!-- <view style="height: 50%;"> -->
|
<scroll-view class="scroll" style="height: 100%;" scroll-y="true">
|
<view wx:for="{{ safetyMeasure }}" wx:key="index" wx:for-index="idx">
|
<view class="card" style="margin-top: 10px;">
|
<view wx:if="{{ item.context!=''}}" style="padding:10px;">
|
{{item.context}}
|
<view wx:if="{{idx!=14}}" style="margin-top: 30px;" >
|
<van-radio-group value="{{ item.refer }}" bind:change="onChange" direction="horizontal" disabled="{{ item.lock }}" data-index="{{idx}}">
|
<van-radio name="是">涉及</van-radio>
|
<van-radio name="否">不涉及</van-radio>
|
</van-radio-group>
|
</view>
|
</view>
|
</view>
|
</view>
|
</scroll-view>
|
|
|
<!-- <view style="padding: 140rpx 0 80rpx 0;"> -->
|
|
<!-- </view> -->
|
<!-- </view> -->
|
<button wx:if="{{locknum<20 }}" class="bg-primeval" style="width: 90%;" bindtap='showPopup'>提交并签字</button>
|
<button wx:else class="bg-primeval" style="width: 90%;" bindtap='showBack'>返回</button>
|
</view>
|