chore: code format

This commit is contained in:
xiaojunnuo
2025-06-29 14:09:09 +08:00
parent 04422a4637
commit 4fcfd089d8
644 changed files with 10845 additions and 13184 deletions
@@ -4,7 +4,7 @@ export async function PreBindUser(userId: number) {
await request({
url: "/sys/account/preBindUser",
method: "post",
data: { userId }
data: { userId },
});
}
@@ -12,7 +12,7 @@ export async function BindUser(userId: number) {
await request({
url: "/sys/account/bindUser",
method: "post",
data: { userId }
data: { userId },
});
}
@@ -20,7 +20,7 @@ export async function UnbindUser(userId: number) {
await request({
url: "/sys/account/unbindUser",
method: "post",
data: { userId }
data: { userId },
});
}
@@ -28,6 +28,6 @@ export async function UpdateLicense(data: any) {
await request({
url: "/sys/account/updateLicense",
method: "post",
data
data,
});
}