修改二维码

This commit is contained in:
A1300399510
2023-07-27 17:51:58 +08:00
parent 2580116fc3
commit cb2674fe48
5 changed files with 28 additions and 23 deletions

View File

@@ -1116,13 +1116,13 @@ let setHousingArr = () => {
element['type'] = 'videos'
})
imgList.value = [...imgList.value,...housingInfo['data'].info.video]
imgList.value = [...imgList.value, ...housingInfo['data'].info.video]
}
if (housingInfo['data'].info.picturegroup) {
housingInfo['data'].info.picturegroup.forEach(element => {
element['type'] = 'attachment'
})
imgList.value = [...imgList.value,...housingInfo['data'].info.picturegroup]
imgList.value = [...imgList.value, ...housingInfo['data'].info.picturegroup]
}
@@ -1141,11 +1141,11 @@ let setNavigation = () => {
// console.log(`${store.state.routeList['secondaryIndex'].path}/location/${JSON.stringify([housingInfo['data']['info'].location.substring(0, 1)])}`)
store.state.routeList['thirdIndex'] = {
path: `${store.state.routeList['secondaryIndex'].path}`,
query:{
type:'location',
query: {
type: 'location',
name: location[housingInfo['data']['info'].location.substring(0, 1)],
id: housingInfo['data']['info'].location.substring(0, 1),
types:`${type[housingInfo['data']['info'].type.substring(0, 1)]},${housingInfo['data']['info'].type}`
types: `${type[housingInfo['data']['info'].type.substring(0, 1)]},${housingInfo['data']['info'].type}`
},
title: `${location[housingInfo['data']['info'].location.substring(0, 1)]}${type[housingInfo['data']['info'].type.substring(0, 1)]}房源`
}