Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
ba73d4da
提交
ba73d4da
编写于
11月 08, 2022
作者:
Mosher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
79349d00
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
22 行增加
和
2 行删除
+22
-2
VIEW_CONTENT-BASE.vue.ftl
@VIEW/@MACRO/VIEW_CONTENT-BASE.vue.ftl
+1
-1
%APP_DEUILOGIC%-ui-logic-base.ts.ftl
...service/%DE_PKGPATH%/%APP_DEUILOGIC%-ui-logic-base.ts.ftl
+4
-0
ui-logic-node.txt
APP/src/uiservice/@MACRO/ui-logic-node.txt
+17
-1
未找到文件。
@VIEW/@MACRO/VIEW_CONTENT-BASE.vue.ftl
浏览文件 @
ba73d4da
...
...
@@ -408,7 +408,6 @@
const _this: any = this;
<#if view.getPSViewLayoutPanel()?? && !view.getPSViewLayoutPanel().isUseDefaultLayout()>
<#assign afterMountedBlock>
_this.isLayoutLoadding = false;
<#if view.getPSAppViewEngines()??>
_this.engineInit();
</#if>
...
...
@@ -420,6 +419,7 @@
</#if>
</#assign>
_this.initLayout().then((result: any) => {
_this.isLayoutLoadding = false;
<#assign hasLogic = false>
<#if view.getPSAppViewLogics?? && view.getPSAppViewLogics()??>
<#list view.getPSAppViewLogics() as logic>
...
...
APP/src/uiservice/%DE_PKGPATH%/%APP_DEUILOGIC%-ui-logic-base.ts.ftl
浏览文件 @
ba73d4da
...
...
@@ -164,6 +164,10 @@ export default class ${srfclassname('${item.getCodeName()}')}UILogicBase {
*/
public getCondParam(actionContext: UIActionContext, param: string, property: string) {
const resultParam = actionContext.getParam(param).getReal();
// 当不存在参数属性时,返回直接值
if (property === '') {
return resultParam;
}
if (resultParam && resultParam.hasOwnProperty(property)) {
return resultParam[property];
}
...
...
APP/src/uiservice/@MACRO/ui-logic-node.txt
浏览文件 @
ba73d4da
...
...
@@ -462,7 +462,19 @@
msgBoxParam.bind(result);
}
actionContext.bindLastReturnParam(result);
return true;
<#if logicNode.getPSDEUILogicLinks?? && logicNode.getPSDEUILogicLinks()??>
<#list logicNode.getPSDEUILogicLinks() as link>
<#if link.getDstPSDEUILogicNode?? && link.getDstPSDEUILogicNode()??>
<#if link.getPSDEUILogicLinkGroupCond?? && link.getPSDEUILogicLinkGroupCond()??>
if(<@getCond link.getPSDEUILogicLinkGroupCond() />) {
resolve(this.execute_${link.getDstPSDEUILogicNode().codeName?lower_case}_node(actionContext));
}
<#else>
resolve(this.execute_${link.getDstPSDEUILogicNode().codeName?lower_case}_node(actionContext));
</#if>
</#if>
</#list>
</#if>
<#else>
throw new Error('${logicNode.getButtonsType()}未实现');
</#if>
...
...
@@ -531,6 +543,7 @@
* @memberof ${srfclassname('${item.getCodeName()}')}UILogicBase
*/
protected async execute_${logicNode.codeName?lower_case}_node(actionContext: UIActionContext) {
<#assign needNextNode = true>
<#if logicNode.getLogicNodeType() == 'BEGIN'>
<#-- 开始节点 -->
<@beginNode logicNode/>
...
...
@@ -577,6 +590,7 @@
<#-- 调试逻辑参数节点 -->
<@debugParamNode logicNode/>
<#elseif logicNode.getLogicNodeType() == 'MSGBOX'>
<#assign needNextNode = false>
<#-- 消息弹窗节点 -->
<@msgBoxNode logicNode/>
<#elseif logicNode.getLogicNodeType() == 'RAWJSCODE'>
...
...
@@ -592,6 +606,8 @@
console.log('${logicNode.getLogicNodeType()}暂未支持');
</#if>
console.log('已完成执行 ${logicNode.name} 节点');
<#if needNextNode>
<@computeNextNode logicNode/>
</#if>
}
</#macro>
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录