lsc há 3 anos atrás
pai
commit
3a3d977700
4 ficheiros alterados com 51 adições e 4 exclusões
  1. 2 0
      index.html
  2. 32 1
      src/App.vue
  3. 3 1
      src/config/config.js
  4. 14 2
      src/main.js

+ 2 - 0
index.html

@@ -5,6 +5,8 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width,initial-scale=1.0">
   <title>cocoroboblockly</title>
+    <!-- <script type="text/javascript" src="https://qzonestyle.gtimg.cn/qzone/openapi/qc_loader.js" data-appid="101882546"
+      charset="utf-8" data-redirecturi="https://fangzhen.cocorobo.cn/login" data-callback="true"></script> -->
 </head>
 <style>
   @charset "utf-8";

+ 32 - 1
src/App.vue

@@ -2,7 +2,12 @@
   <div id="app">
     <div class="head">
       <div class="logo">
-        <img style="height: 40px;margin-top: 10px;" class="left nav-icon" src="https://x.cocorobo.cn/icons/logo.png" />
+        <img
+          style="height: 40px; margin-top: 10px"
+          class="left nav-icon"
+          src="https://x.cocorobo.cn/icons/logo.png"
+          @click="goto()"
+        />
         <!-- <span
           style="
             font-size: 28px;
@@ -46,6 +51,31 @@ export default {
     window.addEventListener("beforeunload", () => {
       sessionStorage.setItem("store", JSON.stringify(this.$store.state));
     });
+    this.login();
+  },
+  methods: {
+    goto() {
+      this.$router.push("/");
+    },
+    login() {
+      console.log("1");
+      var _this = this;
+      this.ajax
+        .get(`${this.$store.state.server}getcookieuserid`)
+        .then((res) => {
+          _this.$store.commit("update", ["userId", res.data[0][0].userid]);
+          // if (res.data[0][0]) {
+          //   _this.setState({
+          //     userId: res.data[0][0].userid,
+          //   });
+          // }
+        })
+        .catch((err) => {
+          // _this.props.history.push("/login");
+          // window.alert(err.response.data)
+          window.location.href="https://edu.cocorobo.cn/course/login?type=1";
+        });
+    },
   },
 };
 </script>
@@ -77,5 +107,6 @@ body {
 }
 .logo {
   margin-left: 20px;
+  cursor: pointer;
 }
 </style>

+ 3 - 1
src/config/config.js

@@ -6,7 +6,9 @@ Vue.use(Vuex)
 const store = new Vuex.Store({
     state: {
         api: '',
-        function:''
+        function:'',
+        userId:'',
+        server: 'https://beta.api.cocorobo.cn/api/',
     },
 
     mutations: {

+ 14 - 2
src/main.js

@@ -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;// 将store实例挂在vue原型上
 Vue.prototype.ajax = ajax
-Vue.prototype.$message = Message 
+Vue.prototype.$message = Message
 
 
 /* eslint-disable no-new */
@@ -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();
 })