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

规整关闭视图参数

上级 ac3b16f6
...@@ -460,8 +460,8 @@ ${P.getLogicCode(uiAction, "LOGIC.vue").code} ...@@ -460,8 +460,8 @@ ${P.getLogicCode(uiAction, "LOGIC.vue").code}
public closeView(args: any[]): void { public closeView(args: any[]): void {
let _view: any = this; let _view: any = this;
if (_view.viewdata) { if (_view.viewdata) {
_view.$emit('viewdataschange', [args]); _view.$emit('viewdataschange', Array.isArray(args)?args:[args]);
_view.$emit('close', [args]); _view.$emit('close', Array.isArray(args)?args:[args]);
} else if (_view.$tabPageExp) { } else if (_view.$tabPageExp) {
_view.$tabPageExp.onClose(_view.$route.fullPath); _view.$tabPageExp.onClose(_view.$route.fullPath);
} }
......
...@@ -221,8 +221,8 @@ ${P.getLogicCode(uiAction, "LOGIC.vue").code} ...@@ -221,8 +221,8 @@ ${P.getLogicCode(uiAction, "LOGIC.vue").code}
public closeView(args: any[]): void { public closeView(args: any[]): void {
let _view: any = this; let _view: any = this;
if (_view.viewdata) { if (_view.viewdata) {
_view.$emit('viewdataschange', [args]); _view.$emit('viewdataschange', Array.isArray(args)?args:[args]);
_view.$emit('close', [args]); _view.$emit('close', Array.isArray(args)?args:[args]);
} else if (_view.$tabPageExp) { } else if (_view.$tabPageExp) {
_view.$tabPageExp.onClose(_view.$route.fullPath); _view.$tabPageExp.onClose(_view.$route.fullPath);
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册