一、
打印:直接页面调用window.print(),当前页面就会转换成打印页面
当前页面是使用HTML拼接成A4纸表格样式的展示;
doPrint:function(type) { // this.centerDialogVisible=false; $('#button').hide(); window.print(); $('#button').show(); }
二、导出下载文件:要调用后台处理生成文件
window.open("/export/word");