Merge branch 'hotfix/建议书返回按钮bug' into release/0602

This commit is contained in:
tian.guangyuan
2020-06-02 16:58:22 +08:00
3 changed files with 19 additions and 2 deletions

View File

@@ -86,6 +86,12 @@ export default {
})
}
if (data.trigger == 'left_button_click') {
if(JSON.parse(localStorage.device).source == "ios"){
this.$jump({
flag: 'service'
})
return
}
this.$jump({
flag: 'home'
})

View File

@@ -125,9 +125,14 @@ export default {
methods: {
appCallBack(data) {
if (data.trigger == 'left_button_click') {
if(JSON.parse(localStorage.device).source == "ios"){
this.$jump({
flag: 'home',
extra: {}
flag: 'service'
})
return
}
this.$jump({
flag: 'home'
})
}
},

View File

@@ -203,6 +203,12 @@ export default {
methods: {
appCallBack(data) {
if (data.trigger == 'left_button_click') {
if(JSON.parse(localStorage.device).source == "ios"){
this.$jump({
flag: 'service'
})
return
}
this.$jump({
flag: 'home'
})