add
yirongjin
2025-07-23 d518ecbcbc853e891c389c422d1470b028ed1dc6
1
2
3
4
5
6
7
8
9
10
11
import {request} from '../untils/request' 
 
 
export function login(data){ //登录
    return request({
        url: `/user/login`,
        method: 'post',
        contentType:'application/x-www-form-urlencoded',
        data: data
     })
}