eamplan-line-auth-service-base.ts 932 字节
Newer Older
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 EAMPlanLineAuthServiceBase
 * @extends {AuthService}
 */
export default class EAMPlanLineAuthServiceBase extends AuthService {

    /**
     * Creates an instance of  EAMPlanLineAuthServiceBase.
     * 
     * @param {*} [opts={}]
     * @memberof  EAMPlanLineAuthServiceBase
     */
    constructor(opts: any = {}) {
        super(opts);
    }

    /**
     * 根据当前数据获取实体操作标识
     *
     * @param {*} mainSateOPPrivs 传入数据操作标识
     * @returns {any}
     * @memberof EAMPlanLineAuthServiceBase
     */
    public getOPPrivs(mainSateOPPrivs:any):any{
        let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
        if(mainSateOPPrivs){
            Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
        }
        return curDefaultOPPrivs;
    }

}