Your Name
2023-02-17 70da1652e00de66b54e9651639c1bf6dda88b357
src/utils/request.ts
@@ -15,11 +15,11 @@
service.interceptors.request.use(
    (config) => {
        for (let key in config.data) {
            if (config.data[key] == '' && config.data[key] !== 0) {
                config.data[key] = null;
            }
        }
        // for (let key in config.data) {
        //     if (config.data[key] == '' && config.data[key] !== 0) {
        //         config.data[key] = null;
        //     }
        // }
        if (Cookies.get('token')) {
            (<any>config.headers).common['tk'] = `${Cookies.get('token')}`;
            (<any>config.headers).common['uid'] = `${Cookies.get('uid')}`;
@@ -63,7 +63,7 @@
                    Session.clear();
                    window.location.href = '/';
                });
        } else if (response.data.code && response.data.code === 'A0215') {
        } else if (response.data.code && response.data.code === 405) {
            ElMessage.error('token失效');
            // logOut;
            useLoginApi()