diff --git a/src/views/server/manageemployeehosts/index.vue b/src/views/server/manageemployeehosts/index.vue index 64d6331..b78f276 100644 --- a/src/views/server/manageemployeehosts/index.vue +++ b/src/views/server/manageemployeehosts/index.vue @@ -47,7 +47,7 @@ + :label="dict.label" :value="dict.value" /> @@ -136,19 +136,29 @@ - - - {{ scope.row.hostsId }} + + + {{ scope.row.hostsId }} + + + 复制 - + + + + + + + + @@ -592,6 +602,11 @@ function exportAi() { // onMounted(() => { // getList() // }) + +function test(id) { + const foundItem = allocationUserList.value.find(item => item.value === id); + return foundItem ? foundItem.label : null; +}