From 25f37a1d9ae26662d371976faae34bdea522dafb Mon Sep 17 00:00:00 2001 From: zhaichao Date: Thu, 27 Aug 2026 09:36:52 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E7=BC=93=E5=AD=98=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/schedule/planImport/index.vue | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/frontend/src/views/schedule/planImport/index.vue b/frontend/src/views/schedule/planImport/index.vue index 35889cc5..79c5276f 100644 --- a/frontend/src/views/schedule/planImport/index.vue +++ b/frontend/src/views/schedule/planImport/index.vue @@ -89,10 +89,7 @@
- 缓存数据导入到系统 - 上传数据至缓存 - 检查缓存数据 - 删除缓存数据 + 导入到系统
@@ -277,7 +274,7 @@ export default { }, // ==================== 导入到系统 ==================== - handleImportToSystem() { + handleImport() { if (!this.selectedFile) { this.$message.warning('请先选择文件') return @@ -300,18 +297,6 @@ export default { }) }, - // ==================== 缓存操作(后端暂未提供) ==================== - handleUploadToCache() { - this.$message.info('后端暂未提供该接口') - }, - - handleCheckCache() { - this.$message.info('后端暂未提供该接口') - }, - - handleDeleteCache() { - this.$message.info('后端暂未提供该接口') - } } }