This commit is contained in:
2023-06-13 13:40:54 +08:00
parent ead6700f2c
commit ef579def81
208 changed files with 22380 additions and 19469 deletions

View File

@ -9,11 +9,18 @@ export const updateExpert = (data) => {
});
};
// 获取用户详细信息
export function getInfo() {
return request({
url: "/app/expert/info",
method: "get",
});
}
}
export const insertClientUser = (data) => {
return request({
url: "/app/expert/insertClientUser",
method: "POST",
data,
});
};