|
|
|
@ -38,6 +38,34 @@
|
|
|
|
|
placeholder="请输入统一信用代码"
|
|
|
|
|
clearable
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="安全风险等级" prop="riskLevel">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.riskLevel"
|
|
|
|
|
placeholder="请输入安全风险等级"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.dict_risk_level"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="标准化等级" prop="standLevel">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.standLevel"
|
|
|
|
|
placeholder="请输入标准化等级"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.dict_stand_level"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button
|
|
|
|
@ -54,7 +82,7 @@
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tables" v-loading="loading">
|
|
|
|
|
<el-table v-loading="loading" :data="newList" height="400">
|
|
|
|
|
<el-table v-loading="loading" :data="newList" height="380">
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="企业名称"
|
|
|
|
|
align="center"
|
|
|
|
@ -168,6 +196,8 @@ export default {
|
|
|
|
|
"is_point",
|
|
|
|
|
"entpr_color",
|
|
|
|
|
"major_hazard_level",
|
|
|
|
|
"dict_risk_level",
|
|
|
|
|
"dict_stand_level",
|
|
|
|
|
],
|
|
|
|
|
components: { firmDialog, executive },
|
|
|
|
|
data() {
|
|
|
|
@ -205,6 +235,7 @@ export default {
|
|
|
|
|
updateId: null,
|
|
|
|
|
userId: null,
|
|
|
|
|
deptId: null,
|
|
|
|
|
isPoint: 1,
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
@ -420,7 +451,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
// padding: 15px 10px;
|
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
.module {
|
|
|
|
|
padding-bottom: 15px;
|
|
|
|
|
display: flex;
|
|
|
|
@ -470,8 +501,8 @@ export default {
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
// padding-top: 10px;
|
|
|
|
|
// padding-bottom: 10px;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
.btn-search {
|
|
|
|
|
background: #2378ec;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|