监管端安全环保检查检查人确认 没有显示隐患数据

dev
shanao 2025-01-09 18:46:36 +08:00
parent b226670f10
commit c758656297
1 changed files with 23 additions and 23 deletions

View File

@ -96,28 +96,28 @@
<view slot="title" class="title">发现问题</view> <view slot="title" class="title">发现问题</view>
</u-cell> </u-cell>
<view class="title-none"> <view class="title-none">
<u-cell> <u-cell>
<view slot="label" style="width: 100%"> <view slot="value" style="width: 100%">
<uni-table border stripe emptyText="暂无更多数据"> <uni-table border stripe emptyText="暂无更多数据">
<uni-tr> <uni-tr>
<uni-th align="center">序号</uni-th> <uni-th align="center">序号</uni-th>
<uni-th align="center">隐患部位</uni-th> <uni-th align="center">隐患部位</uni-th>
<uni-th align="center">隐患描述</uni-th> <uni-th align="center">隐患描述</uni-th>
<uni-th align="center">操作</uni-th> <uni-th align="center">操作</uni-th>
</uni-tr> </uni-tr>
<uni-tr v-for="(item,index) in form.hiddenList" :key="item.id"> <uni-tr v-for="(item,index) in form.hiddenList" :key="item.id">
<uni-td>{{ index + 1 }}</uni-td> <uni-td>{{ index + 1 }}</uni-td>
<uni-td>{{ item.HIDDENPART_NAME ? item.HIDDENPART_NAME : item.HIDDENPART }}</uni-td> <uni-td>{{ item.HIDDENPART_NAME ? item.HIDDENPART_NAME : item.HIDDENPART }}</uni-td>
<uni-td>{{ item.HIDDENDESCR }}</uni-td> <uni-td>{{ item.HIDDENDESCR }}</uni-td>
<uni-td> <uni-td>
<view class="flex-between"> <view class="flex-between">
<u-icon name="eye-fill" @tap="showHidden(item, index)"></u-icon> <u-icon name="eye-fill" @tap="showHidden(item, index)"></u-icon>
</view> </view>
</uni-td> </uni-td>
</uni-tr> </uni-tr>
</uni-table> </uni-table>
</view> </view>
</u-cell> </u-cell>
</view> </view>
<template v-if="type === 'verify'"> <template v-if="type === 'verify'">
<u-cell> <u-cell>
@ -282,7 +282,7 @@
</template> </template>
<script> <script>
import {getSafetyenvironmentalGoEdit, setSafetyenvironmentalVerify} from "../../../api"; import {getSafetyenvironmentalGoEdit, setSafetyenvironmentalVerify} from "@/api";
import sign from "../../../components/sign/sign"; import sign from "../../../components/sign/sign";
export default { export default {