wujingjing
2025-01-09 373889bad788c2f61fce37f45f04ec7288d6ac81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '/@/utils/request';
 
/**
 * 维持登录状态,延长登录时间
 * @param req
 * @returns
 */
export const PingLogin = (req: any = request) => {
    return req({
        url: '/system/ping',
        method: 'POST',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};