From 8c6cf205affbbc8ada74f00a7ca25ebca867e9ed Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Mon, 27 Sep 2021 11:44:44 +0800
Subject: [PATCH] 图表颜色

---
 src/views/trainExam/singleperformance.vue |   32 ++++++++++++++++++++++----------
 1 files changed, 22 insertions(+), 10 deletions(-)

diff --git a/src/views/trainExam/singleperformance.vue b/src/views/trainExam/singleperformance.vue
index 96644ac..ad770e3 100644
--- a/src/views/trainExam/singleperformance.vue
+++ b/src/views/trainExam/singleperformance.vue
@@ -38,7 +38,7 @@
               {{ row.learnGrade == -1 ? "" : row.allGrade }}
             </template>
             <template slot-scope="{ row }" slot="qualified">
-              {{ row.learnGrade == -1 ? "" : row.qualified == 0?"合格":row.qualified==1?"不合格":'' }}
+              {{ row.qualified == -1 ? "" : row.qualified==0?"合格":row.qualified==1?"不合格":row.qualified==3?"缺考,成绩无效":'' }}
             </template>
 
             <template slot-scope="{ row }" slot="menu">
@@ -139,7 +139,7 @@
             label: "考试名称",
             prop: "examName",
             search: true,
-            searchSpan: 4,
+            searchSpan: 5,
             slot: true,
             viewDisplay:false,
             // 表单新增时是否禁止
@@ -149,7 +149,7 @@
             // 表单新增时是否为查看模式
             addDetail: false,
             // 表单编辑时是否禁止
-            editDisabled: false,
+            editDisabled: true,
             // 表单编辑时是否可见
             editDisplay: false,
             // 表单编辑时是否为查看模式
@@ -161,7 +161,8 @@
                 trigger: "blur",
               },
             ],
-            overHidden:true,
+            // overHidden:true,
+             width:250,
           },
           {
             label: "用户名",
@@ -188,6 +189,7 @@
                 trigger: "blur",
               },
             ],
+             width:160,
           },
           {
             label: "所属公司",
@@ -219,6 +221,7 @@
                 trigger: "blur",
               },
             ],
+             width:230,
           },
           {
             label: "考试开始时间",
@@ -270,7 +273,7 @@
             type: "select",
             slot: true,
             search: true,
-            searchSpan: 4,
+            searchSpan: 3,
             dicData: [
               {
                 label: "发布成绩",
@@ -366,7 +369,7 @@
             type: "select",
             slot: true,
             search: true,
-            searchSpan: 4,
+            searchSpan: 3,
             dicData: [
               {
                 label: "合格",
@@ -415,7 +418,10 @@
       questionBankSelectionList: [],
     };
   },
-  created() {},
+  created() {
+    // console.log(this.$route.query,111);
+    this.questionBankSearch['examName'] = this.$route.query.examName;
+  },
   mounted() {},
   computed:{
     ...mapGetters(["userInfo", "permission"]),
@@ -444,19 +450,25 @@
       var that = this;
       //获取当前登录人员的角色信息
       var roleIds = this.userInfo.role_id.split(",");
+      params = this.questionBankSearch;
       roleIds.forEach((roleId) => {
         getRoleDetail(roleId).then((res) => {
             var roleAlias = res.data.data.roleAlias;
             if (
               roleAlias == "保安公司管理员" ||
-              roleAlias == "保安" ||
-              roleAlias == "未持证保安"
+              roleAlias == "保安"
             ) {
               //如果是保安公司管理员
               params["deptId"] = that.userInfo.dept_id;
             }
+            if (
+              roleAlias == "培训公司管理员"
+            ) {
+              //如果是培训公司管理员
+              params["trainUnitId"] = that.userInfo.dept_id;
+            }
             that.questionBankLoading = false;
-            params["examType"] = 1;
+            params["examType"] = 2;
             getList(
               page.currentPage,
               page.pageSize,

--
Gitblit v1.9.3