From 9ce28811e94fa042adb7cabe6581b0393c6d576d Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期一, 09 十二月 2024 18:17:11 +0800
Subject: [PATCH] ll

---
 h5/pages/workOrder/detail.vue |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/h5/pages/workOrder/detail.vue b/h5/pages/workOrder/detail.vue
index 5d31a6c..f1726d3 100644
--- a/h5/pages/workOrder/detail.vue
+++ b/h5/pages/workOrder/detail.vue
@@ -10,7 +10,7 @@
 			<view class="desc">{{ info.content }}</view>
 			<view class="file_list">
 				<view class="file" v-for="(item,index) in info.fileList">
-					<image v-if="item.type == 0" :src="item.fileurlFull" mode="widthFix"></image>
+					<image v-if="item.type == 0" :src="item.fileurlFull" mode="aspectFill"></image>
 					<video v-if="item.type == 1" :src="item.fileurlFull" :controls="false"></video>
 				</view>
 			</view>
@@ -23,9 +23,9 @@
 					<view class="la">涓婃姤浜猴細</view>
 					<view class="val">{{ info.creatorName }}{{info.creatorCompany ? '-' + info.creatorCompany : ''}}</view>
 				</view>
-				<view class="line"  v-if="info.creatorPhone">
+				<view class="line"  v-if="info.creatorPhone || info.creatorMobile">
 					<view class="la">鑱旂郴鐢佃瘽锛�</view>
-					<view class="val">{{ info.creatorPhone }}</view>
+					<view class="val">{{ info.creatorMobile || info.creatorPhone }}</view>
 				</view>
 				<view class="line">
 					<view class="la">涓婃姤鏃堕棿锛�</view>
@@ -33,14 +33,14 @@
 				</view>
 				<view class="line" v-if="info.getDate">
 					<view class="la">涓婇棬鏃堕棿锛�</view>
-					<view class="val">{{ info.getDate }}</view>
+					<view class="val">{{ info.getDate.slice(0, 16) }}</view>
 				</view>
 			</view>
 			<view class="result_wrap" v-if="info.dealStatus == 2">
 				<div class="title">澶勭悊缁撴灉</div>
 				<view v-if="info.dealFileList && info.dealFileList.length > 0" class="file_list">
 					<view class="file" v-for="item in info.dealFileList">
-						<image v-if="item.type == 0" :src="item.fileurlFull" mode="widthFix"></image>
+						<image v-if="item.type == 0" :src="item.fileurlFull" mode="aspectFill"></image>
 						<video v-if="item.type == 1" :src="item.fileurlFull" :controls="false"></video>
 					</view>
 				</view>
@@ -49,7 +49,7 @@
 				</view>
 				<view class="line">
 					<view class="la">澶勭悊浜猴細</view>
-					<view class="val">{{ info.dealUserName }}</view>
+					<view class="val">{{ info.dealUserName }}{{info.dealUserCompany ? '-' + info.dealUserCompany : ''}}</view>
 				</view>
 				<view class="line">
 					<view class="la">澶勭悊鏃堕棿锛�</view>
@@ -316,7 +316,8 @@
 
 				image,
 				video {
-					width: 156rpx;
+					width: 156rpx;
+					height: 156rpx;
 				}
 			}
 		}

--
Gitblit v1.9.3