Преглед изворни кода

修改路由,消息跳转仅支持任务和费用报销

seyason пре 2 година
родитељ
комит
376efce3b7
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      fhKeeper/formulahousekeeper/timesheet_h5/src/views/index/index.vue

+ 3 - 1
fhKeeper/formulahousekeeper/timesheet_h5/src/views/index/index.vue

@@ -263,7 +263,9 @@
                 var href = window.location.href;
                 if (href.indexOf('path') > 0) {
                     var path = href.split('path=')[1].split('&')[0];
-                    this.$router.push(path);
+                    if (path == 'expense' || path == 'task') {
+                        this.$router.push(path);
+                    }
                 }
             },
             bindIfNessary() {