浏览代码

学校官网跳转判断,初级中学改成中学

zwq 2 年之前
父节点
当前提交
36bf302db8

+ 1 - 1
nngkxxdp/src/main/resources/static/school/js/schoolDetail.js

@@ -190,7 +190,7 @@ function getSchoolType(id) {
 			return '小学';
 			break;
 		case 2:
-			return '初级中学';
+			return '中学';
 			break;
 		case 6:
 			return '高等院校';

+ 2 - 2
nngkxxdp/src/main/resources/static/school/school.html

@@ -290,7 +290,7 @@
                 return '小学';
                 break;
             case 2:
-                return '初级中学';
+                return '中学';
                 break;
             case 6:
                 return '高等院校';
@@ -375,7 +375,7 @@
         }
     }
     function gotoOfficial(number) {
-        if (schoolData[number].website != null) {
+        if (schoolData[number].website != null && schoolData[number].website != '') {
             window.location.href = schoolData[number].website;
         }
     }