From 59043e9b673782341f0535a4ade0a3d07221d0c5 Mon Sep 17 00:00:00 2001 From: zhouzy062 Date: Thu, 28 Mar 2024 17:59:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E6=96=99=E5=87=BA=E5=BA=93=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E5=AF=B9=E6=8E=A5=EF=BC=8C=E9=80=80=E6=96=99=E6=8E=A5?= =?UTF-8?q?=E6=94=B6=E9=A1=B5=E9=9D=A2=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/api/claimAndRefund/receive.js | 20 +- .../claimAndRefund/receive/receiveOut.vue | 175 ++++--- .../views/claimAndRefund/return/returnIn.vue | 453 ++++++++++++++++++ .../claimAndRefund/return/returnInDetail.vue | 408 ++++++++++++++++ 4 files changed, 990 insertions(+), 66 deletions(-) create mode 100644 sgzb-ui/src/views/claimAndRefund/return/returnIn.vue create mode 100644 sgzb-ui/src/views/claimAndRefund/return/returnInDetail.vue diff --git a/sgzb-ui/src/api/claimAndRefund/receive.js b/sgzb-ui/src/api/claimAndRefund/receive.js index 80a07407..e291ad56 100644 --- a/sgzb-ui/src/api/claimAndRefund/receive.js +++ b/sgzb-ui/src/api/claimAndRefund/receive.js @@ -246,9 +246,23 @@ export function getLeaseAuditListDetail(query) { }) } - - - +//领料出库 编码出库获取编码 +export function getDetailsByTypeId(query) { + return request({ + url: '/base/leaseOutDetails/getDetailsByTypeId', + method: 'get', + params: query + }) +} + +// 领料出库 编码出库 保存 +export function submitOut(params){ + return request({ + url: '/base/leaseOutDetails/submitOut', + method: 'post', + data: params + }) +} diff --git a/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue b/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue index 0d4c7fe4..cf7d9261 100644 --- a/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue +++ b/sgzb-ui/src/views/claimAndRefund/receive/receiveOut.vue @@ -169,21 +169,26 @@ 部分设备出库时,需进行装车,需记录车牌号码 - - - + - 查询 重置 - + + + 出库 + + @@ -215,36 +220,42 @@ 部分设备出库时,需进行装车,需记录车牌号码 - - - - - - - - - - - - - + + + 出库 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sgzb-ui/src/views/claimAndRefund/return/returnInDetail.vue b/sgzb-ui/src/views/claimAndRefund/return/returnInDetail.vue new file mode 100644 index 00000000..c84a2847 --- /dev/null +++ b/sgzb-ui/src/views/claimAndRefund/return/returnInDetail.vue @@ -0,0 +1,408 @@ + + + + + \ No newline at end of file