Browse Source

sonar fixed

devlop
邓雄飞 4 years ago
parent
commit
4df91fcc2a
1 changed files with 3 additions and 1 deletions
  1. 4
      pages/client-detail/index.vue

4
pages/client-detail/index.vue

@ -134,7 +134,9 @@ export default {
go2('page-view', { title: '实名认证', url: encodeURIComponent(res) })
// #endif
// #ifdef H5
window ? (window.location.href = res) : ''
if (window) {
window.location.href = res
}
// #endif
}
})

Loading…
Cancel
Save