|
@@ -31,7 +31,7 @@
|
|
|
</transition-group>
|
|
|
<van-divider v-if="processList?.length >1">
|
|
|
<div @click="handleShow">
|
|
|
- <van-icon :name="stepShow ? 'arrow-down' : 'arrow-up'" />
|
|
|
+ <van-icon :name="!stepShow ? 'arrow-down' : 'arrow-up'" />
|
|
|
{{ !stepShow ? '展开' : '收起' }}
|
|
|
</div>
|
|
|
</van-divider>
|
|
@@ -58,7 +58,9 @@
|
|
|
<div class="page_top item_content" v-if="detailData.orderReceivingVo">
|
|
|
<div class="title">故障信息</div>
|
|
|
<div class="content">
|
|
|
- <div class="text">{{cameraType[detailData.repairerVo?.cameraType]}} {{detailData.repairerVo?.cameraSnCode}} {{detailData.repairerVo?.faultMsg}}</div>
|
|
|
+ <div class="text">{{cameraType[detailData.repairerVo?.cameraType]}} {{detailData.repairerVo?.cameraSnCode}}</div>
|
|
|
+ <div class="text" v-html="detailData.repairerVo?.faultMsg"></div>
|
|
|
+
|
|
|
<div class="imgList" v-if="detailData.repairerVo">
|
|
|
<img :src="imgItem" v-for="imgItem in detailData.repairerVo.faultImg" :key="imgItem" alt="" />
|
|
|
</div>
|
|
@@ -141,7 +143,7 @@ import dayjs from 'dayjs'
|
|
|
const { currentRoute } = useRouter();
|
|
|
const router = useRouter();
|
|
|
const { id } = unref(currentRoute)?.params
|
|
|
-const stepShow = ref<boolean>(true);
|
|
|
+const stepShow = ref<boolean>(false);
|
|
|
const cameraType = {
|
|
|
0:'四维看看',
|
|
|
1:'四维看见',
|
|
@@ -220,6 +222,7 @@ const goRoute = (path) => {
|
|
|
}
|
|
|
|
|
|
.imgList {
|
|
|
+ margin-top: 8px;
|
|
|
img {
|
|
|
height: 64px;
|
|
|
width: 64px;
|