miaofuhao 2 anni fa
parent
commit
38c9c1a91c

+ 1 - 1
WebUI/CallCenterWeb.UI/ReportForm/assessmentDataStatisticsNew.html

@@ -412,7 +412,7 @@
412 412
 					if (returnValue.edate) {
413 413
 						$(".statisticalPeriod").text(returnValue.strdate + " 至 " + returnValue.edate)
414 414
 					}else{
415
-						$(".statisticalPeriod").text(returnValue.strdate + "月" )
415
+						$(".statisticalPeriod").text(helper.DateFormat.getPreMonth(dataParams.date+"-21") +"至"+dataParams.date+"-20" )
416 416
 					}
417 417
                     $("#titleText").text("12345联动服务工作" + returnValue.month + "月份考核数据表")
418 418
 

+ 6 - 1
WebUI/CallCenterWeb.UI/citizenNode/script/config.js

@@ -4,4 +4,9 @@ if(huayi == undefined) {
4 4
 huayi.config = {
5 5
 	callcenter_url: "http://docking.zwfw.anyang.gov.cn:9998/",	//	生产环境
6 6
 //		callcenter_url: "http://192.168.8.9:1042/",	//	生产环境
7
-};
7
+};
8
+if(window.document.location.href.indexOf("https")!==-1){   
9
+	huayi.config.callcenter_url = "https://docking.zwfw.anyang.gov.cn/"
10
+} else if(window.document.location.href.indexOf("http")!==-1){
11
+	huayi.config.callcenter_url = "http://docking.zwfw.anyang.gov.cn:65527/"
12
+}