This commit is contained in:
qsh
2026-02-03 11:46:59 +08:00
parent 20ab62b473
commit ec95ab4933
18 changed files with 197 additions and 967 deletions

18
src/api/system/tenant.js Normal file
View File

@@ -0,0 +1,18 @@
import request from '@/utils/request';
export const getTenantInfo = params => {
return request({
url: '/applet/xunjia/tenant/get',
method: 'get',
params
});
};
// 修改租户
export const updateTenant = data => {
return request({
url: '/applet/xunjia/tenant/update',
method: 'put',
data
});
};