From e4100ecc3a88273dcdbc2c1452d4e9f00736f3db Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Sat, 28 Aug 2021 10:17:44 +0800
Subject: [PATCH] 派遣单位管理修改,考试成绩查询样式微调

---
 src/views/trainExam/singleperformance.vue |   64 +++++++++++++++++++++++++-------
 1 files changed, 50 insertions(+), 14 deletions(-)

diff --git a/src/views/trainExam/singleperformance.vue b/src/views/trainExam/singleperformance.vue
index f972c91..adb0a7d 100644
--- a/src/views/trainExam/singleperformance.vue
+++ b/src/views/trainExam/singleperformance.vue
@@ -18,6 +18,7 @@
             :table-loading="questionBankLoading"
             :data="questionBankData"
             ref="questionBankCrud"
+            :permission="permissionList"
             :page.sync="questionBankPage"
             @on-load="questionBankOnLoad"
             @selection-change="questionBankSelectionChange"
@@ -82,6 +83,8 @@
 
 <script>
 import { getList, update } from "@/api/examapi/performance";
+import { mapGetters } from "vuex";
+import { getRoleDetail } from "@/api/system/role";
 
 export default {
   data() {
@@ -146,7 +149,7 @@
             // 表单新增时是否为查看模式
             addDetail: false,
             // 表单编辑时是否禁止
-            editDisabled: false,
+            editDisabled: true,
             // 表单编辑时是否可见
             editDisplay: false,
             // 表单编辑时是否为查看模式
@@ -158,7 +161,8 @@
                 trigger: "blur",
               },
             ],
-            overHidden:true,
+            // overHidden:true,
+             width:250,
           },
           {
             label: "用户名",
@@ -185,6 +189,7 @@
                 trigger: "blur",
               },
             ],
+             width:160,
           },
           {
             label: "所属公司",
@@ -216,6 +221,7 @@
                 trigger: "blur",
               },
             ],
+             width:230,
           },
           {
             label: "考试开始时间",
@@ -414,6 +420,18 @@
   },
   created() {},
   mounted() {},
+  computed:{
+    ...mapGetters(["userInfo", "permission"]),
+    permissionList() {
+      return {
+        addBtn: this.vaildData(null, false),
+        viewBtn: this.vaildData(null, false),
+        delBtn: this.vaildData(null, false),
+        editBtn: this.vaildData(null, false),
+        excelBtn: this.vaildData(this.permission.trainExam_performance_export, false),
+      };
+    },
+  },
   methods: {
     //保安证证查看
     securityPrint(row) {
@@ -425,19 +443,37 @@
       });
     },
     questionBankOnLoad(page, params = {}) {
-      this.questionBankLoading = false;
-      params["examType"] = 2;
-      getList(
-        page.currentPage,
-        page.pageSize,
-        Object.assign(params, this.query)
-      ).then((res) => {
-        const data = res.data.data;
-        this.questionBankPage.total = data.total;
-        this.questionBankData = data.records;
-        this.questionBankLoading = false;
-        this.questionBankSelectionClear();
+      //判断角色,如果是保安公司管理员或保安,只能查看当前公司的考试成绩
+      var that = this;
+      //获取当前登录人员的角色信息
+      var roleIds = this.userInfo.role_id.split(",");
+      roleIds.forEach((roleId) => {
+        getRoleDetail(roleId).then((res) => {
+            var roleAlias = res.data.data.roleAlias;
+            if (
+              roleAlias == "保安公司管理员" ||
+              roleAlias == "保安" ||
+              roleAlias == "未持证保安"
+            ) {
+              //如果是保安公司管理员
+              params["deptId"] = that.userInfo.dept_id;
+            }
+            that.questionBankLoading = false;
+            params["examType"] = 2;
+            getList(
+              page.currentPage,
+              page.pageSize,
+              Object.assign(params, this.query)
+            ).then((res) => {
+              const data = res.data.data;
+              that.questionBankPage.total = data.total;
+              that.questionBankData = data.records;
+              that.questionBankLoading = false;
+              that.questionBankSelectionClear();
+            });
+        })
       });
+      
     },
     questionBankSelectionClear() {
       this.questionBankSelectionList = [];

--
Gitblit v1.9.3