diff --git a/ui/src/components/restful/table.vue b/ui/src/components/restful/table.vue index 77074fc..a56b6e5 100644 --- a/ui/src/components/restful/table.vue +++ b/ui/src/components/restful/table.vue @@ -94,8 +94,8 @@ const handleServerRowData = (fieldsDescInfoData, rowData) => { if (field.type === "tagStatus") { for (let k = 0; k < field.choices.length; k++) { if (rowData[field.key] === field.choices[k].value) { - rowData.tagValue = field.choices[k].desc - rowData.tagColor = tagStatusColorArray[field.choices[k].type] + rowData["tagValue" + field.key] = field.choices[k].desc + rowData["tagColor" + field.key] = tagStatusColorArray[field.choices[k].type] } } } @@ -599,11 +599,14 @@ const handlePaginationCurChange = (val) => { - - +