提交 93722b53 编写于 作者: JunZai's avatar JunZai

update

上级 99dd2bef
<#ibizinclude>
../@MACRO/CONTROL/LANGBASE.tsx.ftl
</#ibizinclude>
<button nz-button nzType="primary" style="<#if item.getHeight() gt 0>height: ${item.getHeight()?c}px;</#if><#if item.getWidth() gt 0>width: ${item.getWidth()?c}px;</#if>">
<button nz-button nzType="primary" (click)="${item.name}_click($event)" style="<#if item.getHeight() gt 0>height: ${item.getHeight()?c}px;</#if><#if item.getWidth() gt 0>width: ${item.getWidth()?c}px;</#if>">
<#if item.getPSSysImage()??><#assign img=item.getPSSysImage()><#if img.getCssClass()?? && (img.getCssClass()?length gt 0)><i className="${img.getCssClass()}"></i></#if></#if>
<#if item.isShowCaption()><span >${item.getCaption()}</span></#if>
</button>
\ No newline at end of file
......@@ -21,4 +21,20 @@ export class ${srfclassname('${ctrl.name}')} implements OnInit {
ngOnInit(): void {
}
<#list ctrl.getAllPSDEFormDetails() as formdetail>
<#if formdetail.getDetailType?? && formdetail.getDetailType() == 'BUTTON'>
<#if formdetail.getActionType?? && formdetail.getActionType()?? && formdetail.getActionType() == 'UIACTION'>
/**
*
*
* @param {*} $event
* @memberof ${srfclassname('${ctrl.name}')}
*/
public ${formdetail.name}_click($event: any) {
}
</#if>
</#if>
</#list>
}
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册