提交 a1510e94 编写于 作者: Mosher's avatar Mosher

update:更新

上级 69a717b4
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
* @memberof ${srfclassname('${ctrl.codeName}')}Base * @memberof ${srfclassname('${ctrl.codeName}')}Base
*/ */
public async execute_${logic.name}_ctrl_logic(actionData: any): Promise<boolean> { public async execute_${logic.name}_ctrl_logic(actionData: any): Promise<boolean> {
<#-- 实体处理逻辑 -->
<#if logic.getLogicType() == 'DEUILOGIC'> <#if logic.getLogicType() == 'DEUILOGIC'>
<#if logic.getPSAppDEUILogic?? && logic.getPSAppDEUILogic()??> <#if logic.getPSAppDEUILogic?? && logic.getPSAppDEUILogic()??>
try { try {
...@@ -64,6 +65,12 @@ ...@@ -64,6 +65,12 @@
} }
</#if> </#if>
<#elseif logic.getLogicType() == 'SCRIPT'>
console.log('暂未支持 SCRIPT 类型');
<#elseif logic.getLogicType() == 'PFPLUGIN'>
console.log('暂未支持 PFPLUGIN 类型');
<#else>
console.log('暂未支持 ${logic.getLogicType()} 类型');
</#if> </#if>
return true; return true;
} }
......
...@@ -68,7 +68,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue { ...@@ -68,7 +68,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue {
* @type {${srfclassname('${appde.getCodeName()}')}Service} * @type {${srfclassname('${appde.getCodeName()}')}Service}
* @memberof ${srfclassname('${view.name}')}Base * @memberof ${srfclassname('${view.name}')}Base
*/ */
public appEntityService: ${srfclassname('${appde.getCodeName()}')}Service = new ${srfclassname('${appde.getCodeName()}')}Service; public appEntityService: ${srfclassname('${appde.getCodeName()}')}Service = new ${srfclassname('${appde.getCodeName()}')}Service();
/** /**
* 实体UI服务对象 * 实体UI服务对象
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册