SocialUploader.jsp
22.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@page import="weaver.general.DesUtil"%>
<%@page import="weaver.systeminfo.SystemEnv"%>
<%@page import="weaver.hrm.User"%>
<%@page import="weaver.general.Util"%>
<%@page import="weaver.social.po.SocialClientProp"%>
<%
DesUtil desUtil=new DesUtil();
if(user == null)
return;
%>
<script type="text/javascript" src="/social/js/swfupload/vendor/swfupload/swfupload_wev8.js"/></script>
<script type="text/javascript" src="/social/js/swfupload/vendor/swfupload/swfupload.queue_wev8.js"/></script>
<script type="text/javascript" src="/social/js/swfupload/vendor/swfupload/fileprogress_wev8.js"/></script>
<script type="text/javascript" src="/social/js/swfupload/vendor/swfupload/handlers_wev8.js"/></script>
<script type="text/javascript" src="/social/js/swfupload/src/jquery.swfupload_wev8.js"/></script>
<script type="text/javascript" src="/social/js/progressbar/jquery.progressbar_wev8.js"/></script>
<!-- 上传插件 -->
<script src="/social/js/dmuploader/src/dmuploader.min.js"></script>
<link rel="stylesheet" href="/social/css/im_upload_wev8.css" type="text/css" />
<style>
.innerTableWrap .fileListDelBtn {
font-size: 22px;
line-height: 22px;
text-align: right;
cursor: pointer;
color: #ccc;
}
.innerTableWrap .fileListDelBtn:hover {
color: lightblue;
}
</style>
<script type="text/template">
<tr id='{id}'>
<td><img src='{icon}' /></td>
<td class='ellipsis'>{name}</td>
<td class='ellipsis'>{size}</td>
<td class='fileListDelBtn'>×</td>
</tr>
</script>
<script language="javascript">
// 文件列表
var uploadfileListTemp = new Array();
var uploadfileListFlags = new Array();
var uploadfileList = new Array();
var uploadfileFuc = new Array();
//绑定上传控件
function bindDmUploader(domid, argconfig) {
var defaults={
url: '/social/SocialUploadOperate.jsp',
dataType: 'json',
maxFileSize: <%=Util.getIntValue(SocialClientProp.getPropValue(SocialClientProp.MAXACCUPLOADSIZE)) * 1024 * 1024%>,
fileName: 'Filedata',
maxFiles: 10,
onInit: function(){
console && console.log("init "+ domid +" successful!");
if(argconfig.hasOwnProperty("flashContainerId")){
$('#'+argconfig.flashContainerId).append("<div id='"+domid+"_SUC' class='socialUploadContainer' style='display:none;'></div>");
}
},
onFallbackMode: function(message) {
console && console.log("onFallbackMode:",message);
},
onNewFile: function(id, file){
console && console.log("onNewFile:", id, file);
var isfile = true;
try{
isfile = PcMainUtils.isFile(file.path);
}catch(e){
console && console.error('PcMainUtils.isFile 未定义');
}
if(isfile){
addFile("#"+domid+"_SUC", id, file);
$("#"+domid+"_SUC").find(".abort[data-id='"+id+"']").bind('click', function(){
abortUpload(id, domid);
});
}else{
var targetObj = document.getElementById(domid);
PcSendDirUtils.sendDir(targetObj, file.path);
return isfile;
}
uploadfileList[id] = true;
return true;
},
onDrop: function(files, cb) {
if(files && files.length > 0)
handleFileList(files, cb, argconfig);
},
onBeforeUpload: function(id){
console && console.log("onBeforeUpload: ", id);
$("#"+domid+"_SUC").show();
},
onComplete: function(){
console && console.log("upload completely");
$("#"+domid+"_SUC").hide();
},
onUploadProgress: function(id, percent){
// console && console.log("onUploadProgress:", id, percent);
var percentStr = percent + '%';
updateFileProgress(domid, id, percentStr);
if(percent=='100'){
uploadfileFuc[id] = setTimeout(function(){
if(uploadfileList[id]){
var dmUploader = $('#'+domid).data('dmUploader');
var uploaddiv = $("#"+domid+"_SUC .social-upload-file"+ id);
var tempdivid = uploaddiv.data('tempdivid');
dmUploader.abort(id);
updateUploadState(tempdivid, null);
}
delete uploadfileList[id];
clearTimeout(uploadfileFuc[id]);
delete uploadfileFuc[id];
},1000*15);
}
},
onUploadSuccess: function(id, data){
uploadfileList[id] = false;
console && console.log("onUploadSuccess:", id, data);
updateFileProgress(domid, id, '100%');
var fileCnt = $("#"+domid+"_SUC").attr('file-counter');
// 获取上传的附件路径
var uploaddiv = $("#"+domid+"_SUC .social-upload-file"+ id);
var filepath = uploaddiv.find('.file-path').val();
var tempdivid = uploaddiv.data('tempdivid');
uploaddiv.remove();
$("#"+domid+"_SUC").attr('file-counter', --fileCnt);
if(argconfig.hasOwnProperty("successcallback") && typeof argconfig.successcallback == 'function'){
var chatcontentid = "chatcontent_"+argconfig.targetid;
if (data.errorcode === '-1') {
updateUploadState(tempdivid, 11);
return;
}
// 如果是上传的图片,那就进行本地压缩
if(data.imgUrl && !data.content) {
try{
var widget = $('#'+domid).data('dmUploader');
IMUtil.getImgUrlFromBlob(widget.queue[id], function(src){
IMUtil.compressImg(src, {maxWidth: 180}, function(base64){
data.content = base64;
handleData(data);
});
});
} catch(e) {
}
}else{
handleData(data);
}
function handleData(data) {
var dataString = JSON.stringify(data);
try{
var file = {'name': data.filename, 'size': data.filesize, 'path': encodeURIComponent(filepath), 'tempdivid': tempdivid};
if(data){
argconfig.successcallback(chatcontentid, dataString, file, (fileCnt == 0?true: false));
}
}catch(e){
writeLog("上传返回数据为空",e);
}
}
}
},
onUploadError: function(id, message){
console && console.log("onUploadError:", id, message);
var uploaddiv = $("#"+domid+"_SUC .social-upload-file"+ id);
var tempdivid = uploaddiv.data('tempdivid');
updateUploadState(tempdivid, 11);
},
onUploadAbort: function(id){
console && console.log("onUploadAbort:", id);
var uploaddiv = $("#"+domid+"_SUC .social-upload-file"+ id);
var tempdivid = uploaddiv.data('tempdivid');
updateUploadState(tempdivid, 12);
uploaddiv.remove();
var fileCnt = $("#"+domid+"_SUC").attr('file-counter');
$("#"+domid+"_SUC").attr('file-counter', --fileCnt);
},
onFileTypeError: function(file){
console && console.log("onFileTypeError:", file);
},
onFileSizeError: function(file){
console && console.log("onFileSizeError:", file);
showImAlert("<%=SystemEnv.getHtmlLabelName(127328, user.getLanguage())+SocialClientProp.getPropValue(SocialClientProp.MAXACCUPLOADSIZE)%>M");//<!-- 最大不能超过300M -->
},
onFileExtError: function(file){
console && console.log("onFileExtError:", file);
},
onFilesMaxError: function(file){
console && console.log("onFilesMaxError:", file);
}
}
var allconfigs = $.extend(defaults, argconfig);
var $JqEle = $('#'+domid);
$JqEle.dmUploader(allconfigs);
if(argconfig && argconfig.hasOwnProperty('fireBtnCls')){
var fireBtnCls = argconfig.fireBtnCls;
if(fireBtnCls == '')
return;
//绑定上传按钮点击事件
$JqEle.find('.'+fireBtnCls).bind('click', function(event){
var obj = $JqEle.find('#'+fireBtnCls)[0];
if(obj.fireEvent){
return obj.fireEvent("onclick");
}else if(obj.onclick){
return obj.onclick();
}else if(obj.click){
return obj.click();
}
});
}
}
// 定位焦点到输入框
function setEditorFocus() {
var $editor = ChatUtil.getCurChatwin().find('.chatcontent');
$editor.focus();
IMUtil.moveToEndPos($editor[0]);
}
// 处理文件对象
function handleFileList(files, cb, argconfig) {
var IMdlg = $('.IMConfirm');
IMdlg.imconfirm({
'autohide':false,
'draggble':false,
'isModel':true,
'title':'发送文件',
'buttons': [
{
'btn_ok': function(){
var msgArray = new Array('在线发送','离线发送');
var fun2 = function(){cb && cb(getCurrentFileList(IMdlg));IMdlg.imclose()};
var $chatWin = $('#'+$('#chatIMTabs').find(".chatIMTabActiveItem").attr('_chatwinid'));
var targetId = $chatWin.attr('_targetid');
var targetType = $chatWin.attr('_targettype');
var fun1 = function(){
//在线发送调用
PcSendFileUtils.sendFile($chatWin,targetId,getCurrentFileList(IMdlg));
IMdlg.imclose();
};
var flag = false;
if(targetType != '0'){
//群组不能在线发
flag = true;
}
if(flag){
fun2();
}else{
if(window.isxp){
IMdlg.imclose();
Dialog.confirm('是选择在线发送,否选择离线发送?', function(){
fun1();
},function(){
fun2();
});
}else{
PcMainUtils.showMutiChooseConfirm('请选择发送模式:',msgArray,fun1,fun2);
}
}
}
},
{
'btn_cancel': function(){cb && cb();IMdlg.imclose();}
}
],
'innerhtml': getFileListHtml(files, argconfig),
'onshow': function(){
var wrapDiv = IMdlg.find('.innerTableWrap');
IMUtil.imPerfectScrollbar(wrapDiv);
// 如果是客户端,使它获得焦点
if(window.Electron){
window.Electron.currentWindow.focus();
}
// 使得当前的混动窗口获取焦点
wrapDiv.focus();
// 绑定点击事件
wrapDiv.find('.fileListDelBtn').live('click', function(){
var closestTR = $(this).closest('tr');
var id = closestTR.attr('id');
closestTR.remove();
uploadfileListFlags[id] = 0;
});
},
'onclose': function () {
setEditorFocus();
}
});
if(uploadfileListTemp && uploadfileListTemp.length > 0)
IMdlg.imshow();
else
cb();
}
// 格式化模版
function formatTemplate(dta, tmpl) {
var format = {
name: function(x) {
return x
}
};
return tmpl.replace(/{(\w+)}/g, function(m1, m2) {
if (!m2)
return "";
return (format && format[m2]) ? format[m2](dta[m2]) : dta[m2];
});
}
// 获取上传文件列表展示页
function getFileListHtml(files, argconfig) {
var oTableWrap = $("<div class='innerTableWrap' ondrop='addDragFile(this, event)' tabindex='2' style='height:250px;overflow: auto;padding: 0 10px;'></div>");
var oTable = $("<table style='table-layout:fixed;width: 100%;font-size: 14px;text-align: left;'><colgroup><col width='*'><col width='60%'><col width='*'><col width='8%'></colgroup></table>");
uploadfileListTemp = new Array();
uploadfileListFlags = new Array();
var aryTmp = getFileListAryTemp(files);
oTable.append(aryTmp.join(''));
oTableWrap.append(oTable);
// 绑定上传参数
if(argconfig && argconfig.extFilter) {
oTableWrap.attr("extFilter", argconfig.extFilter);
}
return oTableWrap.prop("outerHTML");
}
// 获取当前文件列表
function getCurrentFileList(IMdlg) {
var aryTemp = new Array();
for(var i = 0; i < uploadfileListFlags.length; ++i) {
if(uploadfileListFlags[i]) {
aryTemp.push(uploadfileListTemp[i]);
}
}
return aryTemp;
}
// 获取上传文件信息
function getFileListAryTemp(files) {
var html = $('script[type="text/template"]').html();
var oF, id, icon, name, size, oTmp={}, aryTmp = [];
var maxId = uploadfileListTemp.length;
for(var i = 0; i < files.length; ++i) {
try{
oF = files[i];
id = i + maxId;
name = oF.name;
icon = getFileIcon(name);
size = humanizeSize(oF.size);
oTmp['id'] = id;
oTmp['icon'] = icon;
oTmp['name'] = name;
oTmp['size'] = size;
// 过滤文件夹
if(!('isfile' in oF) && oF.path) {
var isfile = PcMainUtils.isFile(oF.path);
oF.isfile = isfile;
}else {
oF.isfile = oF.size != 0;
}
if(!oF.isfile && (!(oF instanceof File) || !oF.isfile)) continue;
aryTmp.push(formatTemplate(oTmp, html));
uploadfileListTemp.push(oF);
uploadfileListFlags.push(1);
} catch(err) {
console.error(err);
continue;
}
}
return aryTmp;
}
// 添加拖动的附件
function addDragFile(obj, evt) {
evt.preventDefault();
var files = evt.dataTransfer.files;
var extFilter = $(obj).attr("extFilter");
var newFileList = null;
if(extFilter) {
newFileList = new Array();
var extList = extFilter.toLowerCase().split(';');
var ext = "", file;
for(var i = 0; i < files.length; ++i) {
file = files[i];
ext = file.name.toLowerCase().split('.').pop();
if($.inArray(ext, extList) >= 0){
newFileList.push(file);
}
}
}else {
newFileList = files;
}
var oTableWrap = $(obj);
oTable = oTableWrap.find('table');
var aryTmp = getFileListAryTemp(newFileList);
oTable.append(aryTmp.join(''));
}
//添加上传文件
function addFile(jqid, i, file) {
var tempdivid = -1;
if (jqid.indexOf('#uploadImgDiv_') < 0) {
tempdivid = preSendAccMsg(null, null, {fileName: file.name, fileSize: file.size});
}
var template = '<div data-tempdivid="'+tempdivid+'" class="upload-item social-upload-file' + i + '">' +
'<input type="hidden" class="demo-file-id" value="'+i+'"/>' +
'<input type="hidden" class="file-path" value="'+file.path+'"/>' +
'<div>'+
'<div class="left fileName p-b-3 ellipsis w180">'+file.name+'</div>'+
'<div class="right fileSize p-l-15">'+humanizeSize(file.size)+'</div>'+
'<div class="clear"></div>'+
'</div>'+
'<div class="progress progress-striped active">'+
'<div class="progress-bar" role="progressbar" style="width: 0%;"></div>'+
'</div>'+
'<span class="sr-only"></span>'+
'<span class="abort" data-id="'+i+'">×</span>'+
'<div class="clear"></div>'+
'</div>';
var i = $(jqid).attr('file-counter');
if (!i){
$(jqid).empty();
i = 0;
}
i++;
$(jqid).attr('file-counter', i);
$(jqid).prepend(template);
}
// 取消上传
function abortUpload(id, domid) {
showImConfirm("确认取消?", function(){
var dmUploader = $('#'+domid).data('dmUploader');
dmUploader.abort(id);
});
}
//更新文件上传进度
function updateFileProgress(domid, i, percent){
var fileItemdiv = $("#"+domid+"_SUC .social-upload-file"+ i);
fileItemdiv.find('div.progress-bar').width(percent);
fileItemdiv.find('span.sr-only').html(percent);
}
//转换文件大小的显示方式
function humanizeSize(size) {
var i = size == 0 ? size: Math.floor( Math.log(size) / Math.log(1024) );
return ( size / Math.pow(1024, i) ).toFixed(2) * 1 + ' ' + ['B', 'kB', 'MB', 'GB', 'TB'][i];
}
/********************************************漂亮的分隔线*************************************************/
function bindUploaderDiv(argconfig){
var defaults={
targetid:'',
contentid:'',
callback:null,
processBarWidth:120,
clearProcess:true
}
var config=$.extend({},defaults, argconfig);
var targetid=config.targetid;
var chatcontent=config.contentid;
var callback=config.callback;
var targetObj=$("#"+targetid);
var maxsize=<%=Util.getIntValue(SocialClientProp.getPropValue(SocialClientProp.MAXACCUPLOADSIZE))%>;
var secId=targetObj.attr("secId");
var uploadType=targetObj.attr("_uploadType");
getUploader(targetid,maxsize,secId,uploadType,chatcontent,callback,config);
}
function getUploader(targetid,maxsize,secId,uploadType,chatcontent,callback,config){
maxsize=(maxsize==0?5:maxsize);
uploadType=uploadType?uploadType:"";
var fileTypes="*.*";
if(uploadType=="image"){
fileTypes="*.png;*.jpg;*.bmp;*.gif";
}
var flelimit=50;
$("#"+targetid).swfupload({
// Backend Settings
post_params: {
uploadType:uploadType,
secId:secId,
userid:'<%=desUtil.encrypt(""+user.getUID())%>',
language:'<%=user.getLanguage()%>',
logintype:'<%=user.getLogintype()%>',
departmentid:'<%=user.getUserDepartment()%>'
},
upload_url: "/social/SocialUploadOperate.jsp", // Relative to the SWF file (or you can use absolute paths)
// File Upload Settings
file_size_limit : maxsize*1024, //
file_types : fileTypes,
file_types_description : "All Files",
file_upload_limit : flelimit + "",
file_queue_limit : "0",
// Button Settings
//button_placeholder_id : "spanButtonPlaceholder",
button_placeholder_id : "holder_"+targetid,
button_width: 16,
button_height: 18,
//button_text:"<span class='theFont' style='cursor:pointer'><%=SystemEnv.getHtmlLabelName(19812, user.getLanguage())%></span>",
button_text_left_padding: 0,
button_text_top_padding: 3,
button_window_mode:'transparent',
//button_text_style: ".theFont { font-size:12;font-weight:bold;color:#666666;cursor:pointer;}",
button_image_url:"/social/images/acc_wev8.png",
button_cursor: SWFUpload.CURSOR.HAND,
// Flash Settings
flash_url : "/social/js/swfupload/vendor/swfupload/swfupload.swf"
});
$("#uploadProcess_"+targetid).find(".delacc").bind('click', function(){ //Remove from queue on cancel click
_removefile($(this),targetid);
});
$("#"+targetid).bind('fileQueued', function(event, file){
var filesqueueNumber = $.swfupload.getInstance("#"+targetid).getStats().files_queued;
$("#uploadProcess_"+targetid).show();
$progress = $("#progressDemo_"+targetid).clone();
$progress.attr("id",file.id);
$progress.find(".fileName").text(file.name);
$progress.find(".fileSize").text(getSizeFormate(file.size));
$fsUploadProgress=$("#fsUploadProgress_"+targetid);
if(targetid=="uploadRemarkImgDiv"||targetid=="uploadEditRemarkImgDiv"){
$fsUploadProgress.find(".imgAdddiv").before($progress);
}else{
$fsUploadProgress.append($progress);
}
$("#uploadProcess_"+targetid).find(".delacc").bind('click', function(){ //Remove from queue on cancel click
_removefile($(this),targetid);
});
$progress.show();
//$(this).swfupload('startUpload');
}).bind('fileQueueError', function (event, file, errorCode, message) {
if(errorCode==-100){
alert("<%=SystemEnv.getHtmlLabelName(82451,user.getLanguage()) %>");
}
if(errorCode==-110){
alert("<%=SystemEnv.getHtmlLabelName(24494,user.getLanguage()) %>"+maxsize+"M");
}
}).bind('fileDialogComplete', function (event, numFilesSelected, numFilesQueued) {
//$('#queuestatus').text('Files Selected: ' + numFilesSelected + ' / Queued Files: ' + numFilesQueued);
var swfuploadObj=$.swfupload.getInstance("#"+targetid);
swfuploadObj.startUpload();
//setButton();
}).bind('uploadStart', function (event, file) {
$("#"+file.id).find(".btnred").hide();
$("#cur_patch").text(file.name);
$('#' + file.id).find('.fileProgress').progressBar({height:2,showText: false});
}).bind('uploadProgress', function (event, file, bytesLoaded,bytesTotal) {
var percentage = Math.round((bytesLoaded / bytesTotal) * 100);
//$('#' + file.id).find('.fileProgress').text(percentage + '%');
$('#' + file.id).find('.fileProgress').progressBar(percentage);
}).bind('uploadSuccess', function (event, file, serverData) {
var fileSize=file.size;
var fileName=file.name;
/*
if(uploadType=="image"){
initUploadImg(chatcontent,$.trim(serverData));
}else{
alert(serverData);
initUploadAcc(chatcontent,$.trim(serverData),fileName,fileSize);
}
callback.call(this, target, settings);
eval(opts._callBack)(datas,e);
*/
callback(chatcontent,$.trim(serverData),file);
}).bind('uploadComplete', function (event, file) {
// upload has completed, try the next one in the queue
// 文件上传完毕隐藏对应progress 1105 by wyw
$("#"+file.id).remove();
var swfu = $.swfupload.getInstance('#'+targetid);
if(swfu.getStats().files_queued ===0){
if(config.clearProcess){
$("#"+targetid+" .uploadProcess").hide();
$("#"+targetid+" .fsUploadProgress").html("");
}
}
});
}
function flashChecker() {
var hasFlash = 0; //是否安装了flash
var flashVersion = 0; //flash版本
var isIE = /*@cc_on!@*/0; //是否IE浏览器
if (isIE) {
var swf = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
if (swf) {
hasFlash = 1;
VSwf = swf.GetVariable("$version");
flashVersion = parseInt(VSwf.split(" ")[1].split(",")[0]);
}
} else {
if (navigator.plugins && navigator.plugins.length > 0) {
var swf = navigator.plugins["Shockwave Flash"];
if (swf) {
hasFlash = 1;
var words = swf.description.split(" ");
for ( var i = 0; i < words.length; ++i) {
if (isNaN(parseInt(words[i])))
continue;
flashVersion = parseInt(words[i]);
}
}
}
}
return {
f :hasFlash,
v :flashVersion
};
}
var fls = flashChecker();
var flashversion = 0;
if (fls.f) {
flashversion = fls.v;
}
if (flashversion < 9){
<!-- pc客户端 -->
<%
if(!"pc".equals(from)) {
%>
// alert("<%=SystemEnv.getHtmlLabelName(24495,user.getLanguage())%>!");
<%
}
%>
}
function _removefile(obj,targetid){
$(obj).parents('.accitemdiv').remove();
// $("#"+file.id).remove();
if($("#uploadProcess_"+targetid).find(".fsUploadProgress .accitemdiv").length == 0) {
$('.appacc').removeClass('appacc2');
}
}
</script>
<div id="divStatus" style="display:none"></div>