Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
dd0327ee
提交
dd0327ee
编写于
8月 02, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
权限服务调整
上级
46a85a80
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
3 行增加
和
98 行删除
+3
-98
LOGIC.vue.ftl
@LOGIC/@VIEWLOGIC/新建/LOGIC.vue.ftl
+1
-1
%DE_PKGPATH%-auth-service-base.ts.ftl
...ervice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service-base.ts.ftl
+2
-1
auth-service.ts.ftl
APP/src/app-core/auth-service/auth-service.ts.ftl
+0
-96
未找到文件。
@LOGIC/@VIEWLOGIC/新建/LOGIC.vue.ftl
浏览文件 @
dd0327ee
...
...
@@ -48,7 +48,7 @@
}
})
<#else>
this.$
Notice.warning({ title: '错误', desc: '请添加新建数据向导视图' }
);
this.$
notice.warning('请添加新建数据向导视图'
);
</#if>
<#elseif viewlogic.isEnableBatchAdd()>
this.$notice.warning('支持批添加未实现');
...
...
APP/src/app-core/auth-service/%DE_PKGPATH%/%DE_PKGPATH%-auth-service-base.ts.ftl
浏览文件 @
dd0327ee
<#ibiztemplate>
TARGET=PSAPPDATAENTITY
</#ibiztemplate>
import AuthService from '@app-core/auth-service/auth-service';
import { AuthService } from '@ibiz-core/auth-service/auth-service-base';
/**
* ${de.getLogicName()}权限服务对象基类
...
...
APP/src/app-core/auth-service/auth-service.ts.ftl
已删除
100644 → 0
浏览文件 @
46a85a80
<#ibiztemplate>
TARGET=PSSYSAPP
</#ibiztemplate>
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
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录