Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
f2711a82
提交
f2711a82
编写于
11月 08, 2022
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新面板逻辑
上级
ed0d8389
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
20 行删除
+20
-20
VIEW_HEADER-BASE.vue.ftl
@VIEW/@MACRO/VIEW_HEADER-BASE.vue.ftl
+17
-17
VIEW_LAYOUTPANEL_LOGIC.ftl
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_LOGIC.ftl
+3
-3
未找到文件。
@VIEW/@MACRO/VIEW_HEADER-BASE.vue.ftl
浏览文件 @
f2711a82
...
...
@@ -561,13 +561,13 @@ ${P.getCtrlCode('toolbar', 'CONTROL.vue').code}
* @memberof ${srfclassname('${view.name}')}Base
*/
public panelLogic(name: string): void {
<#
-- <#
list view.getPSViewLayoutPanel().getAllPSPanelItems() as panelItem>
<#if panelItem.getPS
DEFD
GroupLogic('ITEMBLANK')??>
<#assign ITEMBLANK = panelItem.getPS
DEFD
GroupLogic('ITEMBLANK')/>
if (Object.is(name, '')<#if ITEMBLANK.getRelated
DetailNames()??><#list ITEMBLANK.getRelatedDetail
Names() as detailName> || Object.is(name, '${detailName}')</#list></#if>) {
<#list view.getPSViewLayoutPanel().getAllPSPanelItems() as panelItem>
<#if panelItem.getPS
PanelItem
GroupLogic('ITEMBLANK')??>
<#assign ITEMBLANK = panelItem.getPS
PanelItem
GroupLogic('ITEMBLANK')/>
if (Object.is(name, '')<#if ITEMBLANK.getRelated
ItemNames()??><#list ITEMBLANK.getRelatedItem
Names() as detailName> || Object.is(name, '${detailName}')</#list></#if>) {
let ret = true;
<#if ITEMBLANK.getRelated
Detail
Names()??>
<#list ITEMBLANK.getRelated
Detail
Names() as detailName>
<#if ITEMBLANK.getRelated
Item
Names()??>
<#list ITEMBLANK.getRelated
Item
Names() as detailName>
const _${detailName} = this.data.${detailName};
</#list>
</#if>
...
...
@@ -577,12 +577,12 @@ ${P.getCtrlCode('toolbar', 'CONTROL.vue').code}
this.layoutModelDetails['${panelItem.name}'].required = ret;
}
</#if>
<#if panelItem.getPS
DEFD
GroupLogic('ITEMENABLE')??>
<#assign ITEMENABLE = panelItem.getPS
DEFD
GroupLogic('ITEMENABLE')/>
if (Object.is(name, '')<#if ITEMENABLE.getRelated
DetailNames()??><#list ITEMENABLE.getRelatedDetail
Names() as detailName> || Object.is(name, '${detailName}')</#list></#if>) {
<#if panelItem.getPS
PanelItem
GroupLogic('ITEMENABLE')??>
<#assign ITEMENABLE = panelItem.getPS
PanelItem
GroupLogic('ITEMENABLE')/>
if (Object.is(name, '')<#if ITEMENABLE.getRelated
ItemNames()??><#list ITEMENABLE.getRelatedItem
Names() as detailName> || Object.is(name, '${detailName}')</#list></#if>) {
let ret = false;
<#if ITEMENABLE.getRelated
Detail
Names()??>
<#list ITEMENABLE.getRelated
Detail
Names() as detailName>
<#if ITEMENABLE.getRelated
Item
Names()??>
<#list ITEMENABLE.getRelated
Item
Names() as detailName>
const _${detailName} = this.data.${detailName};
</#list>
</#if>
...
...
@@ -592,12 +592,12 @@ ${P.getCtrlCode('toolbar', 'CONTROL.vue').code}
this.layoutModelDetails['${panelItem.name}'].disabled = !ret;
}
</#if>
<#if panelItem.getPS
DEFD
GroupLogic('PANELVISIBLE')??>
<#assign PANELVISIBLE = panelItem.getPS
DEFD
GroupLogic('PANELVISIBLE')/>
if (Object.is(name, '')<#if PANELVISIBLE.getRelated
DetailNames()??><#list PANELVISIBLE.getRelatedDetail
Names() as detailName> || Object.is(name, '${detailName}')</#list></#if>) {
<#if panelItem.getPS
PanelItem
GroupLogic('PANELVISIBLE')??>
<#assign PANELVISIBLE = panelItem.getPS
PanelItem
GroupLogic('PANELVISIBLE')/>
if (Object.is(name, '')<#if PANELVISIBLE.getRelated
ItemNames()??><#list PANELVISIBLE.getRelatedItem
Names() as detailName> || Object.is(name, '${detailName}')</#list></#if>) {
let ret = false;
<#if PANELVISIBLE.getRelated
Detail
Names()??>
<#list PANELVISIBLE.getRelated
Detail
Names() as detailName>
<#if PANELVISIBLE.getRelated
Item
Names()??>
<#list PANELVISIBLE.getRelated
Item
Names() as detailName>
const _${detailName} = this.data.${detailName};
</#list>
</#if>
...
...
@@ -607,7 +607,7 @@ ${P.getCtrlCode('toolbar', 'CONTROL.vue').code}
this.layoutModelDetails['${panelItem.name}'].visible = ret;
}
</#if>
</#list>
-->
</#list>
}
/**
...
...
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_LOGIC.ftl
浏览文件 @
f2711a82
...
...
@@ -4,8 +4,8 @@
<#if item.isNotMode()>
!(
</#if>
<#if item.getPS
DEFD
Logics()??>
<#list item.getPS
DEFD
Logics() as subLogic>
<#if item.getPS
PanelItem
Logics()??>
<#list item.getPS
PanelItem
Logics() as subLogic>
<#if subLogic_index gt 0>
<#if item.getGroupOP() == 'AND'>
&&
...
...
@@ -21,7 +21,7 @@
)
</#if>
<#elseif item.getLogicType() == 'SINGLE'>
this.$verify.testCond(_${item.getD
EFDName()?lower_case}, "${item.getPSDBValueOPId
()}", "${item.getValue()}");
this.$verify.testCond(_${item.getD
stModelField()?lower_case}, "${item.getCondOp
()}", "${item.getValue()}");
</#if>
</@compress>
</#macro>
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录