检测流程图片
This commit is contained in:
parent
1dc7e70f73
commit
6a7aa58833
@ -103,13 +103,14 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="">
|
<view class="">
|
||||||
<view style="margin-bottom: 5px;">{{ item.content }}</view>
|
<view style="margin-bottom: 5px; box-sizing: border-box;padding-left: 10%">{{ item.content }}</view>
|
||||||
<view v-if="item.images" >
|
<view style="display: flex" v-if="item.images" >
|
||||||
<view v-for="it in item.images.split(',')">
|
<!-- <view v-for="it in item.images.split(',')">-->
|
||||||
|
|
||||||
<image :src="baseImageUrl+'/'+it" style="width: 28vw; height: 12vh; margin-right: 1vw; " ></image>
|
<!-- <image :src="baseImageUrl+'/'+it" style="width: 28vw; height: 12vh; margin-right: 1vw; " ></image>-->
|
||||||
|
|
||||||
</view>
|
<!-- </view>-->
|
||||||
|
<u-album :urls="item.imageList" style="padding-left: 40px"></u-album>
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
@ -511,7 +512,29 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.detailData = res.data
|
this.detailData = res.data
|
||||||
this.inspectionId = res.data.inspectionId
|
console.log('this.detailData',this.detailData)
|
||||||
|
this.detailData.stepInfos.forEach(item => {
|
||||||
|
// 检查 item.images 是否为有效的字符串
|
||||||
|
if (typeof item.images === 'string' && item.images.trim() !== '') {
|
||||||
|
// 将里面的images转为数组
|
||||||
|
item.images = item.images.split(',');
|
||||||
|
// 使用map方法处理每个图片路径,转换为对象格式
|
||||||
|
item.images = item.images.map(image => this.baseImageUrl + "/"+image);
|
||||||
|
|
||||||
|
// 将处理后的图片列表赋值给imageList
|
||||||
|
item.imageList = item.images;
|
||||||
|
} else {
|
||||||
|
// 如果 item.images 不是有效的字符串,设置为空数组
|
||||||
|
item.images = [];
|
||||||
|
item.imageList = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// 输出最终结果
|
||||||
|
});
|
||||||
|
console.log('图片', this.detailData);
|
||||||
|
|
||||||
|
|
||||||
|
this.inspectionId = res.data.inspectionId
|
||||||
this.isOnline = res.data.isOnline
|
this.isOnline = res.data.isOnline
|
||||||
this.orderStatus = res.data.orderStatus
|
this.orderStatus = res.data.orderStatus
|
||||||
this.payMoney = res.data.goodsPrice / 100
|
this.payMoney = res.data.goodsPrice / 100
|
||||||
@ -825,8 +848,8 @@
|
|||||||
|
|
||||||
.times {
|
.times {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
font-size: 12px;
|
font-size: 14px;
|
||||||
font-weight: 400;
|
font-weight: 600;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
margin-left: 25px;
|
margin-left: 25px;
|
||||||
}
|
}
|
||||||
@ -1073,9 +1096,9 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding-left: 10px;
|
padding-left: 6px;
|
||||||
color: #0D2E8D;
|
color: #0D2E8D;
|
||||||
font-size: 22px;
|
font-size: 40px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
v-model="value1"
|
v-model="value1"
|
||||||
mode="year-month"
|
mode="year-month"
|
||||||
@input="selectDate"
|
@input="selectDate"
|
||||||
|
@cancel="show = false"
|
||||||
></u-datetime-picker>
|
></u-datetime-picker>
|
||||||
|
|
||||||
<!-- 总提成金额 -->
|
<!-- 总提成金额 -->
|
||||||
|
Loading…
Reference in New Issue
Block a user