xiatian 4 سال پیش
والد
کامیت
fbb7cb0d61
2فایلهای تغییر یافته به همراه15 افزوده شده و 6 حذف شده
  1. 5 3
      src/modules/oe/views/examDetail.vue
  2. 10 3
      src/modules/oe/views/scoreStatistics.vue

+ 5 - 3
src/modules/oe/views/examDetail.vue

@@ -365,7 +365,7 @@
               ></el-option>
             </el-select>
           </el-form-item>
-          <el-form-item label="详情描述" style="margin-top:15px;">
+          <el-form-item label="详情描述" style="margin-top: 15px">
             <el-input
               v-model="auditForm.disciplineDetail"
               type="textarea"
@@ -384,7 +384,7 @@
       <el-dialog title="图片作答" :visible.sync="downloadImageDialogVisible">
         <el-form>
           <el-form-item label="作答结果">
-            <div style="width:580px;padding-left:80px;">
+            <div style="width: 580px; padding-left: 80px">
               <el-upload
                 :class="{ disabled: true }"
                 action
@@ -475,7 +475,8 @@ export default {
         infoCollector: null,
         hasVirtual: null,
         ORG_FIND_ALL: false, //查询所有机构
-        examStageId: null
+        examStageId: null,
+        creator: null
       },
       getExamCondition: {
         params: {
@@ -647,6 +648,7 @@ export default {
         type: "warning"
       }).then(() => {
         this.form.rootOrgId = this.user.rootOrgId;
+        this.form.creator = this.user.userId;
         this.$http
           .get(this.exportUrl, {
             params: {

+ 10 - 3
src/modules/oe/views/scoreStatistics.vue

@@ -198,7 +198,9 @@
               placeholder="下限"
             ></el-input>
           </el-col>
-          <el-col :span="2" style="text-align:center;color:#c0c4cc;">——</el-col>
+          <el-col :span="2" style="text-align: center; color: #c0c4cc"
+            >——</el-col
+          >
           <el-col :span="9">
             <el-input
               size="small"
@@ -254,7 +256,8 @@ export default {
         startLimit: "",
         endLimit: "",
         ORG_FIND_ALL: false, //查询所有机构
-        examStageId: null
+        examStageId: null,
+        creator: null
       },
       getExamCondition: {
         params: {
@@ -381,6 +384,7 @@ export default {
     },
     asyncExportData() {
       this.form.rootOrgId = this.user.rootOrgId;
+      this.form.creator = this.user.userId;
       this.$http
         .get(this.exportUrl, {
           params: {
@@ -396,6 +400,7 @@ export default {
     },
     _exportData() {
       this.exportLoading = true;
+      this.form.creator = this.user.userId;
       this.$http
         .get(this.exportUrl, {
           params: {
@@ -444,7 +449,9 @@ export default {
       return p1 - p2;
     }
   },
-  created() {}
+  created() {
+    this.form.creator = this.user.userId;
+  }
 };
 </script>
 <style scoped src="../style/common.css"></style>