王飞
2025-01-23 99365608dec6eade7d645a91fb0f2205a332d1f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!--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 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<11 }}" class="bg-primeval" style="width: 90%;" bindtap='showPopup'>提交并签字</button>
<button wx:else class="bg-primeval" style="width: 90%;" bindtap='showBack'>返回</button>
</view>