From 803b93038ca16e21ea60a260ca4ac882b84a87ef Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期五, 18 七月 2025 17:31:53 +0800 Subject: [PATCH] 2025.7.18 监管任务模块 1. 监管场景样式优化; 2. 新增监管场景GIS地图展示(待完成); --- src/components/list-item/ItemSubTask.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/list-item/ItemSubTask.vue b/src/components/list-item/ItemSubTask.vue index ac1f3ab..20f9ee1 100644 --- a/src/components/list-item/ItemSubTask.vue +++ b/src/components/list-item/ItemSubTask.vue @@ -60,7 +60,7 @@ </template> <script setup> import { ref, watch, computed } from 'vue'; -import taskApi from '@/api/fysp/taskApi'; +import problemApi from '@/api/fysp/problemApi'; import ProCheckProxy from '@/views/fysp/check/ProCheckProxy'; /** @@ -128,7 +128,7 @@ function fetchProblems(subtask) { loading.value = true; - taskApi + problemApi .getProBySubtask(subtask.stguid) .then((res) => { proList.value = res; -- Gitblit v1.9.3