easypay-app/api/myapi.js

18 lines
378 B
JavaScript
Raw Normal View History

2024-01-18 22:27:33 +08:00
import request from "@/utils/myrequest.js";
// 保存用户身份信息
export function getInformation() {
return request.post('api/admin/user/identity/save', {}, {
noAuth: true
});
}
2024-01-23 17:17:47 +08:00
// 查询用户是否已经保存过信息
export function getidentity(data) {
2024-02-27 15:35:03 +08:00
console.log(data,'datadata');
2024-01-23 17:17:47 +08:00
return request.get('api/front/identity/info', data, {
noAuth: true
});
}