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