From 09c2798cc4161a331af1d5d7b81f77b98a070de3 Mon Sep 17 00:00:00 2001
From: songhuangfeng123 <shf18767906695@163.com>
Date: 星期三, 11 五月 2022 16:46:59 +0800
Subject: [PATCH] 设备区域查询

---
 src/views/systemManage/userManage/index.vue |   27 +++++++++++++++++----------
 1 files changed, 17 insertions(+), 10 deletions(-)

diff --git a/src/views/systemManage/userManage/index.vue b/src/views/systemManage/userManage/index.vue
index 2196858..c21b3c1 100644
--- a/src/views/systemManage/userManage/index.vue
+++ b/src/views/systemManage/userManage/index.vue
@@ -200,7 +200,7 @@
                         <span>{{ scope.row.roles | parseRoles }}</span>
                     </template>
                 </el-table-column>
-                <el-table-column label="人员MAC地址" prop="deviceNo" align="center" width="100px">
+                <!-- <el-table-column label="人员MAC地址" prop="deviceNo" align="center" width="100px">
                     <template slot-scope="scope">
                         <span>{{ scope.row.deviceNo}}</span>
                     </template>
@@ -226,7 +226,7 @@
                         <span>{{ scope.row.endtime}}</span>
                     </template>
 
-                </el-table-column>
+                </el-table-column> -->
                 <el-table-column label="是否单位负责人" prop="iscompany" align="center" width="100px">
                     <template slot-scope="scope">
                         <div v-for="item in isList">
@@ -796,8 +796,14 @@
                         _this.pageTotal = computePageCount(result.totalCount, result.pageSize)
                         _this.currentPage = result.pageIndex
                         _this.userData = result.result
-                    } else {
-                        parseError({ error: res.data.message, vm: _this })
+                    }else if(res.code === '100'){
+                            this.$store.dispatch('LogOut').then(() => {
+                            location.reload()// In order to re-instantiate the vue-router object to avoid bugs
+                            parseError({ error: res.message, vm: _this })
+                        })
+                    }
+                     else {
+                        parseError({ error: res.message, vm: _this })
                     }
                     _this.listLoading = false
                 }).catch(error => {
@@ -830,7 +836,7 @@
                                 })
                                 _this.getUserList()
                             } else {
-                                parseError({ error: res.data.message, vm: _this })
+                                parseError({ error: res.message, vm: _this })
                             }
                         }).catch(error => {
                             parseError({ error: error, vm: _this })
@@ -866,7 +872,7 @@
                         })
                         _this.getUserList()
                     } else {
-                        parseError({ error: res.data.message, vm: _this })
+                        parseError({ error: res.message, vm: _this })
                     }
                 }).catch(error => {
                     parseError({ error: error, vm: _this })
@@ -954,7 +960,7 @@
                                 })
                                 _this.getUserList()
                             } else {
-                                parseError({ error: res.data.message, vm: _this })
+                                parseError({ error: res.message, vm: _this })
                             }
                         }).catch(error => {
                             parseError({ error: error, vm: _this })
@@ -1012,7 +1018,7 @@
                                 })
                                 _this.getUserList()
                             } else {
-                                parseError({ error: res.data.message, vm: _this })
+                                parseError({ error: res.message, vm: _this })
                             }
                         })
                     }
@@ -1024,6 +1030,8 @@
                 this.dataForm.password = null
                 this.dialogStatus = 'update'
                 this.dialogFormVisible = true
+                let ismain = this.companyList.find(item=>item.company === row.company).ismain
+                this.isMain = ismain === 1;
                 this.$nextTick(() => {
                     this.$refs['dataForm'].clearValidate()
                 })
@@ -1170,7 +1178,7 @@
                             })
                             _this.getUserList()
                         } else {
-                            parseError({ error: res.data.message, vm: _this })
+                            parseError({ error: res.message, vm: _this })
                         }
                     })
                     .catch((error) => {
@@ -1341,7 +1349,6 @@
                 const _this = this;
                 bindCard(_this.cardDataForm).then(response => {
                     const res = response.data
-                    debugger
                     if (res.code === '200'){
                         _this.$message({
                             message: '绑定成功',

--
Gitblit v1.9.2