|
|
|
@ -45,7 +45,7 @@
|
|
|
|
|
placeholder="请输入安全风险等级"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in dict.type.dict_risk_level"
|
|
|
|
|
v-for="item in options"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
|
|
|
@ -209,10 +209,19 @@ export default {
|
|
|
|
|
components: { firmDialog, executive },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
value: "C",
|
|
|
|
|
label: "C",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "D",
|
|
|
|
|
label: "D",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
activeTab: 0,
|
|
|
|
|
dictzh: dictzh,
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
options: [],
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 选中数组
|
|
|
|
@ -242,7 +251,7 @@ export default {
|
|
|
|
|
updateId: null,
|
|
|
|
|
userId: null,
|
|
|
|
|
deptId: null,
|
|
|
|
|
isPoint: 2,
|
|
|
|
|
isPoint: null,
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
@ -288,6 +297,7 @@ export default {
|
|
|
|
|
this.queryPlanEnterpriseParams.district = userInfo.permissionCode;
|
|
|
|
|
this.queryPlanEnterpriseParams.lawHierarchy = userInfo.userName;
|
|
|
|
|
}
|
|
|
|
|
this.queryParams.riskLevel = "C,D";
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getPlanEnterpriseList();
|
|
|
|
|
},
|
|
|
|
|