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

update: 更新表单多数据部件(表格) --- u1

上级 1e5a82be
...@@ -69,9 +69,11 @@ ${item.render.code} ...@@ -69,9 +69,11 @@ ${item.render.code}
<#if item.getContentType() == 'GRID'> <#if item.getContentType() == 'GRID'>
:localmode='true' :localmode='true'
</#if> </#if>
<#if item.getContentType() == 'FORM'>
:autosave="${item.getContentPSControl().isEnableAutoSave()?c}"
</#if>
<#if item.getContentType() == 'FORM' || item.getContentType() == 'GRID'> <#if item.getContentType() == 'FORM' || item.getContentType() == 'GRID'>
:isautoload="true" :isautoload="true"
:autosave="${item.getContentPSControl().isEnableAutoSave()?c}"
:viewtag="viewtag" :viewtag="viewtag"
:showBusyIndicator="${item.getContentPSControl().isShowBusyIndicator()?c}" :showBusyIndicator="${item.getContentPSControl().isShowBusyIndicator()?c}"
updateAction="UpdateTemp" updateAction="UpdateTemp"
......
...@@ -342,6 +342,14 @@ ${gridColumn.getName()} ...@@ -342,6 +342,14 @@ ${gridColumn.getName()}
*/ */
@Prop({ default: false }) public localmode?: boolean; @Prop({ default: false }) public localmode?: boolean;
/**
* 是否自动加载
*
* @type {boolean}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
@Prop({ default: false }) public isautoload?: boolean;
/** /**
* 当前页 * 当前页
* *
...@@ -1463,6 +1471,9 @@ ${gridColumn.getName()} ...@@ -1463,6 +1471,9 @@ ${gridColumn.getName()}
} }
}) })
} }
if (this.isautoload) {
this.load();
}
} }
/** /**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册