Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
75313f25
提交
75313f25
编写于
11月 11, 2022
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
02559cf7
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
17 行删除
+20
-17
LOGIC.vue.ftl
@LOGIC/@UIACTION/前台调用/LOGIC.vue.ftl
+3
-14
FRONT.ftl
...ACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/FRONT.ftl
+17
-3
未找到文件。
@LOGIC/@UIACTION/前台调用/LOGIC.vue.ftl
浏览文件 @
75313f25
...
@@ -31,20 +31,12 @@ ${front_block}
...
@@ -31,20 +31,12 @@ ${front_block}
<#if item.getPSAppDataEntity?? && item.getPSAppDataEntity()?? && item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic().getPSAppDataEntity()?? && item.getPSAppDataEntity().codeName == item.getPSAppDEUILogic().getPSAppDataEntity().codeName>
<#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);
return this.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, _context, _params, $event, xData, actionContext, srfParentDeName);
<#elseif item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic().getPSAppDataEntity()??>
<#elseif item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic().getPSAppDataEntity()??>
const uiService = await window.uiServiceRegister.getService('${item.getPSAppDEUILogic().getPSAppDataEntity().codeName}');
const uiService = await window.uiServiceRegister.getService('${item.getPSAppDEUILogic().getPSAppDataEntity().codeName?lower_case}');
if (uiService) {
return uiService.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, _context, _params, $event, xData, actionContext, srfParentDeName);
return uiService.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, _context, _params, $event, xData, actionContext, srfParentDeName);
}
</#if>
</#if>
<#else>
<#else>
<#-- BEGIN: 数据目标: 单项数据 -->
<#if item.getActionTarget() == 'SINGLEDATA'>
actionContext.$Notice.error({ title: '错误', desc: '不支持单项数据' });
<#-- END: 数据目标: 单项数据 -->
<#-- BEGIN: 数据目标: 多项数据 -->
<#elseif item.getActionTarget() == 'MULTIDATA'>
actionContext.$Notice.error({ title: '错误', desc: '不支持多项数据' });
<#-- END: 数据目标: 多项数据 -->
<#-- BEGIN: 数据目标: 单项数据(主键),多项数据(主键),无数据 -->
<#else>
<#-- BEGIN: 数据处理逻辑 -->
<#-- BEGIN: 数据处理逻辑 -->
let data: any = {};
let data: any = {};
let parentContext:any = {};
let parentContext:any = {};
...
@@ -595,9 +587,6 @@ ${front_block}
...
@@ -595,9 +587,6 @@ ${front_block}
</#if>
</#if>
</#if>
</#if>
<#-- END: 前台处理模式:用户自定义 -->
</#if>
<#-- END: 数据目标: 单项数据(主键),多项数据(主键),无数据 -->
</#if>
</#if>
</#if>
</#if>
}
}
...
...
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/FRONT.ftl
浏览文件 @
75313f25
...
@@ -19,10 +19,25 @@ ${front_block}
...
@@ -19,10 +19,25 @@ ${front_block}
</#if>
</#if>
*/
*/
public async ${item.getFullCodeName()}(args: any[], context: any = {}, params: any={}, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string) {
public async ${item.getFullCodeName()}(args: any[], context: any = {}, params: any={}, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string) {
<#if item.render??>
<#if item.render??>
${item.render.code}
${item.render.code}
<#else>
<#else>
<#if item.getUILogicAttachMode?? && item.getUILogicAttachMode()?? && item.getUILogicAttachMode() == 'REPLACE' && item.getPSAppDEUILogic?? && item.getPSAppDEUILogic()??>
const _context: any = Object.assign(context, actionContext.context);
const _params: any = Object.assign(params, actionContext.viewparams);
<#if item.getPSAppDataEntity?? && item.getPSAppDataEntity()?? && item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic().getPSAppDataEntity()?? && item.getPSAppDataEntity().codeName == item.getPSAppDEUILogic().getPSAppDataEntity().codeName>
const service = await window.entityServiceRegister.getService('${item.getPSAppDataEntity().getCodeName()?lower_case}');
if (service) {
return service.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, _context, _params, $event, xData, actionContext, srfParentDeName);
}
<#elseif item.getPSAppDEUILogic().getPSAppDataEntity?? && item.getPSAppDEUILogic().getPSAppDataEntity()??>
const uiService = await window.uiServiceRegister.getService('${item.getPSAppDEUILogic().getPSAppDataEntity().codeName?lower_case}');
if (uiService) {
return uiService.executeUILogic('${item.getPSAppDEUILogic().codeName}', args, _context, _params, $event, xData, actionContext, srfParentDeName);
}
</#if>
<#else>
<#-- BEGIN: 数据处理逻辑 -->
let data: any = {};
let data: any = {};
let parentContext:any = {};
let parentContext:any = {};
let parentViewParam:any = {};
let parentViewParam:any = {};
...
@@ -570,11 +585,10 @@ ${front_block}
...
@@ -570,11 +585,10 @@ ${front_block}
// 自定义实体界面行为
// 自定义实体界面行为
actionContext.$Notice.warning({ title: '错误', desc: '${item.getCaption()} 未实现' });
actionContext.$Notice.warning({ title: '错误', desc: '${item.getCaption()} 未实现' });
</#if>
</#if>
</#if>
</#if>
<#-- END: 前台处理模式:用户自定义 -->
<#-- END: 前台处理模式:用户自定义 -->
</#if>
</#if>
<#-- END: 数据目标: 单项数据(主键),多项数据(主键),无数据 --
>
</#if
>
}
}
</#if>
</#if>
</#macro>
</#macro>
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录