|
@@ -83,6 +83,11 @@ let router = new Router({
|
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
const loginPath = "/login/" + localStorage.getItem("domain");
|
|
|
+
|
|
|
+ if (to.path) {
|
|
|
+ window._hmt.push(["_trackPageview", to.fullPath]);
|
|
|
+ }
|
|
|
+
|
|
|
if (to.path.match(/^\/login\/.+$/)) {
|
|
|
next();
|
|
|
} else {
|