Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
4de18bf5
提交
4de18bf5
编写于
11月 08, 2022
作者:
Mosher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
e8e61d13
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
78 行增加
和
29 行删除
+78
-29
LOGIC.vue.ftl
@LOGIC/@UIACTION/前台调用/LOGIC.vue.ftl
+11
-2
LOGIC.vue.ftl
@LOGIC/@UIACTION/后台调用/LOGIC.vue.ftl
+11
-2
entity-service-register.ts.ftl
APP/src/service/entity-service-register.ts.ftl
+4
-4
%DE_PKGPATH%-ui-service-base.ts.ftl
...iservice/%DE_PKGPATH%/%DE_PKGPATH%-ui-service-base.ts.ftl
+44
-14
ui-logic-node.txt
APP/src/uiservice/@MACRO/ui-logic-node.txt
+4
-3
ui-service-register.ts.ftl
APP/src/uiservice/ui-service-register.ts.ftl
+4
-4
未找到文件。
@LOGIC/@UIACTION/前台调用/LOGIC.vue.ftl
浏览文件 @
4de18bf5
...
...
@@ -16,15 +16,22 @@ ${front_block}
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
<#if item.get
getPSAppDataEntity?? && item.getPSAppDataEntity()??>
<#if item.
getPSAppDataEntity?? && item.getPSAppDataEntity()??>
* @memberof ${srfclassname('${item.getPSAppDataEntity().getCodeName()}')}UIService
</#if>
</#if>
*/
public async ${item.getFullCodeName()}(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
<#if item.render??>
${item.render.code}
<#else>
<#if item.getUILogicAttachMode?? && item.getUILogicAttachMode()?? && item.getUILogicAttachMode() == 'REPLACE' && item.getPSAppDEUILogic?? && item.getPSAppDEUILogic()??>
<#if item.getPSAppDataEntity?? && item.getPSAppDataEntity()?? && item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic.getPSAppDataEntity()?? && item.getPSAppDataEntity().codeName == item.getPSAppDEUILogic.getPSAppDataEntity().codeName>
return this.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, context, params, $event, xData, actionContext, srfParentDeName);
<#elseif item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic.getPSAppDataEntity()??>
return window.uiServiceRegister.getService('${item.getPSAppDEUILogic.getPSAppDataEntity().codeName}').executeUILogic('${item.getPSAppDEUILogic().codeName}', args, context, params, $event, xData, actionContext, srfParentDeName);
</#if>
<#else>
<#-- BEGIN: 数据目标: 单项数据 -->
<#if item.getActionTarget() == 'SINGLEDATA'>
actionContext.$Notice.error({ title: '错误', desc: '不支持单项数据' });
...
...
@@ -589,6 +596,7 @@ ${front_block}
</#if>
<#-- END: 数据目标: 单项数据(主键),多项数据(主键),无数据 -->
</#if>
</#if>
}
</#if>
\ No newline at end of file
@LOGIC/@UIACTION/后台调用/LOGIC.vue.ftl
浏览文件 @
4de18bf5
...
...
@@ -16,14 +16,21 @@ ${backend_block}
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
<#if item.get
getPSAppDataEntity?? && item.getPSAppDataEntity()??>
<#if item.
getPSAppDataEntity?? && item.getPSAppDataEntity()??>
* @memberof ${srfclassname('${item.getPSAppDataEntity().getCodeName()}')}UIService
</#if>
</#if>
*/
public async ${item.getFullCodeName()}(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
<#if item.render??>
${item.render.code}
<#else>
<#if item.getUILogicAttachMode?? && item.getUILogicAttachMode()?? && item.getUILogicAttachMode() == 'REPLACE' && item.getPSAppDEUILogic?? && item.getPSAppDEUILogic()??>
<#if item.getPSAppDataEntity?? && item.getPSAppDataEntity()?? && item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic.getPSAppDataEntity()?? && item.getPSAppDataEntity().codeName == item.getPSAppDEUILogic.getPSAppDataEntity().codeName>
return this.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, context, params, $event, xData, actionContext, srfParentDeName);
<#elseif item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic.getPSAppDataEntity()??>
return window.uiServiceRegister.getService('${item.getPSAppDEUILogic.getPSAppDataEntity().codeName}').executeUILogic('${item.getPSAppDEUILogic().codeName}', args, context, params, $event, xData, actionContext, srfParentDeName);
</#if>
<#else>
<#-- BEGIN: 自定义确认 -->
<#if item.getConfirmMsg?? && item.getConfirmMsg()??>
let confirmResult:boolean = await new Promise((resolve: any, reject: any) => {
...
...
@@ -215,6 +222,7 @@ ${backend_block}
backend();
</#if>
</#if>
</#if>
</#if>
}
</#if>
\ No newline at end of file
APP/src/service/entity-service-register.ts.ftl
浏览文件 @
4de18bf5
...
...
@@ -42,11 +42,11 @@ export class EntityServiceRegister {
* @memberof EntityServiceRegister
*/
protected init(): void {
<#if app.getAllPSAppDataEntities()??>
<#list app.getAllPSAppDataEntities() as curAppEntity>
<#if app.getAllPSAppDataEntities()??>
<#list app.getAllPSAppDataEntities() as curAppEntity>
this.allEntityService.set('${curAppEntity.getCodeName()?lower_case}', () => import('@/service/${srffilepath2(curAppEntity.getCodeName())}/${srffilepath2(curAppEntity.getCodeName())}-service'));
</#list>
</#if>
</#list>
</#if>
}
/**
...
...
APP/src/uiservice/%DE_PKGPATH%/%DE_PKGPATH%-ui-service-base.ts.ftl
浏览文件 @
4de18bf5
...
...
@@ -36,6 +36,13 @@ import ${srfclassname('${appdeUIAction.getPSAppDataEntity().getCodeName()}')}Ser
</#if>
</#list>
</#if>
<#if de.getAllPSAppDEUILogics?? && de.getAllPSAppDEUILogics()??>
<#list de.getAllPSAppDEUILogics() as uiLogic>
<#if !P.exists("importService1", uiLogic.codeName, "")>
import ${srfclassname('${uiLogic.getCodeName()}')}UILogic from './${srffilepath2(uiLogic.getCodeName())}-ui-logic';
</#if>
</#list>
</#if>
<#if item.getPSAppWF()?? && item.getPSAppWF().getPSWorkflow()??>
<#assign workflow = item.getPSAppWF().getPSWorkflow()/>
<#if workflow.getPSWFDEs()??>
...
...
@@ -381,27 +388,50 @@ export default class ${srfclassname('${item.getCodeName()}')}UIServiceBase exten
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof ${srfclassname('${item.getCodeName()}')}UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof ${srfclassname('${item.getCodeName()}')}UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof ${srfclassname('${item.getCodeName()}')}UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof ${srfclassname('${item.getCodeName()}')}UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
<#if de.getAllPSAppDEUILogics?? && de.getAllPSAppDEUILogics()??>
<#list de.getAllPSAppDEUILogics() as uiLogic>
if (name === '${uiLogic.codeName}') {
${srfclassname('${uiLogic.getCodeName()}')}UILogic.getInstance().execute(args, context, params, $event, xData, actionContext, srfParentDeName);
}
</#list>
</#if>
}
}
\ No newline at end of file
APP/src/uiservice/@MACRO/ui-logic-node.txt
浏览文件 @
4de18bf5
...
...
@@ -215,7 +215,7 @@
<#if logicNode.getDstPSAppDataEntity?? && logicNode.getDstPSAppDataEntity()?? && logicNode.getDstPSAppDEAction?? && logicNode.getDstPSAppDEAction()??>
if (dstParam) {
try {
const service: any =
new ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service(
);
const service: any =
window.entityServiceRegister.getService('${logicNode.getDstPSAppDataEntity().getCodeName()?lower_case}'
);
const getTempContext = (data: any) => {
const tempContext = Util.deepCopy(actionContext.context);
if (data) {
...
...
@@ -287,8 +287,9 @@
const retParam = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
if (dstParam) {
try {
const service: any = new ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service();
const result = await service['executeAppDELogic']('${logicNode.getDstPSAppDELogic().codeName}', actionContext.context, dstParam.getReal() ? dstParam.getReal() : {});
const service: any = window.entityServiceRegister.getService('${logicNode.getDstPSAppDataEntity().getCodeName()?lower_case}');
const deLogic: ${srfclassname('${logicNode.getDstPSAppDELogic().getCodeName()}')}Logic = new ${srfclassname('${logicNode.getDstPSAppDELogic().getCodeName()}')}Logic({ context: actionContext.context, data: dstParam.getReal() ? dstParam.getReal() : {} });
const result = await deLogic.onExecute(actionContext.context, dstParam.getReal() ? dstParam.getReal() : {}, false);
if (result) {
if(retParam){
retParam.bind(result);
...
...
APP/src/uiservice/ui-service-register.ts.ftl
浏览文件 @
4de18bf5
...
...
@@ -42,11 +42,11 @@ export class UIServiceRegister {
* @memberof UIServiceRegister
*/
protected init(): void {
<#if app.getAllPSAppDataEntities()??>
<#list app.getAllPSAppDataEntities() as curAppEntity>
<#if app.getAllPSAppDataEntities()??>
<#list app.getAllPSAppDataEntities() as curAppEntity>
this.allUIService.set('${curAppEntity.getCodeName()?lower_case}', () => import('@/uiservice/${srffilepath2(curAppEntity.getCodeName())}/${srffilepath2(curAppEntity.getCodeName())}-ui-service'));
</#list>
</#if>
</#list>
</#if>
}
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录