wujingjing
2025-02-10 23a0802841eb14b2c007f6f4b495194d2d920750
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',
        },
    });
};