|
@@ -1685,6 +1685,15 @@ const getQuoteNumber = (licenseNo, vinNo, engineNo) => {
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+/** 根据路由参数 jumpType 跳转至对应的提示项,并触发提示切换处理 */
|
|
|
|
|
+const jumpFn=()=>{
|
|
|
|
|
+ const jumpType= myRoute.query.jumpType
|
|
|
|
|
+ if(!jumpType) return
|
|
|
|
|
+ const obj=tipsList.value.find(v=>v.id===jumpType)
|
|
|
|
|
+ const index=tipsList.value.findIndex(v=>v.id===jumpType)
|
|
|
|
|
+ handleTipsIndexChange(obj,index)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
// 获取详情
|
|
// 获取详情
|
|
|
const detailData = ref<any>(null)
|
|
const detailData = ref<any>(null)
|
|
|
const initDetail = () => {
|
|
const initDetail = () => {
|
|
@@ -1746,6 +1755,8 @@ const initDetail = () => {
|
|
|
}));
|
|
}));
|
|
|
}
|
|
}
|
|
|
imageEcho(res.data.order.quoteNo)
|
|
imageEcho(res.data.order.quoteNo)
|
|
|
|
|
+
|
|
|
|
|
+ nextTick(()=>jumpFn())
|
|
|
// if (res.data.imageVoList && res.data.imageVoList.length > 0) {
|
|
// if (res.data.imageVoList && res.data.imageVoList.length > 0) {
|
|
|
// images.value = res.data.imageVoList.map(a => {
|
|
// images.value = res.data.imageVoList.map(a => {
|
|
|
// return {
|
|
// return {
|