From c45ee88065103bfcdfc3a07433748b2357c0bab0 Mon Sep 17 00:00:00 2001 From: Gzx1999 Date: Mon, 27 Nov 2023 11:01:43 +0800 Subject: [PATCH] add auth check of batch operations --- frontend/src/views/Batch/Detail.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/views/Batch/Detail.vue b/frontend/src/views/Batch/Detail.vue index 539214f..7c5205f 100644 --- a/frontend/src/views/Batch/Detail.vue +++ b/frontend/src/views/Batch/Detail.vue @@ -10,14 +10,14 @@ @@ -58,7 +58,7 @@ import { RespCodeOK } from "@/request/request"; const route = useRoute() // 机器列表 -const batchID =ref(route.params.id) +const batchID = ref(route.params.id) const showSelect = ref(true) const machines = ref([]) const currentPage = ref(1) -- Gitee