|  | @@ -64,6 +64,11 @@
 | 
	
		
			
				|  |  |        <el-table-column label="企业名称" align="center" prop="corpName" />
 | 
	
		
			
				|  |  |        <el-table-column label="归属公司" align="center" prop="companyName" />
 | 
	
		
			
				|  |  |        <el-table-column label="归属员工" align="center" prop="companyUserName" />
 | 
	
		
			
				|  |  | +      <el-table-column label="在线状态" align="center" prop="authCheck" >
 | 
	
		
			
				|  |  | +          <template slot-scope="scope">
 | 
	
		
			
				|  |  | +              <el-tag prop="authCheck" v-for="(item, index) in authCheckOptions"  :type="scope.row.authCheck==0?'danger':'success'"  v-if="scope.row.authCheck==item.dictValue">{{item.dictLabel}}</el-tag>
 | 
	
		
			
				|  |  | +          </template>
 | 
	
		
			
				|  |  | +      </el-table-column>
 | 
	
		
			
				|  |  |        <el-table-column width="300" label="关联设备id" align="center" prop="deviceId"  v-if="queryParams.isAudit == 1"/>
 | 
	
		
			
				|  |  |        <el-table-column label="创建时间" align="center" prop="createTime" />
 | 
	
		
			
				|  |  |        <el-table-column label="备注" align="center" prop="remark" />
 | 
	
	
		
			
				|  | @@ -147,6 +152,7 @@ export default {
 | 
	
		
			
				|  |  |        // 企微功能账号管理表格数据
 | 
	
		
			
				|  |  |        accountList: [],
 | 
	
		
			
				|  |  |        isAuditOptions:[],
 | 
	
		
			
				|  |  | +      authCheckOptions:[],
 | 
	
		
			
				|  |  |        // 弹出层标题
 | 
	
		
			
				|  |  |        title: "",
 | 
	
		
			
				|  |  |        // 是否显示弹出层
 | 
	
	
		
			
				|  | @@ -194,6 +200,9 @@ export default {
 | 
	
		
			
				|  |  |      this.getDicts("common_audit").then((response) => {
 | 
	
		
			
				|  |  |        this.isAuditOptions = response.data;
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  | +    this.getDicts("qw_login_status").then((response) => {
 | 
	
		
			
				|  |  | +      this.authCheckOptions = response.data;
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      /** 查询企微功能账号管理列表 */
 |