Browse Source

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

seyason 2 years ago
parent
commit
376efce3b7

+ 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() {