Selaa lähdekoodia

change: cookie 读写限制(暂定).

peter 6 kuukautta sitten
vanhempi
commit
1cd58fd39c

+ 1 - 1
components/loginDialog.vue

@@ -496,7 +496,7 @@ export default {
 
     // 读取cookie 将用户名和密码回显到input框中
     getCookie() {
-      if (document.cookie.length > 0) {
+      if (document.cookie.length > 0 && this.$cookies.get('can-use-cookie')) {
         const arr = document.cookie.split('; ')
         for (let i = 0; i < arr.length; i++) {
           const arr2 = arr[i].split('=')

+ 2 - 2
middleware/auth.js

@@ -8,7 +8,7 @@ export default function ({store,route, req, res, redirect}) {
   let redirectURL = '/';
   var token;
   // var open_platform;
-
+console.log(req, 'req')
   // 在服务端
   if (isServer) {
       // 获取服务端cookie
@@ -34,4 +34,4 @@ export default function ({store,route, req, res, redirect}) {
       });
     redirect(redirectURL)
   }
-}
+}

+ 4 - 2
pages/design/_id.vue

@@ -111,8 +111,10 @@ export default {
   mounted(){
     this.emailForm.link=this.exportForm.Link=window.location.origin+'/3D/'+this.$route.params.id
     this.emailForm.pdf=this.exportForm.Artwork=window.location.origin+'/pdf/'+this.$route.params.id
-    this.emailForm.from=this.$cookies.get("email")
-    this.formConfig[0].selectList['1']=this.$cookies.get("email")
+    if (this.$cookies.get('can-use-cookie')) {
+      this.emailForm.from=this.$cookies.get("email")
+      this.formConfig[0].selectList['1']=this.$cookies.get("email")
+    }
   },
   methods: {
     openExportFrom() {

+ 2 - 2
pages/news/_newsName.vue

@@ -64,12 +64,12 @@ export default {
     },
   },
   async created() {
-    const paramsData = this.$cookies.get('paramsData')
+    const paramsData = this.$cookies.get('can-use-cookie') ? this.$cookies.get('paramsData') : ''
     if (paramsData) {
       this.routerParams = paramsData
     } else {
       this.routerParams = this.$route.params
-      this.$cookies.set('paramsData', this.$route.params)
+      if (this.$cookies.get('can-use-cookie')) this.$cookies.set('paramsData', this.$route.params)
     }
     await this.getArticleDetails()
     this.showMargin = true

+ 2 - 1
plugins/axios.js

@@ -1,7 +1,8 @@
 import { Message } from "element-ui";
 export default ({ $axios, store, $cookies, redirect }) => {
   $axios.onRequest((config) => {
-    const token = $cookies.get("token");
+    let token = ''
+    if ($cookies.get('can-use-cookie')) token = $cookies.get("token");
     if (token) {
       config.headers["Authorization"] = "Bearer " + token;
     }

+ 3 - 1
plugins/router.js

@@ -9,7 +9,9 @@ export default ({ app, store, redirect, $cookies }) => {
       // 并阻止当前页面的跳转
       return next(false)
     }
-    const token = $cookies.get("token");
+
+    let token = '' 
+    if ($cookies.get('can-use-cookie')) token = $cookies.get("token");
     if (token) {
       store.commit("setUserInfo", $cookies.get("user-info"));
     } else {

+ 1 - 1
store/config.js

@@ -4,7 +4,7 @@ export const state = () => ({
   export const mutations = {
     setConfigInfo(state, configInfo) {
       state.configInfo = configInfo;
-      this.$cookies.set("config-info", configInfo, { maxAge: 2592000, path: '/' });
+      if (this.$cookies.get('can-use-cookie')) this.$cookies.set("config-info", configInfo, { maxAge: 2592000, path: '/' });
     },
     getConfigInfo(state) {
       state.configInfo = this.$cookies.get("config-info");

+ 3 - 3
store/index.js

@@ -9,15 +9,15 @@ export const state = () => ({
 export const mutations = {
   setToken(state, token) {
     state.token = token;
-    this.$cookies.set("token", token, { maxAge: 2592000, path: '/' });
+    if (this.$cookies.get('can-use-cookie')) this.$cookies.set("token", token, { maxAge: 2592000, path: '/' });
   },
   getToken(state) {
-    state.token = this.$cookies.get("token");
+    if (this.$cookies.get('can-use-cookie')) state.token = this.$cookies.get("token");
   },
   setUserInfo(state, data) {
     state.userInfo = data;
     // state.email = data.email;
-    this.$cookies.set("user-info", data,  { maxAge: 2592000, path: '/' });
+    if (this.$cookies.get('can-use-cookie')) this.$cookies.set("user-info", data,  { maxAge: 2592000, path: '/' });
   },
   clearUserInfo(state) {
     state.userInfo = {};

+ 18 - 11
utils/getCookie.js

@@ -2,16 +2,23 @@ import Cookie from 'js-cookie'
 
 export default {
   //获取服务端cookie
-  getcookiesInServer:function (req) {
-    let service_cookie = {};
-    req && req.headers.cookie && req.headers.cookie.split(';').forEach(function (val) {
-      let parts = val.split('=');
-      service_cookie[parts[0].trim()] = (parts[1] || '').trim();
-    });
-    return service_cookie;
+  getcookiesInServer: function (req) {
+    console.log('get server cookie')
+    let service_cookie = {}
+    req &&
+      req.headers.cookie &&
+      req.headers.cookie.split(';').forEach(function (val) {
+        let parts = val.split('=')
+        service_cookie[parts[0].trim()] = (parts[1] || '').trim()
+      })
+    return service_cookie
   },
   //获取客户端cookie
-  getcookiesInClient:function (key) {
-    return Cookie.get(key) ? Cookie.get(key) : ''
-  }
-}
+  getcookiesInClient: function (key) {
+    if (Cookies.get('can-use-cookie')) {
+      return Cookie.get(key) || ''
+    } else {
+      return ''
+    }
+  },
+}