From c91f2d4e0d5fda6499598843fbce34b8186a25f9 Mon Sep 17 00:00:00 2001
From: Teng <461587751@qq.com>
Date: Wed, 3 Dec 2025 14:14:37 +0800
Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
main.js | 2 +
.../component/pleasetake/api/api.js | 24 +-
.../component/pleasetake/common/nomessage.vue | 51 ++++
.../pleasetake/component/requestform.vue | 245 ++++++++++++++----
.../component/pleasetake/takehome.vue | 5 +-
pages/NursingNew/index.vue | 17 +-
pages/Warehouse/picking.vue | 3 -
static/index/newindex/curve/lead_1.png | Bin 2173 -> 0 bytes
static/index/newindex/curve/lead_10.png | Bin 2072 -> 0 bytes
static/index/newindex/curve/lead_11.png | Bin 2068 -> 0 bytes
static/index/newindex/curve/lead_12.png | Bin 2072 -> 0 bytes
static/index/newindex/curve/lead_2.png | Bin 1494 -> 0 bytes
static/index/newindex/curve/lead_3.png | Bin 1495 -> 0 bytes
static/index/newindex/curve/lead_4.png | Bin 1943 -> 0 bytes
static/index/newindex/curve/lead_5.png | Bin 1953 -> 0 bytes
static/index/newindex/curve/lead_6.png | Bin 1975 -> 0 bytes
static/index/newindex/curve/lead_7.png | Bin 1975 -> 0 bytes
static/index/newindex/curve/lead_9.png | Bin 2068 -> 0 bytes
static/index/newindex/curve/logistics0.png | Bin 0 -> 1737 bytes
static/index/newindex/curve/logistics1.png | Bin 0 -> 1188 bytes
static/index/newindex/curve/logistics2.png | Bin 0 -> 1230 bytes
static/index/newindex/curve/logistics3.png | Bin 0 -> 1230 bytes
static/index/newindex/curve/logistics4.png | Bin 0 -> 1479 bytes
static/index/newindex/curve/logistics5.png | Bin 0 -> 1613 bytes
static/index/newindex/curve/logistics6.png | Bin 0 -> 1644 bytes
static/index/newindex/curve/logistics7.png | Bin 0 -> 1673 bytes
.../warehouse/procurement/picking/shouhuo.png | Bin 0 -> 941 bytes
27 files changed, 291 insertions(+), 56 deletions(-)
create mode 100644 pages/NursingNew/component/pleasetake/common/nomessage.vue
delete mode 100644 static/index/newindex/curve/lead_1.png
delete mode 100644 static/index/newindex/curve/lead_10.png
delete mode 100644 static/index/newindex/curve/lead_11.png
delete mode 100644 static/index/newindex/curve/lead_12.png
delete mode 100644 static/index/newindex/curve/lead_2.png
delete mode 100644 static/index/newindex/curve/lead_3.png
delete mode 100644 static/index/newindex/curve/lead_4.png
delete mode 100644 static/index/newindex/curve/lead_5.png
delete mode 100644 static/index/newindex/curve/lead_6.png
delete mode 100644 static/index/newindex/curve/lead_7.png
delete mode 100644 static/index/newindex/curve/lead_9.png
create mode 100644 static/index/newindex/curve/logistics0.png
create mode 100644 static/index/newindex/curve/logistics1.png
create mode 100644 static/index/newindex/curve/logistics2.png
create mode 100644 static/index/newindex/curve/logistics3.png
create mode 100644 static/index/newindex/curve/logistics4.png
create mode 100644 static/index/newindex/curve/logistics5.png
create mode 100644 static/index/newindex/curve/logistics6.png
create mode 100644 static/index/newindex/curve/logistics7.png
create mode 100644 static/index/warehouse/procurement/picking/shouhuo.png
diff --git a/main.js b/main.js
index b42f70e..99dab25 100644
--- a/main.js
+++ b/main.js
@@ -19,6 +19,7 @@ import {
createSSRApp
} from 'vue'
import donghua from '@/component/public/donghua.vue'
+import tanchuang from '@/pages/procurement/components/tanchuang.vue';
// import arrowkeys from '@/component/public/newgame/arrowkeys.vue'
export function createApp() {
const app = createSSRApp(App)
@@ -26,6 +27,7 @@ export function createApp() {
// 使用 uView UI
app.use(uView)
app.component('donghua', donghua)
+ app.component('tanchuang', tanchuang)
// app.component('arrowkeys', arrowkeys)
return {
app
diff --git a/pages/NursingNew/component/pleasetake/api/api.js b/pages/NursingNew/component/pleasetake/api/api.js
index a921ffe..c818ab3 100644
--- a/pages/NursingNew/component/pleasetake/api/api.js
+++ b/pages/NursingNew/component/pleasetake/api/api.js
@@ -76,4 +76,26 @@ export const queryMaterialInfo = (params) => {
data: params,
})
}
-
+export const transRead = (params) => {
+ return request({
+ url: `${uni.getStorageSync('serverUrl')}/api/pad/invoicing/qld/transRead`,
+ method: 'post',
+ data: params,
+ })
+}
+// 作废
+export const cancellation = (params) => {
+ return request({
+ url: `${uni.getStorageSync('serverUrl')}/api/pad/invoicing/qld/cancellation`,
+ method: 'post',
+ data: params,
+ })
+}
+// 作废
+export const confirmReceipt = (params) => {
+ return request({
+ url: `${uni.getStorageSync('serverUrl')}/api/pad/invoicing/qld/confirmReceipt`,
+ method: 'post',
+ data: params,
+ })
+}
\ No newline at end of file
diff --git a/pages/NursingNew/component/pleasetake/common/nomessage.vue b/pages/NursingNew/component/pleasetake/common/nomessage.vue
new file mode 100644
index 0000000..6c09b1f
--- /dev/null
+++ b/pages/NursingNew/component/pleasetake/common/nomessage.vue
@@ -0,0 +1,51 @@
+
+
+
+ {{cont}}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/NursingNew/component/pleasetake/component/requestform.vue b/pages/NursingNew/component/pleasetake/component/requestform.vue
index fdb82c6..9fd91cf 100644
--- a/pages/NursingNew/component/pleasetake/component/requestform.vue
+++ b/pages/NursingNew/component/pleasetake/component/requestform.vue
@@ -1,5 +1,5 @@
-
+
@@ -12,8 +12,25 @@
重置
+
+
+
+ 作废
+
+
+
+
+
+ 收货
+
+
+
+
-
+
+
+
+
@@ -198,12 +217,35 @@