ElementJointArea.jsp
34.2 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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="weaver.homepage.HomepageBean" %>
<%@ page import="weaver.general.Util" %>
<%@ page import="weaver.general.IsGovProj" %>
<jsp:useBean id="BaseBean" class="weaver.general.BaseBean" scope="page" />
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page" />
<jsp:useBean id="pc" class="weaver.page.PageCominfo" scope="page"/>
<jsp:useBean id="pu" class="weaver.page.PageUtil" scope="page" />
<jsp:useBean id="ebc" class="weaver.page.element.ElementBaseCominfo" scope="page" />
<jsp:useBean id="wbe" class="weaver.admincenter.homepage.WeaverBaseElementCominfo" scope="page" />
<jsp:useBean id="hpsb" class="weaver.homepage.style.HomepageStyleBean" scope="page"/>
<jsp:useBean id="wp" class="weaver.admincenter.homepage.WeaverPortal" scope="page"/>
<jsp:useBean id="wpc" class="weaver.admincenter.homepage.WeaverPortalContainer" scope="page"/>
<%@ include file="/page/maint/common/init.jsp" %>
<jsp:include page="/systeminfo/WeaverLangJS.jsp">
<jsp:param name="languageId" value="<%=user.getLanguage()%>" />
</jsp:include>
<%
//BaseBean.writeLog(request.getQueryString()+"%%%%%%%%%");
//Get Parameter
String hpid = Util.null2String(request.getParameter("hpid"));
int isfromportal = Util.getIntValue(request.getParameter("isfromportal"),0);
int isfromhp = Util.getIntValue(request.getParameter("isfromhp"),0);
int subCompanyId = Util.getIntValue(request.getParameter("subCompanyId"),-1);
boolean isSetting="true".equalsIgnoreCase(Util.null2String(request.getParameter("isSetting")));
int isgoveproj = Util.getIntValue(IsGovProj.getPath(),0);//0:非政务系统,1:政务系统
String opt = Util.null2String(request.getParameter("opt"));
String from = Util.null2String(request.getParameter("from"));
String fromModule = Util.null2String(request.getParameter("fromModule"));
String pagetype = Util.null2String(request.getParameter("pagetype"));
String hasTemplate = Util.null2String(request.getParameter("hastemplate"));
boolean issubmenu = false;
%>
<html>
<head>
<title></title>
<!-- 引入CSS -->
<!-- 引入JavaScript -->
<%=pu.getPageJsImportStr(hpid) %>
<%=pu.getPageCssImportStr(hpid) %>
<script type="text/javascript">
function initGauges(id,xml){
try{
setTimeout('try{bindows.loadGaugeIntoDiv("' + xml + '", "' +id+ '")}catch(e){}', 1000);
}catch(e){
alert(e.name)
}
}
function onLoadComplete(ifm){
if(ifm.readyState=="complete"){
if(ifm.contentWindow.document.body.scrollHeight>ifm.height){
ifm.style.height = ifm.height;
}else{
ifm.style.height = ifm.contentWindow.document.body.scrollHeight;
}
}
}
</script>
<STYLE TYPE="text/css">
.item a{
text-decoration: none!important;
}
.header{
background-position:left center;
}
<%=wpc.getElementCss(fromModule)%>;
</STYLE>
</head>
<body>
<SCRIPT language="javascript" src="/js/xmlextras_wev8.js"></script>
<SCRIPT type="text/javascript" src="/js/jscolor/jscolor_wev8.js"></script>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
RCMenu += "{<span>"+SystemEnv.getHtmlLabelName(19613,user.getLanguage())+"</span>,javascript:toggleELib(this) ,_self} " ;
RCMenuHeight += RCMenuHeightStep ;
RCMenu += "{<span id=spanStatus status='show'>"+SystemEnv.getHtmlLabelName(18466,user.getLanguage())+"</span>,javascript:onChanageAllStatus(this),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<!--Debug Div-->
<textarea id="txtDebug" style="width:100%;height:200px;display:none"></textarea>
<!--Show Div-->
<div id="divInfo" style="border:1px solid #8888AA; background:white;display:none;position:absolute;padding:5px;posTop:expression(document.body.offsetHeight/2+document.body.scrollTop-50);posLeft:expression(document.body.offsetWidth/2-50);z-index:100;"></div>
<!--Content Table-->
<input type="hidden" value="btnWfCenterReload" id="btnWfCenterReload" name="btnWfCenterReload" onclick="elmentReLoad(8)">
<div>
<%=wpc.getAllElementList("",user)%>
<span id="spanContent" style="display:block;width:100%;vertical-align:top;float:left;">
<%//pu.getBaseHpStr(hpid,layoutid,styleid,user,"hp",subCompanyId,isSetting)%>
<%//wpc.getHpAllElement(hpid,user,isSetting) %>
<%=wpc.getAreaElement(fromModule,user) %>
</span>
</div>
<div id='encodeHTML' style='display:none'></div>
</body>
</html>
<SCRIPT LANGUAGE="JavaScript">
$(document).ready(function(){
});
/*修改相应元素位置 到到相应的元素下去*/
function fixedPosition(eid){
var oFrm=(function(p,t){
while(p!=t){
if(t.document.getElementById("mainFrame")!=null)
return t.document.getElementById("mainFrame");
else
t=p;p=p.parent;
}
return t.document.getElementById("mainFrame");
})(window.parent,window);
if(<%=isfromportal==1%>){ //从门户过的数据需要刷新页面宽度
try{
if(parseInt(oFrm.style.height)<parseInt(document.body.scrollHeight)) {
oFrm.style.height=document.body.scrollHeight+"px";
} else {
oFrm.style.height=document.body.scrollHeight+"px";
}
} catch(e){
log(e)
}
}else{
oFrm?oFrm.style.height="500px":"";
}
}
function toggleELib(obj){
if($('#spanELib').is(":hidden")) {
$('#spanELib').show();
$('#spanELib').css("margin","10 0 0 10");
$('#spanELib').css("width","120px");
$('#spanContent').css("width","80%");
obj.lastChild.innerHTML="<%=SystemEnv.getHtmlLabelName(19614,user.getLanguage())%>";
} else {
$('#spanELib').hide();
$('#spanELib').css("width","0%");
$('#spanContent').css("width","100%");
obj.lastChild.innerHTML="<%=SystemEnv.getHtmlLabelName(19613,user.getLanguage())%>";
}
}
function onAddElement(ebaseid,styleid){
if($(".item").length==10){
if(confirm("<%=SystemEnv.getHtmlLabelName(84090,user.getLanguage())%>")){
url="/homepage/element/ElementPreview.jsp?ebaseid="+ebaseid+"&styleid="+styleid+"&hpid=0&subCompanyId=0&fromModule=<%=fromModule%>&layoutflag=A";
GetContent("divInfo",url,true);
}
}else{
url="/homepage/element/ElementPreview.jsp?ebaseid="+ebaseid+"&styleid="+styleid+"&hpid=0&subCompanyId=0&fromModule=<%=fromModule%>&layoutflag=A";
GetContent("divInfo",url,true);
}
}
function onDel(eid){
if(!confirm("<%=SystemEnv.getHtmlLabelName(19747,user.getLanguage())%>")) return;
var group=$($("#item_"+eid).parents(".group")[0]);
var flag=group.attr("areaflag");
var eids="";
$(group).children("div .item").each(function(){
if($(this).attr("eid")!=eid) eids+=$(this).attr("eid")+",";
});
$.get("/homepage/element/EsettingOperate.jsp",
{method: "delElement", hpid: "0",eid:eid,delFlag:flag,delAreaElement:eids,subCompanyId:"0"},
function(data){
if($.trim(data)=="") {
$("#item_"+eid).remove();
} else {
alert($.trim(data))
}
}
);
}
function doWorkflowEleSet(eid,ebaseid){
try{
//var formAction =$("#dialogIframe_"+eid).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").attr("action")
var formAction ="/homepage/element/setting/WorkflowCenterOpration.jsp";
//$.post(formAction,{method:'submit',eid:eid},function(data){});
$.ajax({
url :formAction,
data:{method:'submit',eid:eid},
cache : false,
async : true,
type : "post",
dataType : 'json',
success : function (result){
doUseSetting(eid,ebaseid);
}
});
//document.frames["ifrmViewType_"+eid].document.getElementById("btnSave").click();
}catch(e){}
}
var randomValue;
function onSetting(eid,ebaseid){
//获取设置页面内容
var settingUrl="/page/element/setting.jsp?pagetype=<%=pagetype%>&eid="+eid+"&ebaseid="+ebaseid+"&hpid=<%=hpid%>&subcompanyid=<%=subCompanyId%>";
$.post(settingUrl, null,
function(data){
if($.trim(data)!="") {
$("#setting_"+eid).hide();
$("#setting_"+eid).remove();
$("#content_"+eid).prepend($.trim(data))
$("#setting_"+eid+" .weavertabs").weavertabs({selected:0});
$("#setting_"+eid).show();
var urlContent=$.trim($("#weavertabs-content-"+eid).attr("url")).replace(/&/g,"&");
var urlStyle=$.trim($("#weavertabs-style-"+eid).attr("url")).replace(/&/g,"&");
var urlShare=$.trim($("#weavertabs-share-"+eid).attr("url")).replace(/&/g,"&");
//alert(document.getElementById("weavertabs-content-"+eid));
if(urlContent!="") {
if(ebaseid==7||ebaseid==8||ebaseid==1||ebaseid=='news'||ebaseid==29){
//randomValue =Math.round(Math.random()*(100-1)+1)
randomValue = new Date().getTime();
$("#setting_"+eid).attr("randomValue",randomValue);
}
urlContent = urlContent+"&random="+randomValue;
$("#weavertabs-content-"+eid).html("")
$("#weavertabs-content-"+eid).html("<img src=/images/loading2_wev8.gif> <%=SystemEnv.getHtmlLabelName(19611,user.getLanguage())%>...");
$("#weavertabs-content-"+eid).load(urlContent,{},function(){
//alert($("#weavertabs-content-"+eid).html())
//$("#tabDiv_"+eid).dialog('destroy');
$(".filetree").filetree();
$(".vtip").simpletooltip();
fixedPosition(eid);
jscolor.init();
});
}
if(urlStyle!="") $("#weavertabs-style-"+eid).load(urlStyle,{},function(){
var checkimg=$("#eLogo_"+eid).attr("value");
$("#weavertabs-style-"+eid+" .filetree").filetree({"file":checkimg});
//$("#weavertabs-style-"+eid+" .filetree").filetree();
});
if(urlShare!="") $("#weavertabs-share-"+eid).load(urlShare,{},function(){
//$("#weavertabs-share-"+eid+" .filetree").filetree();
});
}
});
//以下处理所有tabs插件
//log("urlContent:"+urlContent);
//log("urlStyle:"+urlStyle);
}
function onNoUseSetting(eid,ebaseid){
if(ebaseid=="news"||parseInt(ebaseid)==7||parseInt(ebaseid)==1){
$.post('/page/element/compatible/NewsOperate.jsp',{method:'cancel',eid:eid},function(data){
if($.trim(data)==""){
//$("#item_"+eid).attr('needRefresh','true')
//$("#item_"+eid).trigger("reload");
}
});
}else if(parseInt(ebaseid)==8){
var formAction ="/homepage/element/setting/WorkflowCenterOpration.jsp";
$.ajax({
url :formAction,
data:{method:'cancel',eid:eid},
cache : false,
async : true,
type : "post",
dataType : 'json',
success : function (result){
}
});
}
$("#setting_"+eid).hide();
$("#setting_"+eid).remove();
fixedPosition(eid);
}
function doUseSetting(eid,ebaseid){
/*对知识订阅元素进行特殊处理*/
if(ebaseid==34){
var begin = document.getElementById("begindate_"+eid).value;
var end = document.getElementById("enddate_"+eid).value;
if(begin != "" && end != ""){
if(begin > end){
alert("<%=SystemEnv.getHtmlLabelName(24569,user.getLanguage())%>");
return;
}
}
}
//common部分处理
var ePerpageValue=5;
var eShowMoulde='0';
var eLinkmodeValue ='';
var esharelevel = '';
try{
if(document.getElementById("_ePerpage_"+eid)!=null){
ePerpageValue=$("#_ePerpage_"+eid).val();
}
if(document.getElementById("_eShowMoulde_"+eid)!=null){
eShowMoulde=document.getElementById("_eShowMoulde_"+eid).value;
}
if(document.getElementById("_eLinkmode_"+eid)!=null){
eLinkmodeValue=$("#_eLinkmode_"+eid).val();
}
esharelevel=$("input[name=_esharelevel_"+eid+"]").val();
} catch(e){
}
var eFieldsVale="";
var chkFields=document.getElementsByName("_chkField_"+eid);
if (chkFields!=null){
for(var i=0;i<chkFields.length;i++){
var chkField=chkFields[i];
if(chkField.checked) eFieldsVale+=chkField.value+",";
}
if(eFieldsVale!="") eFieldsVale=eFieldsVale.substring(0,eFieldsVale.length-1);
}
var imsgSizeStr ="";
if($("input[name=_imgWidth"+eid+"]").val()){
var imgWidth = $("input[name=_imgWidth"+eid+"]").val();
var imgHeight = $("input[name=_imgHeight"+eid+"]").val();
if(imgWidth.replace(/(^\s*)|(\s*$)/g, "") == ""){
imgWidth = "0";
}
if(imgHeight.replace(/(^\s*)|(\s*$)/g, "")==""){
imgHeight = "0";
}
var imgSize = imgWidth+"*"+imgHeight;
imsgSizeStr = "imgSize_"+$("input[name=_imgWidth"+eid+"").attr("basefield");
}
var imgType=0;
var imgSrc = "";
if(document.getElementById("_imgType"+eid)!=null){
imgType=document.getElementById("_imgType"+eid).value;
if(imgType==1){
imgSrc = $("#_imgsrc"+eid).val();
}
}
//得到上传时的字数标准
var newstemplateStr = "";
if(document.getElementById("_newstemplate"+eid)!=null){
newstemplateStr = document.getElementById("_newstemplate"+eid).value
}
var eTitleValue="";
var whereKeyStr="";
if(esharelevel=="2"){
var eTitleValue=document.getElementById("_eTitel_"+eid).value;
var _whereKeyObjs=document.getElementsByName("_whereKey_"+eid);
if(eTitleValue.indexOf('%')!=-1) {
//alert("<%=SystemEnv.getHtmlLabelName(20858,user.getLanguage())%>");
//return;
}
//alert(escape(eTitleValue));
$("#title_"+eid).text(eTitleValue);
eTitleValue = eTitleValue.replace(/\\/g,"\\\\");
eTitleValue = eTitleValue.replace(/'/g,"\\'");
eTitleValue = eTitleValue.replace(/"/g,"\\\"");
if(ebaseid == 'notice'){
onchanges(eid);
}
//newstr=newstr.replace(/&/g,"',");
//eTitleValue = $("#title_"+eid).html();
//eTitleValue = escape(eTitleValue)
//得到上传的SQLWhere语句
for(var k=0;k<_whereKeyObjs.length;k++){
var _whereKeyObj=_whereKeyObjs[k];
if(_whereKeyObj.tagName=="INPUT" && _whereKeyObj.type=="checkbox" &&! _whereKeyObj.checked) continue;
if(ebaseid=='reportForm'){
if(_whereKeyObj.tagName=="INPUT" && _whereKeyObj.type=="radio" &&! _whereKeyObj.checked) continue;
}
whereKeyStr+=_whereKeyObj.value+"^,^";
}
}
if(whereKeyStr!="") whereKeyStr=whereKeyStr.substring(0,whereKeyStr.length-3);
whereKeyStr = whereKeyStr.replace(/'/g,"\\'");
//仅对多文档中心元素进行此处理,修正td21552
if(whereKeyStr != null && $.trim(whereKeyStr) != ""&&ebaseid=='17'){
var whereStr = $.trim(whereKeyStr).split('^,^');
if(whereStr[1] != null && whereStr[1] != "" && whereStr[1].length != 0) {
$("#more_"+eid).attr("href","javascript:openFullWindowForXtable('/page/element/compatible/more.jsp?ebaseid="+ebaseid+"&eid="+eid+"')");
$("#more_"+eid).attr("morehref","/page/element/compatible/more.jsp?ebaseid="+ebaseid+"&eid="+eid);
}else{
$("#more_"+eid).attr("href","#");
$("#more_"+eid).attr("morehref","");
}
}
var scolltype = "";
if(document.getElementsByName("_scolltype"+eid).length>0){
scolltype=document.getElementsByName("_scolltype"+eid)[0].value;
//whereKeyStr+="^,^"+scolltype;
}
//alert(scolltype);
//eTitleValue=eTitleValue.replace(/&/g, "%26");//把eTitleValue中的&换成%26;
//eTitleValue = encodeURIComponent(eTitleValue)
//alert(eTitleValue)
//用户自定义元素内容部分
//相关的样式设置部分
var eLogo=$("#eLogo_"+eid).val();
var eStyleid=$("#eStyleid_"+eid).val();
var eHeight=$("#eHeight_"+eid).val();
var eMarginTop=$("#eMarginTop_"+eid).val();
var eMarginBottom=$("#eMarginBottom_"+eid).val();
var eMarginLeft=$("#eMarginLeft_"+eid).val();
var eMarginRight=$("#eMarginRight_"+eid).val();
//相关的共享设置部分
var operationurl=$.trim($("#setting_"+eid).attr("operationurl")).replace(/&/g,"&");
log(operationurl)
//alert(eid)
var postStr = "eid:'"+eid+"',eShowMoulde:'"+eShowMoulde+"',ebaseid:'"+ebaseid+"',eTitleValue:'"+eTitleValue+"',ePerpageValue:'"+ePerpageValue+"',eLinkmodeValue:'"+eLinkmodeValue+"',";
postStr +="eFieldsVale:'"+eFieldsVale+"',imgSizeStr:'"+imgSize+"',whereKeyStr:'"+whereKeyStr+"',esharelevel:'"+esharelevel+"',hpid:'"+'<%=hpid%>'+"',subCompanyId:'"+'<%=subCompanyId%>'+"',";
postStr +="eLogo:'"+eLogo+"',eStyleid:'"+eStyleid+"',eHeight:'"+eHeight+"',newstemplate:'"+newstemplateStr+"',imgType:'"+imgType+"',imgSrc:'"+imgSrc+"',eScrollType:'"+scolltype+"',"
postStr +="eMarginTop:'"+eMarginTop+"',eMarginBottom:'"+eMarginBottom+"',eMarginLeft:'"+eMarginLeft+"',eMarginRight:'"+eMarginRight+"'";
var wordcountStr="";
var _wordcountObjs=document.getElementsByName("_wordcount_"+eid);
for(var j=0;j<_wordcountObjs.length;j++){
var wordcountObj=_wordcountObjs[j];
var basefield=$(wordcountObj).attr("basefield");
wordcountStr+="&wordcount_"+basefield+"="+wordcountObj.value;
postStr+=",wordcount_"+basefield+":'"+wordcountObj.value+"'";
}
var newstr = $("#setting_form_"+eid).serialize();
newstr=newstr.replace(/&/g,"',");
newstr=newstr.replace(/=/g,":'");
newstr=newstr.replace(/%2F/g,"/");
newstr = newstr.replace(/%3A/g,":");
newstr = decodeURIComponent (newstr);
if(ebaseid == "weather") {
var weatherWidth;
var wWidth = $("#content_view_id_"+eid).width();
if(newstr != null && newstr != "" && newstr.length != 0) {
var weatherWidth = newstr.substring(newstr.lastIndexOf("'")+1);
var reg=new RegExp("[\+\]","g");
weatherWidth=weatherWidth.replace(reg,"");
if(weatherWidth == null ||
weatherWidth == "" ||
isNaN(weatherWidth) ||
parseFloat(weatherWidth) > parseFloat(wWidth) ||
parseFloat(weatherWidth) <= 0) {
var lNewStr = newstr.substring(0,newstr.lastIndexOf("'")+1);
newstr = lNewStr+wWidth;
}else{
var lNewStr = newstr.substring(0,newstr.lastIndexOf("'")+1);
newstr = lNewStr+weatherWidth;
}
}
}
if(newstr!=""){
postStr = postStr+","+newstr+"'";
}
//alert(encodeURI(postStr))
postStr = "var postObj = {"+postStr+"}";
eval(postStr)
$.post(operationurl, postObj,
function(data){
if($.trim(data)=="") {
$("#setting_"+eid).hide();
$("#setting_"+eid).remove();
if(ebaseid=="news"||parseInt(ebaseid)==7||parseInt(ebaseid)==1||parseInt(ebaseid)==29){
$.post('/page/element/compatible/NewsOperate.jsp',{method:'submit',eid:eid},function(data){
if($.trim(data)==""){
$("#item_"+eid).attr('needRefresh','true')
$("#item_"+eid).trigger("reload");
}
});
}else{
$("#item_"+eid).attr('needRefresh','true')
$("#item_"+eid).trigger("reload");
}
}
}
);
if(window.frames["eShareIframe_"+eid]&&esharelevel=="2"){
window.frames["eShareIframe_"+eid].document?window.frames["eShareIframe_"+eid].document.getElementById("frmAdd_"+eid).submit():"";
}
if(ebaseid == "menu") {
setTimeout(function rload(){
location.reload();
},200);
}
//元素共享设置提交
//} catch(e){
// alert(e)
//}
fixedPosition(eid);
}
function onUseSetting(eid,ebaseid){
if(ebaseid==8) { /*对流程中心元素进行特殊处理*/
doWorkflowEleSet(eid,ebaseid);
}else{
doUseSetting(eid,ebaseid);
}
}
function onLockOrUn(eid,ebaseid,obj){
if(confirm("<%=SystemEnv.getHtmlLabelName(19745,user.getLanguage())%>")){
divInfo.style.display='inline';
var url;
if(jQuery(obj).attr("status")=="unlocked"){
url="/homepage/element/EsettingOperate.jsp?method=locked&eid="+eid+"&hpid=<%=hpid%>&subCompanyId=<%=subCompanyId%>";
} else {
url="/homepage/element/EsettingOperate.jsp?method=unlocked&eid="+eid+"&hpid=<%=hpid%>&subCompanyId=<%=subCompanyId%>";
}
log(url)
$.get(url,{},function(data){
log($.trim(data));
divInfo.style.display='none';
if(jQuery(obj).attr("status")=="unlocked"){
jQuery(obj).attr("status","locked");
} else {
jQuery(obj).attr("status","unlocked");
}
//
jQuery(obj).children(":first").attr("src",$.trim(data));
});
}
}
function MoveEData(srcFlag,targetFlag){
var srcItemEids="";
$(".group[areaflag="+srcFlag+"]>.item").each(function(i){
if(this.className=="item") {
srcItemEids+=$(this).attr("eid")+",";
}
})
var targetItemEids="";
$(".group[areaflag="+targetFlag+"]>.item").each(function(i){
if(this.className=="item") {
targetItemEids+=$(this).attr("eid")+",";
}
})
log("src"+srcFlag+"-"+srcItemEids);
log("target:"+targetFlag+"-"+targetItemEids);
var url="/homepage/element/EsettingOperate.jsp?method=editLayout&hpid=0&subCompanyId=0&srcFlag="+srcFlag+"&targetFlag="+targetFlag+"&srcStr="+srcItemEids+"&targetStr="+targetItemEids;
GetContent(divInfo,url,false);
}
function doSynize(obj){
if(confirm("<%=SystemEnv.getHtmlLabelName(19745,user.getLanguage())%>")){
//obj.disabled=true;
divInfo.style.display='inline';
var code="divInfo.style.display=\"none\";";
var url='/homepage/maint/HomepageMaintOperate.jsp?method=synihp&subCompanyId=<%=subCompanyId%>&hpid=<%=hpid%>'
GetContent(divInfo,url,false,code);
}
}
function doSynizeNormal(obj){
var isNeedRefresh=1;
if(confirm("<%=SystemEnv.getHtmlLabelName(19745,user.getLanguage())%>")){
//obj.disabled=true;
divInfo.style.display='inline';
var code="divInfo.style.display=\"none\";";
var url='/homepage/maint/HomepageMaintOperate.jsp?method=synihpnormal&subCompanyId=<%=subCompanyId%>&hpid=<%=hpid%>'
GetContent(divInfo,url,false,code,isNeedRefresh);
}
}
function openMaginze(obj,url,linkmode){
url=url+obj.value;
if(linkmode=="1") window.location=url;
if(linkmode=="2") openFullWindowForXtable(url);
}
//菜单
function onMenuDivClick(hpid,subCompanyId){
window.location="/homepage/Homepage.jsp?hpid="+hpid+"&subCompanyId="+subCompanyId+"&isfromportal=<%=isfromportal%>&isfromhp=<%=isfromhp%>"
}
/**
添加Tab页
*/
function addTab(eid,url,ebaseid){
var tabCount = $("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).attr("tabCount");
tabCount = parseInt(tabCount);
tabCount++;
var url = $("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).attr("url");
url+="&tabId="+tabCount
showTabDailog(eid,'add',tabCount,url,ebaseid)
}
/**
删除Tab页
*/
function deleTab(eid,tabId,ebaseid){
var formAction="";
if(parseInt(ebaseid)==8){
formAction ="/homepage/element/setting/WorkflowCenterOpration.jsp";
}else if(ebaseid=="news"||parseInt(ebaseid)==7||parseInt(ebaseid)==1||parseInt(ebaseid)==29){
formAction ="/page/element/compatible/NewsOperate.jsp";
}
var para = {method:'delete',eid:eid,tabId:tabId};
$.post(formAction,para,function(data){
if($.trim(data)==""){
$("#tab_"+eid+"_"+tabId).parent().parent().remove();
}
});
}
/**
编辑Tab页
*/
function editTab(eid,tabId,ebaseid){
var url = $("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).attr("url");
var tabTitle = $("#tab_"+eid+"_"+tabId).attr("tabTitle");
tabTitle = encodeURIComponent(encodeURIComponent(tabTitle));
url+="&tabId="+tabId+"&tabTitle="+tabTitle;
if(ebaseid=="news" || parseInt(ebaseid)==7||parseInt(ebaseid)==1||parseInt(ebaseid)==29){
var tabWhere = $("#tab_"+eid+"_"+tabId).attr("tabWhere");
url+="&value="+tabWhere;
}else{
var showCopy = $("#tab_"+eid+"_"+tabId).attr("showCopy");
url+="&showCopy="+showCopy;
}
showTabDailog(eid,"edit",tabId,url,ebaseid)
}
/**
打开对话框
*/
function showTabDailog(eid,method,tabId,url,ebaseid){
var whereKeyStr="";
var showCopy="1";
try{
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).attr("name","dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue"));
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).attr("src",url);
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).bgiframe();
//$("#tabDiv_"+eid).dialog('destroy');
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).dialog({
id:tabId,
bgiframe: true,
autoOpen: false,
height: 630,
width:450,
draggable:true,
modal: true,
buttons: {
'<%=SystemEnv.getHtmlLabelName(201,user.getLanguage())%>': function() {
$(this).dialog('destroy');
},
'<%=SystemEnv.getHtmlLabelName(826,user.getLanguage())%>': function() {
// 准备Tab页条件数据
var formParams ={};
var formAction ="";
var tabTitle ="";
var displayTitle="";
if(parseInt(ebaseid)==8){
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#btnSave").trigger("click")
formAction =$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").attr("action")
tabTitle = $("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#tabTitle_"+eid).attr("value")
displayTitle = $("#encodeHTML").text(tabTitle).html();
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").find("#tabTitle").attr("value",tabTitle);
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").find("#tabId").attr("value",tabId);
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").find("#method").attr("value",method);
formParams = $("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").serializeArray();
if($("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#showCopy_"+eid).attr("checked")){
showCopy = "1"
}else{
showCopy = "0"
}
$("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#ifrmViewType_"+eid).contents().find("#frmFlwCenter").find("#showCopy").attr("value",showCopy);
formAction ="/homepage/element/setting/"+formAction;
}else if(ebaseid=="news" || parseInt(ebaseid)==7||parseInt(ebaseid)==1||parseInt(ebaseid)==29){
formAction ="/page/element/compatible/NewsOperate.jsp";
tabTitle = $("#dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).contents().find("#tabTitle_"+eid).attr("value")
displayTitle = $("#encodeHTML").text(tabTitle).html();
whereKeyStr = window.frames["dialogIframe_"+eid+"_"+$("#setting_"+eid).attr("randomValue")].getNewsSettingString(eid);
formParams ={eid:eid,tabId:tabId,tabTitle:tabTitle,tabWhere:whereKeyStr,method:method};
}
if(tabTitle==''){
alert('<%=SystemEnv.getHtmlLabelName(15859,user.getLanguage())%>')
return false;
}
//alert(formAction)
$.post(formAction,formParams,function(data){
//alert(data)
if($.trim(data)==""){
if(method=='add'){
$("#tabSetting_"+eid+">tbody").append("<TR><TD><span id = tab_"+eid+"_"+tabId+" tabId='"+tabId+"' tabTitle='' tabWhere='"+whereKeyStr+"' showCopy='"+showCopy+"'></span></TD><TD width=100 lign='right'><a href='javascript:deleTab("+eid+","+tabId+",\""+ebaseid+"\")'><%=SystemEnv.getHtmlLabelName(91,user.getLanguage())%></a> <a href='javascript:editTab("+eid+","+tabId+",\""+ebaseid+"\")'><%=SystemEnv.getHtmlLabelName(22250,user.getLanguage())%></a></TD></TR>")
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).attr("tabCount",tabId);
$("#tab_"+eid+"_"+tabId).html(displayTitle);
$("#tab_"+eid+"_"+tabId).attr("tabTitle",tabTitle);
}else{
$("#tab_"+eid+"_"+tabId).html(displayTitle);
$("#tab_"+eid+"_"+tabId).attr("tabTitle",tabTitle);
$("#tab_"+eid+"_"+tabId).attr("showCopy",showCopy);
$("#tab_"+eid+"_"+tabId).attr("tabWhere",whereKeyStr);
}
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).dialog('close');
} else {
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).dialog('close');
}
});
}
},
close: function() {
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).dialog('destroy');
}
});
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).dialog('open');
$("#tabDiv_"+eid+"_"+$("#setting_"+eid).attr("randomValue")).height(373);
}catch(e){
alert(e.message)
}
}
/**
验证SQL语句
*/
function checkSql(Obj){
var sqlStr = jQuery(Obj).val();//event.srcElement.value;
sqlStr = sqlStr.replace(/\n/g,"");
sqlStr = sqlStr.replace(/\r/g,"");
event.srcElement.value = sqlStr;
sqlStr = " "+sqlStr.toUpperCase();
if(sqlStr.indexOf(' INSERT ')!=-1||sqlStr.indexOf(' UPDATE ')!=-1 || sqlStr.indexOf(' DELETE ')!=-1 || sqlStr.indexOf(' CREATE ')!=-1|| sqlStr.indexOf(' DROP ')!=-1 ){
//event.srcElement.value = "";
jQuery(Obj).val("");
alert("<%=SystemEnv.getHtmlLabelName(22949,user.getLanguage())%>")
}
}
function onBack()
{
var pagetype = "<%=pagetype %>";
if(pagetype=="loginview")
{
window.location="/homepage/base/LoginBase.jsp?hpid=<%=hpid%>";
}
else
{
window.location='/homepage/base/HomepageBase.jsp?hpid=<%=hpid%>&subCompanyId=<%=subCompanyId%>&opt=<%=opt%>';
}
}
function onBackList()
{
var pagetype = "<%=pagetype %>";
if(pagetype=="loginview")
{
window.location="/homepage/maint/LoginPageContent.jsp";
}
else
{
window.location='/homepage/maint/HomepageRight.jsp?subCompanyId=<%=subCompanyId%>';
}
}
function onOk(){
window.location="/homepage/maint/HomepageRight.jsp?subCompanyId=<%=subCompanyId%>";
}
function onAddedOrUn(eid,ebaseid,obj){
divCenter.style.display='inline';
var code="divCenter.style.display=\"none\";";
if(jQuery(obj).attr("status")=="add"){
if(confirm("<%=SystemEnv.getHtmlLabelName(21775,user.getLanguage())%>")){
jQuery(obj).attr("status","remove");
obj.src='/images/homepage/style/style1/remove_wev8.png';
url="/homepage/element/EsettingOperate.jsp?method=addtoass&eid="+eid;
GetContent(divCenter,url,false,code);
}
} else {
if(confirm("<%=SystemEnv.getHtmlLabelName(21776,user.getLanguage())%>")){
jQuery(obj).attr("status","add");
obj.src='/images/homepage/style/style1/add_wev8.png';
url="/homepage/element/EsettingOperate.jsp?method=removefromass&eid="+eid;
GetContent(divCenter,url,false,code);
}
}
}
//菜单
function onMenuDivClick(hpid,subCompanyId){
window.location="/homepage/Homepage.jsp?hpid="+hpid+"&subCompanyId="+subCompanyId+"&isfromportal=<%=isfromportal%>&isfromhp=<%=isfromhp%>"
}
function onSubMenuShow(obj){
var divCurrent=obj.parentElement;
var pSibling=divCurrent;
var subMenu=document.getElementById("divSubMenu");
subMenu.style.display='block';
subMenu.style.position="absolute";
//subMenu.style.width=pSibling.offsetWidth;
subMenu.style.posLeft=pSibling.offsetLeft;
subMenu.style.posTop=pSibling.offsetTop+pSibling.offsetHeight;
}
function onSubMenuHidden(obj){
var subMenu=document.getElementById("divSubMenu");
subMenu.style.display='none';
}
/*首页导航栏设置*/
var lastestSubDiv;
/*
cObj:Current Object
pObj:Pervious Sibling Object
sObj:Sub Menu Object
*/
function onShowSubMenu(cObj,sObj){
if (sObj.style.display=="none") {
/*初始化其显示的位置及大小*/
//var pObj=cObj.previousSibling;
var pObj=$(cObj).prev("div")[0];
$(sObj).css({
"position":"absolute",
"left":$(pObj).offset().left,
"top":$(pObj).offset().top+$(pObj).height()+10
})
if(lastestSubDiv!=null) lastestSubDiv.style.display="none";
lastestSubDiv=sObj;
sObj.style.display="";
//alert(sObj.offsetWidth+":"+pObj.offsetWidth)
var factDivWidth=pObj.offsetWidth+cObj.offsetWidth;
if(factDivWidth<sObj.offsetWidth) factDivWidth=sObj.offsetWidth;
sObj.style.width=factDivWidth;
if (sObj.canHaveChildren) {
var childDivs=sObj.children;
for(var i=0;i<childDivs.length;i++) {
var aChild=childDivs[i];
if(aChild.offsetWidth<factDivWidth) aChild.style.width=factDivWidth;
}
}
}
}
var x,y;
window.document.body.onmousemove = function(e){
e=e||event;
x = e.clientX;
y = e.clientY;
if(lastestSubDiv){
var _l = lastestSubDiv.offsetLeft;
var _t = lastestSubDiv.offsetTop;
var _w = lastestSubDiv.offsetWidth;
var _h = lastestSubDiv.offsetHeight;
if(x>_l+_w || x<_l){
lastestSubDiv.style.display = 'none';
lastestSubDiv = null;
}
}
}
//过滤元素标题中的特殊字符
function checkTextValid(id)
{
return true;
//注意:修改####处的字符,其它部分不许修改.
//if(/^[^####]*$/.test(form.elements[i].value))
if(/^[^\"+-\\|:;,='<>]*$/.test($("#"+id).val())){
return true;
}else{
alert("<%=SystemEnv.getHtmlLabelName(24950,user.getLanguage())%>:"+"\"+-\\|:;,='<>")
$("#"+id).val($("#"+id).attr("defautvalue"));
return false;
}
}
function showUnreadNumber(accountId){
var oSpan = document.getElementById("span"+accountId);
var oIframe = document.getElementById("iframe"+accountId);
var unreadMailNumber;
if(oIframe.contentWindow.document.body.innerText){
unreadMailNumber=jQuery.trim(oIframe.contentWindow.document.body.innerText);
}else{
unreadMailNumber=jQuery.trim(oIframe.contentWindow.document.body.lastChild.textContent);
}
oSpan.innerHTML = unreadMailNumber==-1 ? "<img src='/images/BacoError_wev8.gif' align='absmiddle' alt='<%=SystemEnv.getHtmlLabelName(20266,user.getLanguage())%>'>" : "(<b>"+unreadMailNumber+"</b>)";
}
function stockGopage(type,url){
if(type==0)
openFullWindowForXtable(url);
else
this.location = url;
}
//处理元素样式编辑时没有设置图标图片会出现残图现象
$(".iconEsymbol").bind('error',function(){
if($(this).attr("src")==''){
$(this).hide();
}
})
$(".toolbar").find("img").bind('error',function(){
if($(this).attr("src")==''){
$(this).hide();
}
})
$(".downarrowclass").bind('error',function(){
if($(this).attr("src")==''){
$(this).hide();
}
})
$(".rightarrowclass").bind('error',function(){
if($(this).attr("src")==''){
$(this).hide();
}
})
//-->
</SCRIPT>
<%@ include file="/js/homepage/Homepage_js.jsp" %>
<SCRIPT language="javascript" src="/js/datetime_wev8.js"></script>
<SCRIPT language="javascript" src="/js/JSDateTime/WdatePicker_wev8.js"></script>
<SCRIPT language="javascript" src="/js/selectDateTime_wev8.js"></script>