格式化

This commit is contained in:
zjl 2024-12-17 12:51:56 +08:00
parent 9bb4f83d87
commit 1e6e731cad

View File

@ -26,14 +26,16 @@ export function getUserInfo() {
* @description:
*/
export function register(params) {
return http.request({
return http.request(
{
url: `/register`,
method: 'POST',
params,
},
{
isTransformResponse: false,
});
},
);
}
/**