tenant.js 181 B

12345678910
  1. import http from '@/http/api.js'
  2. // 租户
  3. export const tenantSelect= (params) => {
  4. return http.request({
  5. url: '/api/blade-system/tenant/select',
  6. method: 'GET',
  7. params
  8. })
  9. }