Browse Source

第二部分

gzb
guozhongbo 1 year ago
parent
commit
0fdbef3498
3 changed files with 10 additions and 10 deletions
  1. 2
    2
      css/common.css
  2. 6
    6
      js/index.js
  3. 2
    2
      js/section_2.js

+ 2
- 2
css/common.css View File

57
   margin-bottom: 6mm;
57
   margin-bottom: 6mm;
58
   height: 38mm;
58
   height: 38mm;
59
   border-radius: 5mm;
59
   border-radius: 5mm;
60
-  color: #fff;
61
-  background-color: #2D8CF0;
60
+  color: black;
61
+  /* background-color: #2D8CF0; */
62
   overflow: hidden;
62
   overflow: hidden;
63
 }
63
 }
64
 .abstract_left {
64
 .abstract_left {

+ 6
- 6
js/index.js View File

2
   function loadSectionHtml(sectionsData) {
2
   function loadSectionHtml(sectionsData) {
3
 
3
 
4
     var loadHtmlArr = [
4
     var loadHtmlArr = [
5
-      // "cover", //封面
6
-      // "preface", //前言
7
-      // "section_1",
5
+      "cover", //封面
6
+      "preface", //前言
7
+      "section_1",
8
       "section_2",
8
       "section_2",
9
-      // "section_3",
10
-      // "section_4",
11
-      // "section_5",
9
+      "section_3",
10
+      "section_4",
11
+      "section_5",
12
     ];
12
     ];
13
     $(".pdf_root").html(loadHtmlArr.map(function (htmlName) {
13
     $(".pdf_root").html(loadHtmlArr.map(function (htmlName) {
14
       return "<div class='" + htmlName + "_html_root'></div>";
14
       return "<div class='" + htmlName + "_html_root'></div>";

+ 2
- 2
js/section_2.js View File

2
   var parameter = $(".section_2_html_root").data("page-params");
2
   var parameter = $(".section_2_html_root").data("page-params");
3
   parameter = JSON.parse(parameter);
3
   parameter = JSON.parse(parameter);
4
   var sectionsHtmlArr = [
4
   var sectionsHtmlArr = [
5
-    // "section_2_class_all", //全科成绩对比
5
+    "section_2_class_all", //全科成绩对比
6
     // "section_2_class_single", //单科成绩对比
6
     // "section_2_class_single", //单科成绩对比
7
     // "section_2_level", //分数等级
7
     // "section_2_level", //分数等级
8
-    "section_2_part",
8
+    // "section_2_part",
9
     // "section_2_lin",
9
     // "section_2_lin",
10
     // "section_2_excellent"
10
     // "section_2_excellent"
11
   ];
11
   ];

Loading…
Cancel
Save