feat: add baidu conversion tracking (#3016)

* feat: add baidu conversion tracking

* chore
This commit is contained in:
heheer
2024-10-30 14:40:49 +08:00
committed by shilin66
parent 2c5950daad
commit ef3f0ab662
3 changed files with 9 additions and 4 deletions

View File

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