exam-h5/api/user/index.js

12 lines
221 B
JavaScript
Raw Normal View History

2025-07-16 10:14:15 +08:00
import request from "../request.js"
export function info(data) {
return request({
url: `/exam/api/sys/user/info`,
method: 'post',
header: {
'Content-Type': 'application/x-www-form-urlencoded',
},
data
})
}