提交 2abe9e23 编写于 作者: NoSubject's avatar NoSubject

Merge branch 'fix/ie_error' into 'wrdp'

先取消ZIP附件预览功能

See merge request o2oa/o2oa!3428
......@@ -1945,7 +1945,7 @@ MWF.xApplication.process.Xform.AttachmenPreview = new Class({
this.previewOfd();
}
if(extension === "zip"){
this.previewZip();
//this.previewZip();
}
if(extension === "pdf"){
this.previewPdf();
......@@ -1978,90 +1978,90 @@ MWF.xApplication.process.Xform.AttachmenPreview = new Class({
this.previewAce("text");
}
},
previewZip : function (){
//zip压缩包预览
var _self = this;
var zipViewNode = new Element("div.ztree").inject(document.body);
o2.load("/o2_lib/zipjs/zip-fs.js",function(){
this.app.form.workAction.getAttachmentUrl(this.att.id, this.app.form.businessData.work.id, function (url) {
var cookie = Cookie.read("x-token");
url = url + "?x-token=" + cookie;
unzip().catch(error => console.error(error));
async function unzip() {
zip.configure({ chunkSize: 128 });
let zipFs = new zip.fs.FS();
let directory = zipFs.addDirectory("import");
await directory.importHttpContent(url);
o2.loadCss("/o2_lib/zTree/zTreeStyle.css",function(){
o2.load(["/o2_lib/jquery/jquery.min.js","/o2_lib/zTree/jquery.ztree.core.min.js"], {"sequence": true}, function(){
jQuery = jQuery.noConflict(true); //避免js框架冲突
var nodes = [];
loadNodes(directory,nodes);
jQuery.fn.zTree.init(jQuery(zipViewNode), {}, nodes);
var dlg = o2.DL.open({
"title": _self.att.name,
"width": "660px",
"height": "510px",
"mask": true,
"content": zipViewNode,
"container": null,
"positionNode": document.body,
"onQueryClose": function () {
zipViewNode.destroy();
},
"buttonList": [
{
"text": "关闭",
"action": function () {
dlg.close();
}
}
],
"onPostShow": function () {
dlg.reCenter();
}
});
}.bind(this));
})
}
function loadNodes(directory,nodes){
var folderList = [];
var fileList = [];
directory.children.each(function(file){
if(file.directory){
folderList.push(file)
}
})
directory.children.each(function(file){
if(!file.directory){
fileList.push(file)
}
})
folderList.append(fileList);
folderList.each(function(file){
var node = {
name : file.name
}
if(nodes.children){
nodes.children.push(node);
}else{
nodes.push(node);
}
if(file.directory){
node.children = [];
loadNodes(file,node);
}
})
}
}.bind(this));
}.bind(this));
},
// previewZip : function (){
// //zip压缩包预览
// var _self = this;
// var zipViewNode = new Element("div.ztree").inject(document.body);
// o2.load("/o2_lib/zipjs/zip-fs.js",function(){
//
// this.app.form.workAction.getAttachmentUrl(this.att.id, this.app.form.businessData.work.id, function (url) {
// var cookie = Cookie.read("x-token");
// url = url + "?x-token=" + cookie;
// unzip().catch(error => console.error(error));
// async function unzip() {
// zip.configure({ chunkSize: 128 });
// let zipFs = new zip.fs.FS();
// let directory = zipFs.addDirectory("import");
// await directory.importHttpContent(url);
//
// o2.loadCss("/o2_lib/zTree/zTreeStyle.css",function(){
// o2.load(["/o2_lib/jquery/jquery.min.js","/o2_lib/zTree/jquery.ztree.core.min.js"], {"sequence": true}, function(){
// jQuery = jQuery.noConflict(true); //避免js框架冲突
// var nodes = [];
// loadNodes(directory,nodes);
// jQuery.fn.zTree.init(jQuery(zipViewNode), {}, nodes);
//
// var dlg = o2.DL.open({
// "title": _self.att.name,
// "width": "660px",
// "height": "510px",
// "mask": true,
// "content": zipViewNode,
// "container": null,
// "positionNode": document.body,
// "onQueryClose": function () {
// zipViewNode.destroy();
// },
// "buttonList": [
// {
// "text": "关闭",
// "action": function () {
// dlg.close();
// }
// }
// ],
// "onPostShow": function () {
// dlg.reCenter();
// }
// });
//
//
// }.bind(this));
// })
// }
//
// function loadNodes(directory,nodes){
// var folderList = [];
// var fileList = [];
// directory.children.each(function(file){
// if(file.directory){
// folderList.push(file)
// }
// })
// directory.children.each(function(file){
// if(!file.directory){
// fileList.push(file)
// }
// })
// folderList.append(fileList);
// folderList.each(function(file){
// var node = {
// name : file.name
// }
// if(nodes.children){
// nodes.children.push(node);
// }else{
// nodes.push(node);
// }
// if(file.directory){
// node.children = [];
// loadNodes(file,node);
// }
// })
// }
// }.bind(this));
// }.bind(this));
// },
previewPdf : function(){
this.app.form.workAction.getAttachmentUrl(this.att.id, this.app.form.businessData.work.id, function (url) {
window.open("../o2_lib/pdfjs/web/viewer.html?file=" + url)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册