Browse Source

处理项目变更的bug

ljb 10 months ago
parent
commit
2d445a3305
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/project-manage/components/change-form.vue

+ 1 - 1
src/views/project-manage/components/change-form.vue

@@ -180,7 +180,7 @@ export default {
     getDictList(code, toListKey) {
       getDictionary({ code }).then((res) => {
         this[toListKey] = res.data.data.map((item) => {
-          return { label: item.dictValue, value: item.dictKey };
+          return { label: item.dictValue, value: item.dictKey.toLowerCase() };
         });
       });
     },