【银保app】首页轮播图跳转地址暂时写死

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2022-11-16 11:58:16 +08:00
parent 5d2e76f37f
commit e66df9ddf6

View File

@@ -479,14 +479,17 @@ export default {
touchend(data){
let dataURL = JSON.parse(data.route).extra.url
if(dataURL){
let thisRoute = dataURL.substring(dataURL.lastIndexOf("/#")+2)
let thisRoute = dataURL.slice (dataURL.lastIndexOf("/#")+2)
// let thisRoute = '/poster/posterList'
// console.log(typeof thisRoute)
// console.log(location.origin + '/#'+ thisRoute)
this.$jump({
flag: 'h5',
extra: {
url: location.origin + '/#'+ thisRoute,
url: location.origin + '/#/poster/posterList',
},
routerInfo: {
path: thisRoute,
path: '/poster/posterList',
},
})
}