- 注册时间
- 2017-8-4
- 最后登录
- 2024-9-13
- 阅读权限
- 10
- 积分
- 353
- 精华
- 0
- 帖子
- 30
|
function importExcel(){
mini.open({
url: ROOTPATH + "report/importExcel",
title: "选择基本信息(Excel)",
width: 800,
height: 550,
allowResize: false,
allowDrag: true,
ondestroy: function (action) {
if (action == "ok") {
mini.open({
url: rootPath + "/report/parseResult", //页面地址
title: "查看",
iconCls: "",
width: 1000,
height: 550,
allowResize: true,
allowDrag: true,
showMaxButton: true,
ondestroy: function (action) {
if (action == "ok") {
grid.reload();
}
}
});
}
}
})
}
在importExcel页面中调用关闭cancel('ok')会关闭第一个窗口,但是不会打开第二个窗口,怎么才能关闭旧窗口打开新窗口 |
|