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

视图无引擎刷新逻辑调整

上级 d5436d1a
......@@ -199,7 +199,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue {
_this.engine.load();
<#if viewdata_block??>${viewdata_block}</#if>
});
} else if(!Object.is(newVal, oldVal) && _this.refresh() && Object.is(_this.$util.typeOf(_this.refresh()), 'function')) {
} else if(!Object.is(newVal, oldVal) && _this.refresh && _this.refresh instanceof Function) {
_this.refresh();
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册