Browse Source

bug:解决物料名称取值错误的问题

lupeng 11 tháng trước cách đây
mục cha
commit
45353a58f8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/views/base/information/index.vue

+ 1 - 1
src/views/base/information/index.vue

@@ -138,7 +138,7 @@ const addRow = (form2, done) => {
 };
 const onSelectedFinish = (selectedValue) => {
   form.value.associationCode = selectedValue.materialCode;
-  form.value.associationName = selectedValue.materialCode;
+  form.value.associationName = selectedValue.materialName;
   form.value.materialCode = selectedValue.materialCode;
 };