From 97667573dd1f176bccb9aa09c0bf71fbb16974e1 Mon Sep 17 00:00:00 2001 From: tian <3072314689@qq.com> Date: 星期日, 28 九月 2025 18:19:43 +0800 Subject: [PATCH] 必选框 --- src/views/archiveManager/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/archiveManager/index.vue b/src/views/archiveManager/index.vue index 9d92a36..51f93be 100644 --- a/src/views/archiveManager/index.vue +++ b/src/views/archiveManager/index.vue @@ -858,8 +858,8 @@ { try { const response = await listAllPlaceName() - console.log(response.data) - this.zoneTypeOptions = response.data.map(item => ({ + console.log("1111111333333",response.data) + this.zoneTypeOptions = response.data.data.map(item => ({ value: item.nnumber, label: item.name })) @@ -870,8 +870,8 @@ async fetchProjectOptions() { try { const response = await listAllProjectName() - console.log(response) - this.projectOptions = response.data.map(item => ({ + console.log("1111111",response) + this.projectOptions = response.data.data.map(item => ({ value: item.name, label: item.name })) -- Gitblit v1.9.1