You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
4.2 KiB
87 lines
4.2 KiB
<!--package/startInspection/startInspection.wxml-->
|
|
<view class="box">
|
|
<view class="titleFirst">巡检要求</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">结构物名称</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">结构物名称</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">开始时间</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">2022-12-25</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">结束时间</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">2023-01-15</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">巡检方式</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">周期巡检</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">巡检频次</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">3天一次</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">巡检人</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">巡检人</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">巡检单位</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">巡检单位</view>
|
|
</view>
|
|
<view class="txt">
|
|
<view style="float: left;font-weight: bold;">巡检点位</view>
|
|
<view style="float:left;width:70%;margin-left:40rpx;">点位A、点位B、点位C</view>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="titleFirst">巡检结果录入</view>
|
|
<block wx:for="{{dataList}}" wx:key="*this">
|
|
<view style="margin-bottom: 60rpx;">
|
|
<view class="txt" style="margin-bottom: 20rpx;">
|
|
<view style="float: left;font-weight: bold;">巡检点位</view>
|
|
<view style="float:left;width:55%;margin-left:40rpx;">点位A</view>
|
|
<view class="startBtn" bindtap="showModal">开始巡检</view>
|
|
</view>
|
|
<view class="txt" style="margin-bottom: 20rpx;">
|
|
<view style="float: left;font-weight: bold;">上次巡检日期</view>
|
|
<view style="float:left;width:55%;margin-left:40rpx;">2022-10-26</view>
|
|
</view>
|
|
<view class="txt" style="margin-bottom: 20rpx;">
|
|
<view style="float: left;font-weight: bold;">巡检人</view>
|
|
<view style="float:left;width:55%;margin-left:40rpx;">巡检人A</view>
|
|
</view>
|
|
<view class="txt" style="margin-bottom: 20rpx;">
|
|
<view style="float: left;font-weight: bold;">本次巡检日期</view>
|
|
<view style="float:left;width:55%;margin-left:40rpx;">2022-12-23</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
|
|
<view class="modal" wx:if="{{showModal}}">
|
|
<view class="popBox">
|
|
<view style="padding:20rpx 30rpx;overflow: hidden;">
|
|
<view style="float: left;">当前点位:</view>
|
|
<view style="float:left;width: 75%;">点位A</view>
|
|
</view>
|
|
<view style="padding:20rpx 30rpx;overflow: hidden;">
|
|
<view style="float: left;">当前位置:</view>
|
|
<view style="float:left;width: 75%;">点位A</view>
|
|
</view>
|
|
<radio-group style="padding:10px 15px;display:flex;justify-content: space-evenly;" bindchange="handleChangeTwo">
|
|
<radio style="color:#1979ff;" color="#1979ff" value="normal">正常</radio>
|
|
<radio style="color:#CC0000;" color="#CC0000" value="abnormal">异常</radio>
|
|
</radio-group>
|
|
<textarea style="width: 84%;margin:0 auto;border:2rpx solid #ccc;padding:20rpx;height: 120rpx;border-radius: 10rpx;" placeholder="请输入巡查详情" maxlength="-1" wx:if="{{changeTwo == 'abnormal'}}"></textarea>
|
|
<radio-group style="padding:10px 15px;display:flex;justify-content: space-evenly;" bindchange="handleChangeThree" wx:if="{{changeTwo == 'abnormal'}}">
|
|
<radio style="color:#FF9900;" color="#FF9900" value="slight">轻微</radio>
|
|
<radio style="color:#FF3300;" color="#FF3300" value="moderate">中度</radio>
|
|
<radio style="color:#990000;" color="#990000" value="severity">严重</radio>
|
|
</radio-group>
|
|
<view class="btnBox">
|
|
<view class="cancel" bindtap="bindCancel">取消</view>
|
|
<view class="submit">提交</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|