进度条 33.33333...%

This commit is contained in:
2023-06-27 16:42:55 +08:00
parent 376811018b
commit a018802ee9
3 changed files with 477 additions and 12 deletions

8
src/api/tenant/init.js Normal file
View File

@ -0,0 +1,8 @@
import request from "@/utils/request";
export const check = (tenantId) => {
return request({
url: `/tenant/init/check/${tenantId}`,
method: "POST",
});
};