xiatian 5 år sedan
förälder
incheckning
76606b7ca0

+ 1 - 0
src/modules/reports/views/ComputeJobList.vue

@@ -58,6 +58,7 @@
                 plain
                 :disabled="disStopJob(scope.row)"
                 @click="stopJob(scope.row)"
+                icon="el-icon-remove-outline"
               >
                 终止计算
               </el-button>

+ 12 - 2
src/modules/reports/views/ExamStudentOnline.vue

@@ -40,12 +40,22 @@
             <div class="row-div">
               <span style="float:left;"> 学校在线学生</span
               ><span style="float:right;"
-                ><el-button size="small" type="primary" @click="toInfoPage">
+                ><el-button
+                  size="small"
+                  type="primary"
+                  icon="el-icon-document"
+                  @click="toInfoPage"
+                >
                   详情
                 </el-button></span
               >
               <span style="float:right;margin-right: 10px;"
-                ><el-button size="small" type="primary" @click="refresh">
+                ><el-button
+                  size="small"
+                  type="primary"
+                  icon="el-icon-refresh"
+                  @click="refresh"
+                >
                   刷新
                 </el-button></span
               >

+ 10 - 5
src/modules/reports/views/Overview.vue

@@ -61,8 +61,9 @@
                 plain
                 :disabled="disSetScore(scope.row)"
                 @click="openEdtDialog(scope.row)"
+                icon="el-icon-edit"
               >
-                分段设定
+                分
               </el-button>
               <el-button
                 v-if="scope.row.reportStatus == 'NONE'"
@@ -70,8 +71,9 @@
                 type="primary"
                 plain
                 @click="doCompute(scope.row)"
+                icon="el-icon-finished"
               >
-                开始统
+                计
               </el-button>
               <el-button
                 v-if="scope.row.reportStatus != 'NONE'"
@@ -80,8 +82,9 @@
                 plain
                 :disabled="disReCompute(scope.row)"
                 @click="doCompute(scope.row)"
+                icon="el-icon-refresh-right"
               >
-                重新统计
+                重
               </el-button>
               <el-button
                 size="mini"
@@ -89,16 +92,18 @@
                 :disabled="disViewReport(scope.row)"
                 plain
                 @click="viewReport(scope.row.id)"
+                icon="el-icon-view"
               >
-                查看报表
+                报表
               </el-button>
               <el-button
                 size="mini"
                 type="primary"
                 plain
                 @click="viewComputeJob(scope.row.id)"
+                icon="el-icon-document"
               >
-                计算详情
+                详情
               </el-button>
             </div>
           </el-table-column>