Files
admin_core/src/api/system/sysTenantServer.js
张成 c73afd2325 1
2026-04-13 11:16:22 +08:00

23 lines
412 B
JavaScript

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