This commit is contained in:
Taric Xin
2022-03-07 15:35:40 +08:00
parent 7b9de7fffc
commit 916e0f9c0f
6 changed files with 19 additions and 14 deletions

View File

@ -1,6 +1,7 @@
import { Component, OnInit, ViewChild } from '@angular/core';
import { STComponent, STColumn, STChange } from '@delon/abc/st';
import { SFComponent, SFSchema } from '@delon/form';
import { SettingsService } from '@delon/theme';
import { NzModalService } from 'ng-zorro-antd/modal';
import { SystemService } from '../../services/system.service';
import { SystemStaffStaffModalComponent } from './staff-modal/staff-modal.component';
@ -35,7 +36,8 @@ export class StaffManagementComponent implements OnInit {
{
title: '最后登录时间',
index: 'lastLoginDate',
type: 'date'
type: 'date',
format: item => `${item.lastLoginDate || '-'}`
},
{
title: '成员状态',
@ -53,31 +55,31 @@ export class StaffManagementComponent implements OnInit {
{
text: '编辑',
click: item => this.staffAction(item),
acl: { ability: ['SYSTEM-STAFF-edit'] },
acl: { ability: ['SYSTEM-STAFF-edit'] }
},
{
text: '恢复',
iif: item => item.stateLocked === 1,
iif: item => item.stateLocked === 1 && item.telephone !== this.user.phone,
click: item => this.action(item, 2),
acl: { ability: ['SYSTEM-STAFF-lock'] },
acl: { ability: ['SYSTEM-STAFF-lock'] }
},
{
text: '冻结',
iif: item => item.stateLocked === 0 && item.roleCode.split(',').indexOf('Administrator') === -1,
iif: item => item.stateLocked === 0 && item.roleCode.split(',').indexOf('Administrator') === -1 && item.telephone !== this.user.phone,
click: item => this.action(item, 1),
acl: { ability: ['SYSTEM-STAFF-lock'] },
acl: { ability: ['SYSTEM-STAFF-lock'] }
},
{
text: '超管转授',
iif: item => item.stateLocked === 0 && item.roleCode.split(',').indexOf('Administrator') === -1,
click: item => this.transpowerAction(item),
acl: { ability: ['SYSTEM-STAFF-shiftAdmin'] },
acl: { ability: ['SYSTEM-STAFF-shiftAdmin'] }
},
{
text: '删除',
iif: item => item.stateLocked === 0 && item.roleCode.split(',').indexOf('Administrator') === -1,
iif: item => item.stateLocked === 0 && item.roleCode.split(',').indexOf('Administrator') === -1 && item.telephone !== this.user.phone,
click: item => this.action(item, 3),
acl: { ability: ['SYSTEM-STAFF-delete'] },
acl: { ability: ['SYSTEM-STAFF-delete'] }
}
]
}
@ -90,7 +92,9 @@ export class StaffManagementComponent implements OnInit {
2: { title: '确认恢复?', text: '恢复后用户在本系统的权限将一并重新开启。' },
3: { title: '确认删除?', text: '删除后该用户ID将在本系统中将无法登录使用并删除请谨慎操作' }
};
constructor(public service: SystemService, private nzModalService: NzModalService) {}
user = this.setting.user;
constructor(public service: SystemService, private nzModalService: NzModalService, private setting: SettingsService) {}
ngOnInit(): void {}