Browse Source

1111111111

chenrui  1 year ago
parent
commit
12666d2c50
1 changed files with 12 additions and 2 deletions
  1. 12 2
      src/views/systemSettings/datastructure/index.vue

+ 12 - 2
src/views/systemSettings/datastructure/index.vue

@@ -201,7 +201,13 @@ const btnClick = (row, index, param) => {
     tableForm.event = 2;
     tableForm.dataStructureID = index.dataStructureID;
     tableForm.structureName = index.structureName;
-    tableForm.datatype = index.datatype;
+    console.log(tableOptionser.value);
+    tableOptionser.value.forEach((element) => {
+      if (element.k === index.datatype) {
+        tableForm.datatype = element.v;
+      }
+    });
+    // tableForm.datatype = index.datatype;
     tableForm.eventID = index.eventID;
     tableForm.dataDescribe = index.dataDescribe;
   } else if (param === 3) {
@@ -211,7 +217,11 @@ const btnClick = (row, index, param) => {
     tableForm.event = 3;
     tableForm.dataStructureID = index.dataStructureID;
     tableForm.structureName = index.structureName;
-    tableForm.datatype = index.datatype;
+    tableOptionser.value.forEach((element) => {
+      if (element.k === index.datatype) {
+        tableForm.datatype = element.v;
+      }
+    });
     tableForm.eventID = index.eventID;
     tableForm.dataDescribe = index.dataDescribe;
   } else if (param === 4) {