zhangjie 1 tahun lalu
induk
melakukan
a8d7a50f4f

+ 4 - 4
src/modules/mark/components/ScoreReportPreview.vue

@@ -9,11 +9,11 @@
     append-to-body
     fullscreen
   >
-    <div slot="title">
+    <div class="box-justify" slot="title">
       <h2 class="el-dialog__title">成绩报告</h2>
-      <div class="el-dialog__headerbtn">
-        <button type="primary" @click="toExportScore">下载报告</button>
-        <button type="primary" @click="cancel">取消</button>
+      <div>
+        <el-button type="primary" @click="toExportScore">下载报告</el-button>
+        <el-button type="primary" @click="cancel">取消</el-button>
       </div>
     </div>
 

+ 1 - 1
src/modules/mark/components/markDetail/MarkDetailIssue.vue

@@ -122,7 +122,7 @@
             <el-button
               class="btn-primary"
               type="text"
-              @click="toSimpleReset([scope.row])"
+              @click="toSimpleReset(scope.row)"
               >处理</el-button
             >
           </template>

+ 4 - 4
src/modules/mark/components/report/ReportTeacher.vue

@@ -18,7 +18,7 @@
         <tr>
           <th>任课老师</th>
           <th>班级</th>
-          <th>有效人数</th>
+          <!-- <th>有效人数</th> -->
           <th>最高分</th>
           <th>最低分</th>
           <th>及格数</th>
@@ -26,12 +26,12 @@
           <th>优秀数</th>
           <th>优秀率(%)</th>
           <th>平均分</th>
-          <th>相对平均分</th>
+          <!-- <th>相对平均分</th> -->
         </tr>
         <tr v-for="(item, ind) in tgroup" :key="ind">
           <td>{{ item.teacherName }}</td>
           <td>{{ item.className }}</td>
-          <td>{{ item.totalCount }}</td>
+          <!-- <td>{{ item.totalCount }}</td> -->
           <td>{{ item.maxScore }}</td>
           <td>{{ item.minScore }}</td>
           <td>{{ item.passCount }}</td>
@@ -39,7 +39,7 @@
           <td>{{ item.excellentCount }}</td>
           <td>{{ item.excellentRate }}</td>
           <td>{{ item.avgScore }}</td>
-          <td>{{ item.relativeAvgScore }}</td>
+          <!-- <td>{{ item.relativeAvgScore }}</td> -->
         </tr>
       </table>
     </report-box>