zhangjie 1 year ago
parent
commit
a21689f337

+ 1 - 0
src/modules/base/views/UserManage.vue

@@ -118,6 +118,7 @@
           label="姓名"
           width="120"
         ></el-table-column>
+        <el-table-column prop="mobileNumber" label="手机号"></el-table-column>
         <el-table-column prop="orgName" label="所在机构"></el-table-column>
         <el-table-column prop="roles" label="角色">
           <template slot-scope="scope">

+ 7 - 3
src/modules/mark/components/markParam/MarkParamGroup.vue

@@ -288,9 +288,13 @@ export default {
     async toDelete(row) {
       if (this.deleting) return;
 
-      const confirm = await this.$confirm(`确定要删除当前分组吗?`, "提示", {
-        type: "warning",
-      }).catch(() => {});
+      const confirm = await this.$confirm(
+        `删除分组会清理评卷任务,确定要删除当前分组吗?`,
+        "提示",
+        {
+          type: "warning",
+        }
+      ).catch(() => {});
       if (confirm !== "confirm") return;
 
       this.deleting = true;

+ 6 - 3
src/modules/mark/components/markParam/MarkParamStructure.vue

@@ -136,7 +136,10 @@
           </template>
         </el-table-column>
         <el-table-column label="每题间隔分" width="120">
-          <template slot-scope="scope" v-if="scope.row.mainFirstSub">
+          <template
+            slot-scope="scope"
+            v-if="scope.row.mainFirstSub && !scope.row.objective"
+          >
             <el-input-number
               v-model="intervalScorePerTopic[scope.row.mainId]"
               class="width-full"
@@ -152,7 +155,7 @@
           </template>
         </el-table-column>
         <el-table-column prop="intervalScore" label="间隔分" width="120">
-          <template slot-scope="scope">
+          <template slot-scope="scope" v-if="!scope.row.objective">
             <el-input-number
               v-model="scope.row.intervalScore"
               class="width-full"
@@ -468,7 +471,7 @@ export default {
         if (!item.totalScore) {
           errorFields.push("小题满分");
         }
-        if (!item.intervalScore) {
+        if (!item.intervalScore && !item.objective) {
           errorFields.push("评卷间隔分");
         }
         if (errorFields.length) {