Commit ff1c2a45882d063a4fcb0c51b37d9e84c93c0443

Authored by 刘淇
1 parent 70485e64

跳转

Showing 1 changed file with 7 additions and 3 deletions
src/views/mySelf/selfNav.vue
... ... @@ -258,9 +258,13 @@ export default {
258 258 toMemu(path) {
259 259 let _token = sessionStorage.getItem("wx_Token");
260 260 if (_token) {
261   - this.$router.push({
262   - path: path
263   - });
  261 + if(path=='plateNumber'){
  262 + window.location.href = 'http://wxgzh.renniting.cn/wechatwuxi/WuXi/gzh/index.html'
  263 + }else{
  264 + this.$router.push({
  265 + path: path
  266 + })
  267 + }
264 268 } else {
265 269 this.$vux.toast.text("请先绑定手机号", "top");
266 270 this.$router.push({
... ...