|
@@ -5,14 +5,14 @@ import App from './App'
|
|
|
import router from './router'
|
|
|
import store from './config/config'
|
|
|
import ajax from './common/axios.config'
|
|
|
-import { Message } from 'element-ui'
|
|
|
+import { Message } from 'element-ui'
|
|
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
import { Form } from 'element-ui'
|
|
|
Vue.prototype.$store = store;
|
|
|
Vue.prototype.ajax = ajax
|
|
|
-Vue.prototype.$message = Message
|
|
|
+Vue.prototype.$message = Message
|
|
|
|
|
|
|
|
|
|
|
@@ -21,4 +21,16 @@ new Vue({
|
|
|
router,
|
|
|
components: { App },
|
|
|
template: '<App/>'
|
|
|
+})
|
|
|
+router.beforeEach((to, from, next) => {
|
|
|
+ console.log('1');
|
|
|
+ ajax
|
|
|
+ .get(`${store.state.server}getcookieuserid`)
|
|
|
+ .then((res) => {
|
|
|
+ store.commit("update", ["userId", res.data[0][0].userid]);
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ window.location.href = "https://edu.cocorobo.cn/course/login?type=1";
|
|
|
+ });
|
|
|
+ next();
|
|
|
})
|