add baidu keywords (#3127)

This commit is contained in:
heheer
2024-11-12 16:44:09 +08:00
committed by GitHub
parent 2e1bf66d3d
commit 2c5f88b85f
7 changed files with 35 additions and 6 deletions

View File

@@ -31,19 +31,24 @@ export const postRegister = ({
password,
code,
inviterId,
bd_vid
bd_vid,
fastgpt_sem
}: {
username: string;
code: string;
password: string;
inviterId?: string;
bd_vid?: string;
fastgpt_sem?: {
keyword: string;
};
}) =>
POST<ResLogin>(`/proApi/support/user/account/register/emailAndPhone`, {
username,
code,
inviterId,
bd_vid,
fastgpt_sem,
password: hashStr(password)
});