提交 370b4cd9 编写于 作者: RedPig97's avatar RedPig97

update: 登录视图系统界面行为

上级 14e5fc7e
<#-- 重置数据 -->
<#macro dataCancelChanges item>
/**
* ${item.getCaption()}
*
* @param {any[]} args 当前数据
* @param {any} contextJO 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
*/
public ${item.getFullCodeName()}(args: any[], contextJO?:any, params?: any, $event?: any, xData?: any, actionContext?:any, srfParentDeName?:string) {
// 重置
}
</#macro>
\ No newline at end of file
<#-- 登录 -->
<#macro login item>
/**
* ${item.getCaption()}
*
* @param {any[]} args 当前数据
* @param {any} contextJO 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
*/
public ${item.getFullCodeName()}(args: any[], contextJO?:any, params?: any, $event?: any, xData?: any, actionContext?:any, srfParentDeName?:string) {
// todo
}
</#macro>
\ No newline at end of file
<#-- 登出 -->
<#macro logout item>
/**
* ${item.getCaption()}
*
* @param {any[]} args 当前数据
* @param {any} contextJO 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
*/
public ${item.getFullCodeName()}(args: any[], contextJO?:any, params?: any, $event?: any, xData?: any, actionContext?:any, srfParentDeName?:string) {
// todo
}
</#macro>
\ No newline at end of file
......@@ -11,6 +11,15 @@
<#ibizinclude>
./DATA_SYNCHRONIZE.ftl
</#ibizinclude>
<#ibizinclude>
./LOGIN.ftl
</#ibizinclude>
<#ibizinclude>
./LOGOUT.ftl
</#ibizinclude>
<#ibizinclude>
./DATA_CANCELCHANGES.ftl
</#ibizinclude>
<#macro sys item>
<#if item.getPredefinedType?? && item.getPredefinedType()??>
<#if item.getPredefinedType() == 'DATA_CREATEOBJECT'>
......@@ -21,6 +30,12 @@
<@dataSaveChanges item/>
<#elseif item.getPredefinedType() == 'DATA_SYNCHRONIZE'>
<@dataSynchronize item/>
<#elseif item.getPredefinedType() == 'APP_LOGIN'>
<@login item/>
<#elseif item.getPredefinedType() == 'APP_LOGOUT'>
<@logout item/>
<#elseif item.getPredefinedType() == 'DATA_CANCELCHANGES'>
<@dataCancelChanges item/>
</#if>
</#if>
</#macro>
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册