新增计划默认查询条件C,D,

zhangtao
laozt 1 year ago
parent 8ac88bbd82
commit 1fc414da08

@ -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();
},

@ -43,7 +43,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"
@ -237,6 +237,24 @@ export default {
],
data() {
return {
options: [
{
value: "A",
label: "A",
},
{
value: "B",
label: "B",
},
{
value: "C",
label: "C",
},
{
value: "D",
label: "D",
},
],
dictzh: dictzh,
//
loading: true,

Loading…
Cancel
Save