- 注册时间
- 2018-11-23
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 160
- 精华
- 0
- 帖子
- 0
|
if (win!=null){
win.CloseOwnerWindow();
}
//打开窗口,展示订单数据
win= mini.open({
targetWindow: window,
url: "/module/index?mv=customerservice/order_datagrid_win",
title: "订单数据列表",
width: "800px",
height: "400px",
allowResize: true,
allowDrag: true,
showMaxButton: true,
showModal: false,
onload: function () {
var iframe = this.getIFrameEl();
iframe.contentWindow.setDate(queryParam);
},
ondestroy: function (action) {
mini.get("searchBtn").setEnabled(true);//禁用查询
win=null;
}
});
win.show("right", "bottom");
|
|