From 9906987f77abf2f0669a44a877ad86ac730fdfdd Mon Sep 17 00:00:00 2001
From: 张磊磊 <201175954@qq.com>
Date: 星期二, 12 十二月 2023 12:08:01 +0800
Subject: [PATCH] 图片转换
---
xcx/robePages/safeManage/detailsHidden.vue | 24 +++++++++++++++++++++---
1 files changed, 21 insertions(+), 3 deletions(-)
diff --git a/xcx/robePages/safeManage/detailsHidden.vue b/xcx/robePages/safeManage/detailsHidden.vue
index 729f58c..7ebe76b 100644
--- a/xcx/robePages/safeManage/detailsHidden.vue
+++ b/xcx/robePages/safeManage/detailsHidden.vue
@@ -4,8 +4,8 @@
<view class="check_details_card" >
<view class="hidden_text">问题照片</view>
<view class="check_details_phone hidden_datas" v-for="(item,index) in hiddenPhone">
- <!-- <u-image :src="`https://pipe.thhy-tj.com/${item.imgPath}`" ></u-image> -->
- <u-album :urls="[`https://pipe.thhy-tj.com/${item.imgPath}`]"></u-album>
+ <!-- <u-image :src="`https://szpipe.thhy-tj.com/${item.imgPath}`" ></u-image> -->
+ <u-album :urls="[`https://szpipe.thhy-tj.com/${item.imgPath}`]"></u-album>
</view>
</view>
<view class="check_details_card">
@@ -19,6 +19,18 @@
<view class="check_details_card">
<view class="hidden_text">隐患标题</view>
<view class="hidden_datas">{{hiddenDetails.title}}</view>
+ </view>
+ <view class="check_details_card">
+ <view class="hidden_text">隐患等级</view>
+ <view class="hidden_datas">{{hiddenDetails.levelName}}</view>
+ </view>
+ <view class="check_details_card">
+ <view class="hidden_text">积分</view>
+ <view class="hidden_datas">{{hiddenDetails.integral===null?'':hiddenDetails.integral}}</view>
+ </view>
+ <view class="check_details_card">
+ <view class="hidden_text">审核状态</view>
+ <view class="hidden_datas" :class="{'goThrough':hiddenDetails.auditStatus===1,'notGoThrough':hiddenDetails.auditStatus===0}">{{hiddenDetails.auditStatusName}}</view>
</view>
</view>
</view>
@@ -59,7 +71,7 @@
padding: 15px;
.check_details_matter{
- height: calc(100vh - 112px);
+ height: calc(100vh - 80px);
background-color: #FFFFFF;
border-radius: 6px;
@@ -80,6 +92,12 @@
flex: 1;
margin-left: 15px;
}
+ .goThrough{
+ color: lawngreen;
+ }
+ .notGoThrough{
+ color: red;
+ }
}
.check_details_contents{
height: calc(100% - 460px);
--
Gitblit v1.9.3