ming 3 lat temu
rodzic
commit
ba112d4b82

+ 1 - 1
pages/processDetailVideo/processDetailVideo.vue

@@ -50,7 +50,7 @@
 				<view class="info-content">
 					<view class="info-one-info ">
 						<text>是否误报:</text>
-						<text>{{detailMessage2.alarmStatus?'误报':'非误报'}}</text>
+						<text>{{detailMessage2.alarmStatus=='1'?'误报':'非误报'}}</text>
 					</view>
 					<view>
 						<text>处理人:</text>

+ 17 - 13
pages/siteArchive/archiveDetail/archiveDetail.vue

@@ -61,21 +61,25 @@
 				</view>
 
 				<view class="form-item  flex justify-between" v-for="(item,index) in problem_two">
-					<view class="title" style="width:60%">{{item.name}}:</view>
-					<view class="margin-right flex align-center">
-						<label class="" v-if="item.where==0">
-							<radio disabled="true" value="否" checked /><text>否</text>
-						</label>
-						
-						<label class="" v-if="item.where==2">
-							<radio disabled="true" value="其他" checked /><text>其他</text>
+					<block  v-if="item.name!=='灭火器超期'">
+						<view class="title" style="width:60%">{{item.name}}:</view>
+						<view class="margin-right flex align-center">
+							<label class="" v-if="item.where==0">
+								<radio disabled="true" value="否" checked /><text>否</text>
+							</label>
 							
-						</label>
-						<view  v-if="item.where==2&&item.describe" style="width:90rpx;margin-left:10rpx;color:#8d8080;font-size:28rpx;line-height:32rpx"> 
-						{{  item.describe}}
+							<label class="" v-if="item.where==2">
+								<radio disabled="true" value="其他" checked /><text>其他</text>
+							</label>
+							<view  v-if="item.where==2&&item.describe" style="max-width:90rpx;margin-left:10rpx;color:#8d8080;font-size:28rpx;line-height:32rpx"> 
+							{{  item.describe}}
+							</view>
+							<view @click="previewImage(item)" v-if="item.picture" style="margin-left:10rpx">
+								<image :src="item.picture" mode="aspectFit"></image>
+							</view>
 						</view>
-						
-					</view>
+					</block>
+
 				</view>