Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
a4be39c5
提交
a4be39c5
编写于
7月 30, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
权限服务位置调整
上级
504b6ebb
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
93 行增加
和
0 行删除
+93
-0
%DE_PKGPATH%-auth-service-base.ts.ftl
...ervice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service-base.ts.ftl
+0
-0
%DE_PKGPATH%-auth-service.ts.ftl
...authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl
+0
-0
auth-service-register.ts.ftl
APP/src/app-core/authservice/auth-service-register.ts.ftl
+0
-0
auth-service.ts
APP/src/app-core/authservice/auth-service.ts
+93
-0
未找到文件。
APP/src/authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service-base.ts.ftl
→
APP/src/a
pp-core/a
uthservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service-base.ts.ftl
浏览文件 @
a4be39c5
文件已移动
APP/src/authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl
→
APP/src/a
pp-core/a
uthservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl
浏览文件 @
a4be39c5
文件已移动
APP/src/authservice/auth-service-register.ts.ftl
→
APP/src/a
pp-core/a
uthservice/auth-service-register.ts.ftl
浏览文件 @
a4be39c5
文件已移动
APP/src/app-core/authservice/auth-service.ts
0 → 100644
浏览文件 @
a4be39c5
import
{
Store
}
from
'vuex'
;
/**
* 实体权限服务
*
* @export
* @class AuthService
*/
export
default
class
AuthService
{
/**
* Vue 状态管理器
*
* @public
* @type {(any | null)}
* @memberof AuthService
*/
public
$store
:
Store
<
any
>
|
null
=
null
;
/**
* 默认操作符
*
* @public
* @type {(any)}
* @memberof AuthService
*/
public
defaultOPPrivs
:
any
=
{
UPDATE
:
1
,
CREATE
:
1
,
READ
:
1
,
DELETE
:
1
,
WFSTART
:
1
,
DENY
:
1
,
NONE
:
1
};
/**
* Creates an instance of AuthService.
*
* @param {*} [opts={}]
* @memberof AuthService
*/
constructor
(
opts
:
any
=
{})
{
this
.
$store
=
opts
.
$store
;
}
/**
* 获取状态管理器
*
* @returns {(any | null)}
* @memberof AuthService
*/
public
getStore
():
Store
<
any
>
|
null
{
return
this
.
$store
;
}
/**
* 获取实体权限服务
*
* @param {string} name 实体名称
* @returns {Promise<any>}
* @memberof AuthService
*/
public
getService
(
name
:
string
):
Promise
<
any
>
{
return
(
window
as
any
)[
'authServiceRegister'
].
getService
(
name
);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {string} name 实体名称
* @returns {any}
* @memberof AuthService
*/
public
getOPPrivs
(
data
:
any
):
any
{
return
null
;
}
/**
* 根据菜单项获取菜单权限
*
* @param {*} item 菜单标识
* @returns {boolean}
* @memberof AuthService
*/
public
getMenusPermission
(
item
:
any
):
boolean
{
return
true
;
}
/**
* 根据统一资源标识获取统一资源权限
*
* @param {*} tag 统一资源标识
* @returns {boolean}
* @memberof AuthService
*/
public
getResourcePermission
(
tag
:
any
):
boolean
{
return
true
;
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录