This commit is contained in:
张成
2026-04-13 11:16:22 +08:00
parent 75149f994f
commit c73afd2325
13 changed files with 421 additions and 30 deletions

View File

@@ -0,0 +1,22 @@
import http from '@/utils/http'
class SysTenantServer {
async list() {
return http.get('/sys_tenant/index', {})
}
async add(row) {
return http.post('/sys_tenant/add', row)
}
async edit(row) {
return http.post('/sys_tenant/edit', row)
}
async del(row) {
return http.post('/sys_tenant/del', row)
}
}
const sysTenantServer = new SysTenantServer()
export default sysTenantServer