提交 f4f5454d 编写于 作者: Shine-zwj's avatar Shine-zwj

update:更新

上级 170795da
<#ibizinclude>
../../../../@MACRO/LANG_FUN.ftl
</#ibizinclude>
<#-- 前台界面行为 --> <#-- 前台界面行为 -->
<#macro front item> <#macro front item>
<#if front_block??> <#if front_block??>
......
<#-- 建立数据 -->
<#macro dataCreateObject 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) {
if (xData && xData.create instanceof Function) {
xData.create().then((response: any) => {
if (!response || response.status !== 200) {
return;
}
_this.$emit('viewdataschange', [{ ...response.data }]);
});
} else {
this.$Notice.error({ title: '错误', desc: '建立数据未支持' });
}
}
</#macro>
\ No newline at end of file
<#-- 删除数据 -->
<#macro dataRemoveObject 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) {
if (xData && xData.remove instanceof Function) {
xData.remove().then((response: any) => {
if (!response || response.status !== 200) {
return;
}
_this.$emit('viewdataschange', [{ ...response.data }]);
});
} else {
this.$Notice.error({ title: '错误', desc: '删除数据未支持' });
}
}
</#macro>
\ No newline at end of file
<#-- 保存数据 -->
<#macro dataSaveChanges 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) {
if (xData && xData.save instanceof Function) {
xData.save().then((response: any) => {
if (!response || response.status !== 200) {
return;
}
_this.$emit('viewdataschange', [{ ...response.data }]);
});
} else {
this.$Notice.error({ title: '错误', desc: '保存数据未支持' });
}
}
</#macro>
\ No newline at end of file
<#-- 同步数据 -->
<#macro dataSynchronize 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) {
if (xData && xData.synchronize instanceof Function) {
xData.synchronize().then((response: any) => {
if (!response || response.status !== 200) {
return;
}
_this.$emit('viewdataschange', [{ ...response.data }]);
});
} else {
this.$Notice.error({ title: '错误', desc: '同步数据未支持' });
}
}
</#macro>
\ No newline at end of file
<#-- 系统预置界面行为 -->
<#ibizinclude>
./DATA_CREATEOBJECT.ftl
</#ibizinclude>
<#ibizinclude>
./DATA_REMOVEOBJECT.ftl
</#ibizinclude>
<#ibizinclude>
./DATA_SAVECHANGES.ftl
</#ibizinclude>
<#ibizinclude>
./DATA_SYNCHRONIZE.ftl
</#ibizinclude>
<#macro sys item>
<#if item.getPredefinedType?? && item.getPredefinedType()??>
<#if item.getPredefinedType() == 'DATA_CREATEOBJECT'>
<@dataCreateObject item />
<#elseif item.getPredefinedType() == 'DATA_REMOVEOBJECT'>
<@dataRemoveObject item />
<#elseif item.getPredefinedType() == 'DATA_SAVECHANGES'>
<@dataSaveChanges item/>
<#elseif item.getPredefinedType() == 'DATA_SYNCHRONIZE'>
<@dataSynchronize item/>
</#if>
</#if>
</#macro>
\ No newline at end of file
<#ibizinclude> <#ibizinclude>
../../../../@MACRO/LANG_FUN.ftl
</#ibizinclude>
<#ibizinclude>
./FRONT.ftl ./FRONT.ftl
</#ibizinclude> </#ibizinclude>
<#ibizinclude>
./SYS/SYS.ftl
</#ibizinclude>
<#macro viewLayoutPanelUIAction item> <#macro viewLayoutPanelUIAction item>
<#if item.getUIActionMode?? && item.getUIActionMode()??> <#if item.getUIActionMode?? && item.getUIActionMode()??>
<#if item.getUIActionMode() == 'FRONT'> <#if item.getUIActionMode() == 'FRONT'>
// 前台调用
<@front item /> <@front item />
<#elseif item.getUIActionMode() == 'BACKEND'> <#elseif item.getUIActionMode() == 'BACKEND'>
// 后台调用 // 后台调用
...@@ -13,7 +18,7 @@ ...@@ -13,7 +18,7 @@
<#elseif item.getUIActionMode() == 'WFBACKEND'> <#elseif item.getUIActionMode() == 'WFBACKEND'>
// 工作流后台调用 // 工作流后台调用
<#elseif item.getUIActionMode() == 'SYS'> <#elseif item.getUIActionMode() == 'SYS'>
// 系统 <@sys item />
<#elseif item.getUIActionMode() == 'CUSTOM'> <#elseif item.getUIActionMode() == 'CUSTOM'>
// 自定义 // 自定义
</#if> </#if>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册