提交 e001ea27 编写于 作者: tony001's avatar tony001

update:更新

上级 550757de
...@@ -38,9 +38,10 @@ export class UILogicActiveCtrlParam extends UILogicParamBase { ...@@ -38,9 +38,10 @@ export class UILogicActiveCtrlParam extends UILogicParamBase {
*/ */
private getActiveCtrl(params: any) { private getActiveCtrl(params: any) {
const { actioncontext } = params; const { actioncontext } = params;
// 部件触发肯定存在
if (actioncontext.viewCtx && actioncontext.viewCtx.ctrl) { if (actioncontext.viewCtx && actioncontext.viewCtx.ctrl) {
return actioncontext.viewCtx.ctrl; return actioncontext.viewCtx.ctrl;
}else{
return null;
} }
} }
......
...@@ -225,6 +225,9 @@ export class Util { ...@@ -225,6 +225,9 @@ export class Util {
* @memberof Util * @memberof Util
*/ */
public static deepCopy(data: any): any { public static deepCopy(data: any): any {
if(data && data._isVue ){
return data;
}
const t = this.typeOf(data); const t = this.typeOf(data);
let o: any; let o: any;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册