Przeglądaj źródła

个人资源换接口

jack 7 lat temu
rodzic
commit
4ac0687764
2 zmienionych plików z 5 dodań i 4 usunięć
  1. 3 2
      js/information.brow.js
  2. 2 2
      js/information.js

+ 3 - 2
js/information.brow.js

@ -767,13 +767,14 @@ $(".attentList").on("click","li",function(){
767 767
	
768 768
	//科研资源
769 769
	$.ajax({
770
		"url": "/ajax/resource/qapro",
770
		"url": "/ajax/resource/qaProPublish",
771 771
		"type": "get",
772 772
		"async": false,
773 773
		"data": {
774 774
			"professorId": professorId
775 775
		},
776 776
		"success": function(data) {
777
			console.log(data);
777 778
			if(data.success) {
778 779
				var pp=ifUserType(professorId)
779 780
				if(!pp.authType2) {
@ -810,7 +811,7 @@ $(".attentList").on("click","li",function(){
810 811
						$("#sharescrollbox").append(add);
811 812
						$('.applicant').eq(i).attr("resourceId", data.data[i].resourceId);
812 813
813
						$(".resourceImg").eq(i).attr("src", "/images/resource/" + data.data[i].resourceId + ".jpg");
814
						$(".resourceImg").eq(i).attr("src","/data/resource/" + data.data[i].images[0].imageSrc);
814 815
						$(".resourceImg").load(function() {})
815 816
							.error(function() {
816 817
								$(this).attr("src", "/images/default-resource.jpg");

+ 2 - 2
js/information.js

@ -2025,7 +2025,7 @@ $(function() {
2025 2025
		})
2026 2026
		//科研资源
2027 2027
	$.ajax({
2028
		"url": "/ajax/resource/qapro",
2028
		"url": "/ajax/resource/qaProPublish",
2029 2029
		"type": "get",
2030 2030
		"data": {
2031 2031
			"professorId": userid
@ -2061,7 +2061,7 @@ $(function() {
2061 2061
						});*/
2062 2062

2063 2063
					if(data.data[i].images.length) {
2064
						$add.find(".resourceImg").attr("src", "/images/resource/" + data.data[i].resourceId + ".jpg");
2064
						$add.find(".resourceImg").attr("src","/data/resource/" + data.data[i].images[0].imageSrc);
2065 2065
					} else {
2066 2066
						$add.find(".resourceImg").attr("src", "/images/default-resource.jpg");
2067 2067
					}