'-'
zhangwei
4 天以前 ddbf9504fc5faf6764fffa4e9263a3ad927331d8
src/api/register/index.ts
@@ -39,3 +39,19 @@
    )
  );
};
// 注册角色用户资料
export const createrExRolsInformation = (data?: object) => {
  return http.request(
    "post",
    baseUrlApi("/api/customer/createrExRolsInformation"),
    { data }
  );
};
// 获取企业类型
export const enterpriseTypes = (data?: object) => {
  return http.request("post", baseUrlApi("/api/customer/enterpriseTypes"), {
    data
  });
};