This commit is contained in:
xiaojunnuo
2024-09-24 02:42:08 +08:00
parent 154f627f2a
commit 92aa4a6d63
12 changed files with 169 additions and 11 deletions

View File

@@ -22,3 +22,18 @@ export async function getInstallInfo(): Promise<SysInstallInfo> {
method: "get"
});
}
export async function getSiteInfo(): Promise<SysInstallInfo> {
return await request({
url: "/basic/settings/siteInfo",
method: "get"
});
}
export async function bindUrl(data): Promise<SysInstallInfo> {
return await request({
url: "/sys/plus/bindUrl",
method: "post",
data
});
}