|
|
|
@ -157,6 +157,7 @@
|
|
|
|
|
<el-table-column label="执法地区" align="center" prop="lawAreas" />
|
|
|
|
|
<el-table-column label="执法级别" align="center" prop="lawLevel" />
|
|
|
|
|
<el-table-column label="执法层级" align="center" prop="lawHierarchy" />
|
|
|
|
|
<el-table-column label="安全风险等级" align="center" prop="riskLevel" />
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span style="color: #28b384" v-if="scope.row.status == 1"
|
|
|
|
@ -386,10 +387,9 @@ export default {
|
|
|
|
|
/** 查询计划企业列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listEnterprise(this.queryParams).then((response) => {
|
|
|
|
|
this.enterpriseList = response.data;
|
|
|
|
|
// console.log(this.enterpriseList);
|
|
|
|
|
this.total = response.data.length;
|
|
|
|
|
listEnterprise(this.queryParams).then((res) => {
|
|
|
|
|
this.enterpriseList = res.rows;
|
|
|
|
|
this.total = res.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|