隐患记录bug修复
parent
8108ffa15a
commit
a6e3c41498
|
@ -2,16 +2,16 @@
|
|||
<view>
|
||||
<cu-custom bgColor="bg-gradual-blueness" :isBack="true">
|
||||
<block slot="backText">返回</block>
|
||||
<block slot="content">检查记录详情</block>
|
||||
<block slot="content">风险检查记录详情</block>
|
||||
</cu-custom>
|
||||
<view class="bu-title">
|
||||
检测内容
|
||||
检查内容
|
||||
</view>
|
||||
<view class="table-box" style="padding: 0 30upx;">
|
||||
<uni-table name='varlist' border stripe emptyText="暂无更多数据">
|
||||
<!-- 表头行 -->
|
||||
<uni-tr>
|
||||
<uni-th align="center" style="font-weight: bold;">检测内容</uni-th>
|
||||
<uni-th align="center" style="font-weight: bold;">检查内容</uni-th>
|
||||
<uni-th align="center" style="font-weight: bold;width:150upx">状态</uni-th>
|
||||
</uni-tr>
|
||||
<uni-tr v-for="item in varList" :key="item.RISKPOINT_ID">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<view>
|
||||
<cu-custom bgColor="bg-gradual-blueness" :isBack="true">
|
||||
<block slot="backText">返回</block>
|
||||
<block slot="content">检查记录详情</block>
|
||||
<block slot="content">隐患检查记录详情</block>
|
||||
</cu-custom>
|
||||
<view class="bu-title">
|
||||
检查内容
|
||||
|
@ -14,7 +14,7 @@
|
|||
<uni-th align="center" style="font-weight: bold;">检查内容</uni-th>
|
||||
<uni-th align="center" style="font-weight: bold;width:150upx">状态</uni-th>
|
||||
</uni-tr>
|
||||
<uni-tr v-for="item in varList" :key="item.RISKPOINT_ID">
|
||||
<uni-tr v-for="item in varList" :key="item.CHECK_ITEM">
|
||||
<uni-td>{{item.CHECK_CONTENT}}</uni-td>
|
||||
<uni-td v-if='item.ISNORMAL=="0"' align="center">
|
||||
<template v-if="item.IMGCOUNT>0">
|
||||
|
@ -205,7 +205,7 @@
|
|||
// url: '/pages/basics/hidden-perils/fill-in-case/fill-in-case-detail-view?id='+e
|
||||
// });
|
||||
uni.navigateTo({
|
||||
url: '/pages/application/hidden-danger-management/hidden-danger-record/hidden-danger-record-detail?id=' +
|
||||
url: '/pages/application/hidden-danger-management/hidden-danger-record/hidden-danger-record-standard-detail?id=' +
|
||||
e,
|
||||
});
|
||||
},
|
||||
|
|
|
@ -571,8 +571,7 @@
|
|||
data: {
|
||||
HIDDEN_ID: _this.id,
|
||||
CORPINFO_ID: loginUser.CORPINFO_ID,
|
||||
USER_ID: loginUser.USER_ID,
|
||||
OPERATION_TYPE: "1",
|
||||
USER_ID: loginUser.USER_ID
|
||||
},
|
||||
success: (res) => {
|
||||
if ("success" == res.data.result) {
|
||||
|
|
Loading…
Reference in New Issue