From d95de278b802e331353b0a1fd4345afb6845cb9b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com>
Date: Wed, 19 Mar 2025 17:18:14 +0800
Subject: [PATCH] =?UTF-8?q?=E7=AB=8B=E5=8D=B3=E5=A4=96=E5=91=BC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/manage/patientInfoImport.js | 24 +++-
src/views/manage/patientInfoImport/index.vue | 124 ++++++++++++++++---
2 files changed, 125 insertions(+), 23 deletions(-)
diff --git a/src/api/manage/patientInfoImport.js b/src/api/manage/patientInfoImport.js
index f444c6f..b41561e 100644
--- a/src/api/manage/patientInfoImport.js
+++ b/src/api/manage/patientInfoImport.js
@@ -8,19 +8,37 @@ export function patientInfoImportBatchlist(query) {
params: query
})
}
+
// 删除导入
export function updateSn(sn) {
return request({
- url: `/manage/patientInfoimportmain/updateSn?sn=${sn}` ,
+ url: `/manage/patientInfoimportmain/updateSn?sn=${sn}`,
method: 'POST'
})
}
-//删除导入明细
+//删除导入明细
export function updatePatientInfoImport(data) {
return request({
- url: `/manage/patientInfoimportmain/updatePatientInfoImport` ,
+ url: `/manage/patientInfoimportmain/updatePatientInfoImport`,
method: 'POST',
data
})
}
+
+// 查询最后一条信息
+export function outboundConfirmation() {
+ return request({
+ url: '/manage/signroute/outboundConfirmation',
+ method: 'get',
+ })
+}
+
+// 确认按钮
+export function directOutbound(data) {
+ return request({
+ url: `/manage/signroute/directOutbound`,
+ method: 'post',
+ data
+ })
+}
\ No newline at end of file
diff --git a/src/views/manage/patientInfoImport/index.vue b/src/views/manage/patientInfoImport/index.vue
index fd2dbd9..ab2bafb 100644
--- a/src/views/manage/patientInfoImport/index.vue
+++ b/src/views/manage/patientInfoImport/index.vue
@@ -37,12 +37,12 @@