|
@@ -201,7 +201,13 @@ const btnClick = (row, index, param) => {
|
|
tableForm.event = 2;
|
|
tableForm.event = 2;
|
|
tableForm.dataStructureID = index.dataStructureID;
|
|
tableForm.dataStructureID = index.dataStructureID;
|
|
tableForm.structureName = index.structureName;
|
|
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.eventID = index.eventID;
|
|
tableForm.dataDescribe = index.dataDescribe;
|
|
tableForm.dataDescribe = index.dataDescribe;
|
|
} else if (param === 3) {
|
|
} else if (param === 3) {
|
|
@@ -211,7 +217,11 @@ const btnClick = (row, index, param) => {
|
|
tableForm.event = 3;
|
|
tableForm.event = 3;
|
|
tableForm.dataStructureID = index.dataStructureID;
|
|
tableForm.dataStructureID = index.dataStructureID;
|
|
tableForm.structureName = index.structureName;
|
|
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.eventID = index.eventID;
|
|
tableForm.dataDescribe = index.dataDescribe;
|
|
tableForm.dataDescribe = index.dataDescribe;
|
|
} else if (param === 4) {
|
|
} else if (param === 4) {
|