1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import AuthService from '../auth-service';
/**
* 服务活动权限服务对象基类
*
* @export
* @class ServiceAppointmentAuthServiceBase
* @extends {AuthService}
*/
export default class ServiceAppointmentAuthServiceBase extends AuthService {
/**
* Creates an instance of ServiceAppointmentAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof ServiceAppointmentAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof ServiceAppointmentAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}