|
|
@ -1,17 +1,17 @@ |
|
|
|
<!--subpages/safetyinspection/pages/safetyinspection/safetyinspection.wxml--> |
|
|
|
<view class="from"> |
|
|
|
<view class="prosecutors"> |
|
|
|
<view class="prosecutors" bind:tap="showPopup"> |
|
|
|
<view > |
|
|
|
<text class="prosecutors_req">*</text> |
|
|
|
<text class="prosecutors_pre">检查人员</text> |
|
|
|
<text class="prosecutors_name">张玉斌</text> |
|
|
|
<text class="prosecutors_name">{{ selectedOptions }}</text> |
|
|
|
</view> |
|
|
|
<view> |
|
|
|
<image src="../../../../images/right.png" class="prosecutors_img"></image> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="hidden"> |
|
|
|
<view class="hidden_top"> |
|
|
|
|
|
|
|
<view class="pitfall"> |
|
|
|
<view class="prosecutors"> |
|
|
|
<view> |
|
|
|
<text class="prosecutors_req">*</text> |
|
|
@ -21,22 +21,20 @@ |
|
|
|
<image src="../../../../images/right.png" class="prosecutors_img"></image> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="prosecutors_but"> |
|
|
|
<van-checkbox-group value="{{ result }}" bind:change="onCheckBox" class="prosecutors_chex"> |
|
|
|
<van-checkbox class="checkbox" name="a">1.车间一些软件设备出现生锈断裂情况严重。 </van-checkbox> |
|
|
|
<view class="checkbox1"> |
|
|
|
<van-checkbox-group value="{{ result }}" bind:change="onChange"> |
|
|
|
<van-checkbox name="a">1.车间一些软件设备出现生锈断裂情况严重</van-checkbox> |
|
|
|
<van-checkbox name="b">2.还有部分货运车辆已过年检。</van-checkbox> |
|
|
|
</van-checkbox-group> |
|
|
|
<van-cell-group> |
|
|
|
<van-field value="{{ value }}" placeholder="请输入新的隐患信息" border="{{ false }}" bind:change="onChange" class="prosecutors_group" /> |
|
|
|
</van-cell-group> |
|
|
|
</view> |
|
|
|
<view class="prosecutors_add"> |
|
|
|
<image src="../../../../images/add.png" style="width: 30rpx; height: 30rpx;"></image> |
|
|
|
<text class="text3">在添加一条</text> |
|
|
|
<view class="input1"> |
|
|
|
<input bindinput="changeNewPassword" type="password" placeholder=" 请输入"/> |
|
|
|
</view> |
|
|
|
<view class="add"> |
|
|
|
<image src="../../../../images/add.png" class="add_img"></image> |
|
|
|
<text>再添加一条</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="prosecutors"> |
|
|
|
<view> |
|
|
|
<text class="prosecutors_req">*</text> |
|
|
@ -118,3 +116,28 @@ |
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
<!--<van-popup show="{{ showPopup }}" bind:close="onClose"position="top" |
|
|
|
class="var" > |
|
|
|
<van-checkbox-group bind:change="onChange1"> |
|
|
|
<van-checkbox name="checkbox1">选项1</van-checkbox> |
|
|
|
<van-checkbox name="checkbox2">选项2</van-checkbox> |
|
|
|
<van-checkbox name="checkbox3">选项3</van-checkbox> |
|
|
|
</van-checkbox-group> |
|
|
|
<button bindtap="confirmSelection">确定</button> |
|
|
|
</van-popup>--> |
|
|
|
<van-popup |
|
|
|
show="{{ showPopup }}" |
|
|
|
closeable |
|
|
|
close-icon="close" |
|
|
|
position="bottom" |
|
|
|
custom-style="height: 50%" |
|
|
|
bind:close="onClose" |
|
|
|
> |
|
|
|
|
|
|
|
<view class="popup-content"> |
|
|
|
<van-checkbox-group value="{{selectedOptions}}" bind:change="onChange"> |
|
|
|
<van-checkbox name="{{item.name}}" bind:click="onClick" wx:for="{{arr}}">{{item.name}}</van-checkbox> |
|
|
|
</van-checkbox-group> |
|
|
|
<button bindtap="confirmSelection">确定</button> |
|
|
|
</view> |
|
|
|
</van-popup> |