Browse Source

修改

dev_kxc
xzt 1 year ago
parent
commit
f3f9929404
  1. 9
      jwtech-admin-page/src/views/evaluationEarlyWarning/earlyWarningManage/warning/index.vue

9
jwtech-admin-page/src/views/evaluationEarlyWarning/earlyWarningManage/warning/index.vue

@ -285,6 +285,7 @@ export default {
},
projectTypeOptionProps: {
emitPath: false,
checkStrictly: true, //
},
};
},
@ -318,21 +319,21 @@ export default {
let op = [
{
label: "重大项目",
value: "0",
value: "0, ",
children: this.zd_projectTypeOptions.map((item) => {
return {
label: item.dictLabel,
value: "zd" + item.dictValue,
value: "0," + item.dictValue,
};
}),
},
{
label: "面上项目",
value: "1",
value: "1, ",
children: this.ms_projectTypeOptions.map((item) => {
return {
label: item.dictLabel,
value: "ms" + item.dictValue,
value: "1," + item.dictValue,
};
}),
},

Loading…
Cancel
Save