修复bug
parent
3b7499eb40
commit
426c561104
|
@ -422,6 +422,68 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="(pd.SOURCE === '4' || pd.SOURCE === '5') && pd.FINAL_CHECK" class="wui-form-list">
|
||||
<view class="wui-sub-title">
|
||||
<text>安全环保验收信息</text>
|
||||
</view>
|
||||
<view class="cu-form-group">
|
||||
<view class="title">
|
||||
<text>验收描述</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>{{pd.FINAL_CHECKDESCR}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-form-group">
|
||||
<view class="title">
|
||||
<text>是否合格</text>
|
||||
</view>
|
||||
<view>
|
||||
<text v-if="pd.FINAL_CHECK">是</text>
|
||||
<text v-else-if="pd.FINAL_CHECK=='2'">否</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-form-group">
|
||||
<view class="title">
|
||||
<text>验收部门</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>{{pd.FINAL_CHECKOR_NDEPTNAME}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-form-group">
|
||||
<view class="title">
|
||||
<text>验收人</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>{{pd.FINAL_CHECKOR_NAME}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-form-group">
|
||||
<view class="title">
|
||||
<text>验收时间</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>{{pd.FINAL_CHECKTIME}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-form-textarea">
|
||||
<view class="title">
|
||||
<text>整改后图片</text>
|
||||
</view>
|
||||
<view class="cu-form-p">
|
||||
<scroll-view scroll-x class="bg-white nav" scroll-with-animation>
|
||||
<view class="cu-item" v-for="(item,index) in files6" v-bind:key="index">
|
||||
<view class="imgs">
|
||||
<image :src="baseImgPath+item.FILEPATH" :data-index="index" @click="ViewShowImage2"
|
||||
mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="cu-tabbar-height"></view>
|
||||
</scroll-view>
|
||||
|
@ -466,6 +528,7 @@
|
|||
files3: [],
|
||||
files4: [],
|
||||
files5: [],
|
||||
files6: [],
|
||||
videoList: [],
|
||||
checkList: [],
|
||||
CHECKDESCR: '',
|
||||
|
@ -527,6 +590,7 @@
|
|||
//_this.files3 = res.data.cImgs;
|
||||
_this.files4 = res.data.sImgs;
|
||||
_this.files5 = res.data.pImgs;
|
||||
_this.files6 = res.data.yImgs;
|
||||
_this.checkList = res.data.checkList;
|
||||
} else if ("exception" == data.result) {
|
||||
uni.showToast({
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<view>处罚管理</view>
|
||||
</view>
|
||||
</navigator>
|
||||
<navigator class="apps-item" hover-class="none" url="/pages/application/key-project-management/AI-warning/list">
|
||||
<!-- <navigator class="apps-item" hover-class="none" url="/pages/application/key-project-management/AI-warning/list">
|
||||
<view class="imgs action">
|
||||
<image src="../../../../static/icon-apps/icon-yxkj-1.png" mode=""></image>
|
||||
<view v-if="count.AI_COUNT" class="cu-tag badge">{{count.AI_COUNT}}</view>
|
||||
|
@ -55,7 +55,7 @@
|
|||
<view class="text-semi" style="text-align: center;">
|
||||
<view>AI报警处置</view>
|
||||
</view>
|
||||
</navigator>
|
||||
</navigator> -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="cu-tabbar-height"></view>
|
||||
|
|
|
@ -435,7 +435,7 @@
|
|||
<text>是</text>
|
||||
</view>
|
||||
<view class="group">
|
||||
<radio class='radio' value="0" :checked="form.FINAL_CHECK==='0'" @click="radioCheck('0')"></radio>
|
||||
<radio class='radio' value="2" :checked="form.FINAL_CHECK==='2'" @click="radioCheck('2')"></radio>
|
||||
<text>否</text>
|
||||
</view>
|
||||
</radio-group>
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
{ ID: '', NAME: '请选择' },
|
||||
{ ID: '1', NAME: '待整改' },
|
||||
{ ID: '2', NAME: '待验收' },
|
||||
{ ID: '3', NAME: '已复查' },
|
||||
{ ID: '3', NAME: '已整改' },
|
||||
{ ID: '4', NAME: '已验收' },
|
||||
{ ID: '5', NAME: '忽略隐患' },
|
||||
{ ID: '6', NAME: '重大隐患' },
|
||||
|
|
Loading…
Reference in New Issue