Pārlūkot izejas kodu

科任老师页面 动态切换数据

chenmy 6 gadi atpakaļ
vecāks
revīzija
4d0596ecd0

+ 0 - 1
TEAMModelOS/ClientApp/components/SAbargraph.vue

@@ -327,7 +327,6 @@
 // 		监听指令
 // 		监听指令
         zhuxhuang(a){
         zhuxhuang(a){
           if (a) {
           if (a) {
-            console.log(a,110120130)
             this.drawLine(a)
             this.drawLine(a)
           }
           }
         },
         },

+ 28 - 3
TEAMModelOS/ClientApp/components/SAchooseattention.vue

@@ -33,7 +33,7 @@
       <p class="choose_box_tilte">选择关注学年期</p>
       <p class="choose_box_tilte">选择关注学年期</p>
       <Cascader :data="selectterm" v-model="semester" placeholder="请选择年级" @on-change="listterm"></Cascader>
       <Cascader :data="selectterm" v-model="semester" placeholder="请选择年级" @on-change="listterm"></Cascader>
       <p class="choose_box_tilte" v-if="this.now_url == '/teach'">数据比较</p>
       <p class="choose_box_tilte" v-if="this.now_url == '/teach'">数据比较</p>
-      <Select v-model="model1" style="width:200px"  placeholder="请选择比较的数据"  v-if="this.now_url == '/teach'">
+      <Select v-model="model1" style="width:200px"  placeholder="请选择比较的数据"  v-if="this.now_url == '/teach'"  @on-change="datacompare">
         <Option v-for="item in selectcontrast" :value="item.value" :key="item.value">{{ item.label }}</Option>
         <Option v-for="item in selectcontrast" :value="item.value" :key="item.value">{{ item.label }}</Option>
       </Select>
       </Select>
     </div>
     </div>
@@ -136,6 +136,7 @@
             this.$store.state.linechart = response.result.data.linechart;
             this.$store.state.linechart = response.result.data.linechart;
                   })
                   })
       },
       },
+      //获取关注学年期
       listterm(value, selectedData) {
       listterm(value, selectedData) {
         if (this.now_url == '/saindex') {
         if (this.now_url == '/saindex') {
           this.$api.FindSelectTerm({})
           this.$api.FindSelectTerm({})
@@ -163,12 +164,15 @@
         } else if (this.now_url =='/teach') {
         } else if (this.now_url =='/teach') {
           this.$api.FindDynamicTerm({})
           this.$api.FindDynamicTerm({})
             .then((response) => {
             .then((response) => {
+              //console.log(response.result.data,33333)
               //获取新的学年期
               //获取新的学年期
               this.$store.state.selectterm = response.result.data.term;
               this.$store.state.selectterm = response.result.data.term;
               //获取新的数据对比
               //获取新的数据对比
               this.$store.state.selectcontrast = response.result.data.selectcontrast;
               this.$store.state.selectcontrast = response.result.data.selectcontrast;
               //获取新的考试次数情况
               //获取新的考试次数情况
               this.$store.state.selectexam = response.result.data.exam[0].data;
               this.$store.state.selectexam = response.result.data.exam[0].data;
+              //获取新的基础信息
+              this.$store.state.basicsdata = response.result.data.base;
               //获取各班平均分数排名
               //获取各班平均分数排名
               this.$store.state.barline = response.result.data.barecharts;
               this.$store.state.barline = response.result.data.barecharts;
               //获取及格率比较
               //获取及格率比较
@@ -180,8 +184,29 @@
             })
             })
         }
         }
        
        
-        }
-      
+      },
+      //动态数据比较
+      datacompare(value, selectedData) {
+        this.$api.FindDatacompare({})
+          .then((response) => {
+            //获取新的学年期
+            this.$store.state.selectterm = response.result.data.term;
+            //获取新的数据对比
+            this.$store.state.selectcontrast = response.result.data.selectcontrast;
+            //获取新的考试次数情况
+            this.$store.state.selectexam = response.result.data.exam[0].data;
+            //获取新的基础信息
+            this.$store.state.basicsdata = response.result.data.base;
+            //获取各班平均分数排名
+            this.$store.state.barline = response.result.data.barecharts;
+            //获取及格率比较
+            this.$store.state.annulus = response.result.data.annulus;
+            //获取PR百分等级
+            this.$store.state.accuracyPR = response.result.data.accuracyPR;
+            //获取历次总分统计图
+            this.$store.state.linechart = response.result.data.linechart;
+          })
+      }
     },
     },
   }
   }
 </script>
 </script>

+ 46 - 22
TEAMModelOS/ClientApp/components/SAchooseexam.vue

@@ -57,28 +57,51 @@
       },
       },
 
 
       //点击考试获取详情
       //点击考试获取详情
-      select_box(value){
-        this.$api.FindSelectExam({})
-          .then((response) => {
-            //console.log(response.result.data);
-            this.$store.state.selectgrade = response.result.data.selectgrade
-            //获取新的学年期
-            this.$store.state.selectterm = response.result.data.term
-            //获取新的考试次数情况
-            this.$store.state.selectexam = response.result.data.exam[0].data;
-            //获取新的基础信息
-            this.$store.state.basicsdata = response.result.data.base;
-            //获取新的各校成绩排名
-            this.$store.state.zhuxhuang = response.result.data.barecharts;
-            //获取新的各项科目表现
-            this.$store.state.leida = response.result.data.leida;
-            //获取新的科目表现对比
-            this.$store.state.pie = response.result.data.pie
-            //获取新的考试类型
-            this.$store.state.examtype = response.result.data.examtype;
-            //获取新的各校历次总分统计图
-            this.$store.state.linechart = response.result.data.linechart;
-                })
+      select_box(value) {
+        if (this.now_url == '/saindex') {
+          this.$api.FindSelectExam({})
+            .then((response) => {
+              //console.log(response.result.data);
+              this.$store.state.selectgrade = response.result.data.selectgrade
+              //获取新的学年期
+              this.$store.state.selectterm = response.result.data.term
+              //获取新的考试次数情况
+              this.$store.state.selectexam = response.result.data.exam[0].data;
+              //获取新的基础信息
+              this.$store.state.basicsdata = response.result.data.base;
+              //获取新的各校成绩排名
+              this.$store.state.zhuxhuang = response.result.data.barecharts;
+              //获取新的各项科目表现
+              this.$store.state.leida = response.result.data.leida;
+              //获取新的科目表现对比
+              this.$store.state.pie = response.result.data.pie
+              //获取新的考试类型
+              this.$store.state.examtype = response.result.data.examtype;
+              //获取新的各校历次总分统计图
+              this.$store.state.linechart = response.result.data.linechart;
+            })
+        } else if (this.now_url == '/teach') {
+          this.$api.FindClickExam({})
+            .then((response) => {
+              //获取新的学年期
+              this.$store.state.selectterm = response.result.data.term;
+              //获取新的数据对比
+              this.$store.state.selectcontrast = response.result.data.selectcontrast;
+              //获取新的考试次数情况
+              this.$store.state.selectexam = response.result.data.exam[0].data;
+              //获取新的基础信息
+              this.$store.state.basicsdata = response.result.data.base;
+              //获取各班平均分数排名
+              this.$store.state.barline = response.result.data.barecharts;
+              //获取及格率比较
+              this.$store.state.annulus = response.result.data.annulus;
+              //获取PR百分等级
+              this.$store.state.accuracyPR = response.result.data.accuracyPR;
+              //获取历次总分统计图
+              this.$store.state.linechart = response.result.data.linechart;
+            })
+        }
+      
       },
       },
       init() {
       init() {
         if (this.now_url == '/saindex') {
         if (this.now_url == '/saindex') {
@@ -91,6 +114,7 @@
         } else if (this.now_url == '/teach') {
         } else if (this.now_url == '/teach') {
           this.$api.FindTeachExam({})
           this.$api.FindTeachExam({})
             .then((response) => {
             .then((response) => {
+              console.log(response.result.data,45678999990000)
               this.$store.state.selectexam = response.result.data[0].data;
               this.$store.state.selectexam = response.result.data[0].data;
                   })
                   })
                   }
                   }

+ 9 - 0
TEAMModelOS/ClientApp/store/api.js

@@ -177,7 +177,16 @@ export default {
 
 
 
 
   //动态数据
   //动态数据
+  //选择关注学年期
   FindDynamicTerm: function () {
   FindDynamicTerm: function () {
     return fetch('/api/class/getExam?identity=TeachChangeterm');
     return fetch('/api/class/getExam?identity=TeachChangeterm');
+  },
+  //选择数据比较
+  FindDatacompare: function () {
+    return fetch('/api/class/getExam?identity=TeachChangeDatacompare');
+  },
+  //选择考试数据
+  FindClickExam: function () {
+    return fetch('/api/class/getExam?identity=TeachChangeExam');
   }
   }
 }
 }

+ 306 - 0
TEAMModelOS/JsonFile/TeachChangeDatacompare.json

@@ -0,0 +1,306 @@
+{
+  "grade": "1",
+  "value": "gaozhong",
+  "label": "高中",
+  "term": [
+    {
+      "value": "2018",
+      "label": "2018年",
+      "children": [
+        {
+          "value": "shang",
+          "label": "上学期"
+        },
+        {
+          "value": "xia",
+          "label": "下学期"
+        }
+      ]
+    },
+    {
+      "value": "2019",
+      "label": "2019年",
+      "children": [
+        {
+          "value": "shang",
+          "label": "上学期"
+        }
+      ]
+    }
+  ],
+  "selectcontrast": [
+    {
+      "value": "1",
+      "label": "任教班 vs. 校平均"
+    }
+  ],
+  "exam": [
+    {
+      "page": "1",
+      "returnnum": "6",
+      "data": [
+        {
+          "id": "1",
+          "title": "2019年第6次考试学情诊断",
+          "type": "校考",
+          "time": "2018-11-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "2",
+          "title": "2019年第5次考试学情诊断",
+          "type": "校考",
+          "time": "2018-11-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "3",
+          "title": "2019年第4次考试学情诊断",
+          "type": "校考",
+          "time": "2018-10-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "4",
+          "title": "2019年第3次考试学情诊断",
+          "type": "校考",
+          "time": "2018-10-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "5",
+          "title": "2019年第2次考试学情诊断",
+          "type": "测试",
+          "time": "2018-10-05",
+          "typename": "测验",
+          "num": "1563"
+        },
+        {
+          "id": "6",
+          "title": "2019年第1次考试学情诊断",
+          "type": "校考",
+          "time": "2018-10-05",
+          "typename": "校级联考",
+          "num": "1563"
+        }
+      ]
+    }
+  ],
+  "base": [
+    {
+      "id": "1",
+      "title": "本次统计学生数",
+      "num": "690",
+      "total": "全校统计学生数:715",
+      "areadata": "区域统计学生数:980"
+    },
+    {
+      "id": "4",
+      "title": "任教平均得分",
+      "num": "69.5",
+      "total": "全校平均得分:76",
+      "areadata": "区域平均得分:74"
+    },
+    {
+      "id": "5",
+      "title": "任教最高总分",
+      "num": "94",
+      "total": "全校最高分:96",
+      "areadata": "区域最高分:96"
+    },
+    {
+      "id": "6",
+      "title": "任教最低总分",
+      "num": "62",
+      "total": "全校最低分:50",
+      "areadata": "区域最低分:50"
+    }
+  ],
+  "barecharts":{
+  "mode": false,
+  "titlename": "各班平均分数排名",
+  "titledata": [ "语文", "标准差" ],
+  "object_name": [ "全区所有","全校所有","任课班","高一.一班", "高一.二班", "高一.三班", "高一.四班", "高一.五班", "高一.六班", "高一.七班" ],
+  "one_data": {
+    "name": "语文",
+    "data": [ "75","60","82","62", "78", "87", "66", "80", "73", "79" ]
+  },
+  "two_data": {
+    "name": "null",
+    "data": []
+  },
+  "three_data": {
+    "name": "null",
+    "data": []
+  },
+  "four_data": {
+    "name": "null",
+    "data": []
+  },
+  "five_data": {
+    "name": "null",
+    "data": []
+  },
+  "six_data": {
+    "name": "null",
+    "data": []
+  },
+  "last_data": {
+    "name": "标准差",
+    "data": [ "86", "89", "80", "85", "85", "85", "85", "85", "85", "85" ]
+  }
+},
+  "annulus": {
+    "primarycolor": [ "#4169E1", "#00FFFF", "#F4A460" ],
+    "title": [ "本区及格率", "本校及格率", "任教班及格率" ],
+    "areadata": {
+      "dataname": "区域占比",
+      "occupydata": "78",
+      "remaindata": "22",
+      "subheadtitle": "本区及格率"
+    },
+    "schooldata": {
+      "dataname": "学校占比",
+      "occupydata": "85",
+      "remaindata": "15",
+      "subheadtitle": "本校及格率"
+    },
+    "teachingdata": {
+      "dataname": "任教班占比",
+      "occupydata": "82",
+      "remaindata": "18",
+      "subheadtitle": "任教班及格率"
+    }
+  },
+  "accuracyPR": {
+    "accuracydata": [
+      {
+        "id": "1",
+        "idname": "pie_one",
+        "echartstitle": "任教班级答对率",
+        "titlenum": "78",
+        "occupy": "78",
+        "residue": "22",
+        "data_name": "任教班级答对占比",
+        "high_accuracy": "70",
+        "low_accuracy": "40"
+      },
+      {
+        "id": "2",
+        "idname": "pie_two",
+        "echartstitle": "校级答对率",
+        "titlenum": "75",
+        "occupy": "75",
+        "residue": "25",
+        "high_accuracy": "68",
+        "low_accuracy": "46"
+      },
+      {
+        "id": "3",
+        "idname": "pie_three",
+        "echartstitle": "区级答对率",
+        "titlenum": "76",
+        "occupy": "76",
+        "residue": "24",
+        "high_accuracy": "65",
+        "low_accuracy": "40"
+      }
+    ],
+    "percentdata": [
+      {
+        "id": "4",
+        "idname": "pr_one",
+        "echartstitle": "任教班级PR值",
+        "titlenum": "73",
+        "occupy": "73",
+        "residue": "27",
+        "icon_type": "md-arrow-dropup",
+        "icon_color": "icon_top"
+      },
+      {
+        "id": "5",
+        "idname": "pr_two",
+        "echartstitle": "校级排名PR值",
+        "titlenum": "70",
+        "occupy": "70",
+        "residue": "30",
+        "icon_type": "md-arrow-dropup",
+        "icon_color": "icon_top"
+      },
+      {
+        "id": "6",
+        "idname": "pr_three",
+        "echartstitle": "区级排名PR值",
+        "titlenum": "95",
+        "occupy": "95",
+        "residue": "5",
+        "icon_type": "md-arrow-dropup",
+        "icon_color": "icon_top"
+      }
+    ]
+  },
+  "examtype": [
+    {
+      "value": "ceyan",
+      "label": "测验"
+    },
+    {
+      "value": "yuekao",
+      "label": "月考"
+    },
+    {
+      "value": "zhoukao",
+      "label": "周考"
+    },
+    {
+      "value": "nianjikao",
+      "label": "年级考"
+    },
+    {
+      "value": "liankao",
+      "label": "区域联考"
+    },
+    {
+      "value": "qimo",
+      "label": "期末"
+    }
+  ],
+  "linechart":{
+  "model": true,
+  "obj_name": [ "高一.一班", "高一.二班", "高一.三班", "高一.四班","高一五班" ],
+  "obj_data": [ "2019第一次校考", "2019第二次校考", "2019第三次校考", "2019第四次校考", "2019第五次校考" ],
+    "obj_series": [
+      {
+        "name": "校内所有",
+        "data": [ "440", "480", "440", "452", "468" ]
+      },
+      {
+        "name": "高一.一班",
+        "data": [ "410", "430", "460", "480", "460" ]
+      },
+      {
+        "name": "高一.二班",
+        "data": [ "450", "440", "480", "430", "420" ]
+      },
+      {
+        "name": "高一.三班",
+        "data": [ "430", "430", "440", "430", "410" ]
+      },
+      {
+        "name": "高一.四班",
+        "data": [ "420", "480", "430", "410", "420" ]
+      },
+      {
+        "name": "高一.五班",
+        "data": [ "470", "480", "460", "440", "420" ]
+      }
+    ],
+  "start_color": "rgba(0,206,209,0.6)",
+  "middle_color": "rgba(72,209,204,0.3)",
+  "end_color": "rgba(64,224,208,0.1)"
+}
+}

+ 306 - 0
TEAMModelOS/JsonFile/TeachChangeExam.json

@@ -0,0 +1,306 @@
+{
+  "grade": "1",
+  "value": "gaozhong",
+  "label": "高中",
+  "term": [
+    {
+      "value": "2018",
+      "label": "2018年",
+      "children": [
+        {
+          "value": "shang",
+          "label": "上学期"
+        },
+        {
+          "value": "xia",
+          "label": "下学期"
+        }
+      ]
+    },
+    {
+      "value": "2019",
+      "label": "2019年",
+      "children": [
+        {
+          "value": "shang",
+          "label": "上学期"
+        }
+      ]
+    }
+  ],
+  "selectcontrast": [
+    {
+      "value": "1",
+      "label": "任教班 vs. 校平均"
+    }
+  ],
+  "exam": [
+    {
+      "page": "1",
+      "returnnum": "6",
+      "data": [
+        {
+          "id": "1",
+          "title": "2019年第6次考试学情诊断",
+          "type": "校考",
+          "time": "2018-11-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "2",
+          "title": "2019年第5次考试学情诊断",
+          "type": "校考",
+          "time": "2018-11-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "3",
+          "title": "2019年第4次考试学情诊断",
+          "type": "校考",
+          "time": "2018-10-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "4",
+          "title": "2019年第3次考试学情诊断",
+          "type": "校考",
+          "time": "2018-10-05",
+          "typename": "校级联考",
+          "num": "1563"
+        },
+        {
+          "id": "5",
+          "title": "2019年第2次考试学情诊断",
+          "type": "测试",
+          "time": "2018-10-05",
+          "typename": "测验",
+          "num": "1563"
+        },
+        {
+          "id": "6",
+          "title": "2019年第1次考试学情诊断",
+          "type": "校考",
+          "time": "2018-10-05",
+          "typename": "校级联考",
+          "num": "1563"
+        }
+      ]
+    }
+  ],
+  "base": [
+    {
+      "id": "1",
+      "title": "本次统计学生数",
+      "num": "850",
+      "total": "全校统计学生数:850",
+      "areadata": "区域统计学生数:1700"
+    },
+    {
+      "id": "4",
+      "title": "任教平均得分",
+      "num": "72",
+      "total": "全校平均得分:76",
+      "areadata": "区域平均得分:74"
+    },
+    {
+      "id": "5",
+      "title": "任教最高总分",
+      "num": "96",
+      "total": "全校最高分:96",
+      "areadata": "区域最高分:96"
+    },
+    {
+      "id": "6",
+      "title": "任教最低总分",
+      "num": "50",
+      "total": "全校最低分:43",
+      "areadata": "区域最低分:43"
+    }
+  ],
+  "barecharts":{
+  "mode": false,
+  "titlename": "各班平均分数排名",
+  "titledata": [ "语文", "标准差" ],
+  "object_name": [ "全区所有","全校所有","任课班","高一.一班", "高一.二班", "高一.三班", "高一.四班", "高一.五班", "高一.六班", "高一.七班" ],
+  "one_data": {
+    "name": "语文",
+    "data": [ "78","69","76","68", "90", "65", "73", "78", "92", "75" ]
+  },
+  "two_data": {
+    "name": "null",
+    "data": []
+  },
+  "three_data": {
+    "name": "null",
+    "data": []
+  },
+  "four_data": {
+    "name": "null",
+    "data": []
+  },
+  "five_data": {
+    "name": "null",
+    "data": []
+  },
+  "six_data": {
+    "name": "null",
+    "data": []
+  },
+  "last_data": {
+    "name": "标准差",
+    "data": [ "75", "80", "73", "73", "75", "75", "75", "75", "75", "75" ]
+  }
+},
+  "annulus": {
+    "primarycolor": [ "#4169E1", "#00FFFF", "#F4A460" ],
+    "title": [ "本区及格率", "本校及格率", "任教班及格率" ],
+    "areadata": {
+      "dataname": "区域占比",
+      "occupydata": "64",
+      "remaindata": "36",
+      "subheadtitle": "本区及格率"
+    },
+    "schooldata": {
+      "dataname": "学校占比",
+      "occupydata": "72",
+      "remaindata": "28",
+      "subheadtitle": "本校及格率"
+    },
+    "teachingdata": {
+      "dataname": "任教班占比",
+      "occupydata": "85",
+      "remaindata": "15",
+      "subheadtitle": "任教班及格率"
+    }
+  },
+  "accuracyPR": {
+    "accuracydata": [
+      {
+        "id": "1",
+        "idname": "pie_one",
+        "echartstitle": "任教班级答对率",
+        "titlenum": "78",
+        "occupy": "78",
+        "residue": "22",
+        "data_name": "任教班级答对占比",
+        "high_accuracy": "66",
+        "low_accuracy": "35"
+      },
+      {
+        "id": "2",
+        "idname": "pie_two",
+        "echartstitle": "校级答对率",
+        "titlenum": "75",
+        "occupy": "75",
+        "residue": "25",
+        "high_accuracy": "70",
+        "low_accuracy": "42"
+      },
+      {
+        "id": "3",
+        "idname": "pie_three",
+        "echartstitle": "区级答对率",
+        "titlenum": "63",
+        "occupy": "63",
+        "residue": "37",
+        "high_accuracy": "67",
+        "low_accuracy": "23"
+      }
+    ],
+    "percentdata": [
+      {
+        "id": "4",
+        "idname": "pr_one",
+        "echartstitle": "任教班级PR值",
+        "titlenum": "75",
+        "occupy": "75",
+        "residue": "25",
+        "icon_type": "md-arrow-dropup",
+        "icon_color": "icon_top"
+      },
+      {
+        "id": "5",
+        "idname": "pr_two",
+        "echartstitle": "校级排名PR值",
+        "titlenum": "68",
+        "occupy": "68",
+        "residue": "32",
+        "icon_type": "md-arrow-dropdown",
+        "icon_color": "icon_down"
+      },
+      {
+        "id": "6",
+        "idname": "pr_three",
+        "echartstitle": "区级排名PR值",
+        "titlenum": "83",
+        "occupy": "83",
+        "residue": "17",
+        "icon_type": "md-arrow-dropdown",
+        "icon_color": "icon_down"
+      }
+    ]
+  },
+  "examtype": [
+    {
+      "value": "ceyan",
+      "label": "测验"
+    },
+    {
+      "value": "yuekao",
+      "label": "月考"
+    },
+    {
+      "value": "zhoukao",
+      "label": "周考"
+    },
+    {
+      "value": "nianjikao",
+      "label": "年级考"
+    },
+    {
+      "value": "liankao",
+      "label": "区域联考"
+    },
+    {
+      "value": "qimo",
+      "label": "期末"
+    }
+  ],
+  "linechart":{
+  "model": true,
+    "obj_name": [ "高一.一班", "高一.二班", "高一.三班", "高一.四班", "高一.五班" ],
+  "obj_data": [ "2019第一次校考", "2019第二次校考", "2019第三次校考", "2019第四次校考", "2019第五次校考" ],
+    "obj_series": [
+      {
+        "name": "校内所有",
+        "data": [ "435", "430", "440", "452", "468" ]
+      },
+      {
+        "name": "高一.一班",
+        "data": [ "430", "460", "460", "480", "460" ]
+      },
+      {
+        "name": "高一.二班",
+        "data": [ "440", "450", "480", "430", "420" ]
+      },
+      {
+        "name": "高一.三班",
+        "data": [ "470", "410", "440", "430", "410" ]
+      },
+      {
+        "name": "高一.四班",
+        "data": [ "430", "450", "430", "410", "420" ]
+      },
+      {
+        "name": "高一.五班",
+        "data": [ "428", "438", "460", "440", "420" ]
+      }
+    ],
+  "start_color": "rgba(0,206,209,0.6)",
+  "middle_color": "rgba(72,209,204,0.3)",
+  "end_color": "rgba(64,224,208,0.1)"
+}
+}

+ 1 - 1
TEAMModelOS/JsonFile/TeachChangeterm.json

@@ -1,4 +1,4 @@
-{
+{
   "grade": "1",
   "grade": "1",
   "value": "gaozhong",
   "value": "gaozhong",
   "label": "高中",
   "label": "高中",