mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-05 05:38:30 +08:00
commit
d5aff2be3b
@ -125,9 +125,9 @@ public class TenantService extends BaseService{
|
||||
public Map<String,Object> queryTenantList(User loginUser, String searchVal, Integer pageNo, Integer pageSize) {
|
||||
|
||||
Map<String, Object> result = new HashMap<>(5);
|
||||
// if (checkAdmin(loginUser, result)) {
|
||||
// return result;
|
||||
// }
|
||||
if (checkAdmin(loginUser, result)) {
|
||||
return result;
|
||||
}
|
||||
|
||||
Integer count = tenantMapper.countTenantPaging(searchVal);
|
||||
|
||||
@ -269,9 +269,9 @@ public class TenantService extends BaseService{
|
||||
public Map<String, Object> queryTenantList(User loginUser) {
|
||||
|
||||
Map<String, Object> result = new HashMap<>(5);
|
||||
if (checkAdmin(loginUser, result)) {
|
||||
return result;
|
||||
}
|
||||
// if (checkAdmin(loginUser, result)) {
|
||||
// return result;
|
||||
// }
|
||||
|
||||
List<Tenant> resourceList = tenantMapper.queryAllTenant();
|
||||
result.put(Constants.DATA_LIST, resourceList);
|
||||
|
@ -45,7 +45,7 @@
|
||||
if (stateTenantAllList.length) {
|
||||
this.itemList = stateTenantAllList
|
||||
} else {
|
||||
this.store.dispatch('actions/getTenantList').then(res => {
|
||||
this.store.dispatch('security/getTenantList').then(res => {
|
||||
this.$nextTick(() => {
|
||||
this.itemList = res
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user