“liting 6 роки тому
батько
коміт
1600d6cf0c

+ 1 - 1
package-lock.json

@@ -1,6 +1,6 @@
 {
   "name": "aft-portal",
-  "version": "2.0.6",
+  "version": "1.0.0",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {

+ 1 - 1
src/js/newMenu/patentList.js

@@ -320,7 +320,7 @@ $(function () {
         })
     }
     function heigFun(index){
-        let ulH = $('.industryList ul').height();
+        let ulH = $('.serviceList .industry').eq(index).find('.industryList ').height();
         if ($('.industry').eq(index).hasClass('activeH')) {
             $('.industry').eq(index).removeClass('activeH');
             $('.industry').eq(index).height(52);

+ 0 - 1
src/js/public.js

@@ -1,6 +1,5 @@
 $(function(){
 	//导航
-	
 	$(".index_blur").html("×");
 	$(".pub_fix").after("<div class='right_cebian'>侧边导航</div>");
 	$(".index_blur").click(function(){

+ 6 - 4
src/js/thinkTank/policyList.js

@@ -52,7 +52,7 @@ $(function () {
 		$.ajax({
 			method: "get",
 			dataType: "json",
-			url: globalConfig.context + "/portal/news/list",
+			url: globalConfig.context + "/portal/policy/list",
 			data: {
 				pageNo: pageNo || 1,
 				pageSize: pageSize,
@@ -60,6 +60,7 @@ $(function () {
 				provinceId: Province != 999 ? Province : undefined
 			},
 			success: function (data) {
+				console.log(data)
 				var theArr = [];
 				thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
 				if (data.data && data.data.list) {
@@ -67,9 +68,10 @@ $(function () {
 						let thisdata = data.data.list[i];
 						var id = thisdata.id;
 						var title = thisdata.title; //标题
-						var time = thisdata.createTimeFormattedDate; //日期
-						var day = time.substr(8, 2); //号
-						var month = time.substr(0, 7) //年、月
+						var timeAll =new Date(thisdata.releaseDate)
+						var time = timeAll.toLocaleDateString();
+						var day = timeAll.getDate(); //号
+						var month =timeAll.getFullYear()+'-'+ timeAll.getMonth(); //年、月
 						var summary = thisdata.summary; //简介
 						if (summary == null) {
 							summary == '暂无内容'