提交 buyer和seller退出uuid清空bug

master
lemon橪 2021-12-30 11:16:08 +08:00
parent 1fa264b0bf
commit 2e5eefc079
4 changed files with 17 additions and 19 deletions

View File

@ -5,17 +5,10 @@
</template> </template>
<script> <script>
import {v4 as uuidv4} from 'uuid';
import storage from '@/plugins/storage';
export default { export default {
name: 'App', name: 'App',
mounted () {
let uuid = storage.getItem('uuid');
if (!uuid) {
uuid = uuidv4();
storage.setItem('uuid', uuid);
}
}
}; };
</script> </script>
<style lang="scss"> <style lang="scss">

View File

@ -5,6 +5,8 @@ import Storage from './storage';
import router from '../router/index.js'; import router from '../router/index.js';
import store from '../vuex/store'; import store from '../vuex/store';
import { handleRefreshToken } from '@/api/index'; import { handleRefreshToken } from '@/api/index';
import {v4 as uuidv4} from 'uuid';
const qs = require('qs'); const qs = require('qs');
// api地址 // api地址
export const buyerUrl = export const buyerUrl =
@ -59,7 +61,11 @@ service.interceptors.request.use(
config.loading = Spin.show(); config.loading = Spin.show();
} }
const uuid = Storage.getItem('uuid'); let uuid = Storage.getItem('uuid');
if (!uuid) {
uuid = uuidv4();
Storage.setItem('uuid', uuid);
}
config.headers['uuid'] = uuid; config.headers['uuid'] = uuid;
// 获取访问Token // 获取访问Token

View File

@ -5,15 +5,8 @@
</template> </template>
<script> <script>
import {v4 as uuidv4} from 'uuid';
export default { export default {
mounted() {
let uuid = this.getStore('uuid');
if (!uuid) {
uuid = uuidv4();
this.setStore('uuid', uuid);
}
},
}; };
</script> </script>

View File

@ -4,6 +4,7 @@ import { router } from "../router/index";
import { Message } from "view-design"; import { Message } from "view-design";
import Cookies from "js-cookie"; import Cookies from "js-cookie";
import { handleRefreshToken } from "@/api/index"; import { handleRefreshToken } from "@/api/index";
import {v4 as uuidv4} from 'uuid';
// 统一请求路径前缀 // 统一请求路径前缀
export const baseUrl = export const baseUrl =
@ -30,7 +31,12 @@ service.interceptors.request.use(
...config.params ...config.params
}; };
} }
const uuid = getStore("uuid"); let uuid = getStore("uuid");
if (!uuid) {
uuid = uuidv4();
setStore('uuid', uuid);
}
config.headers["uuid"] = uuid; config.headers["uuid"] = uuid;
return config; return config;
}, },