From 05f94692a6b53143a044040dec6cbad592fdd176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Fri, 18 Aug 2023 17:26:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E5=AD=98=E6=B5=81=E6=B0=B4=E5=B8=90?= =?UTF-8?q?=E6=98=8E=E7=BB=86=E6=A8=A1=E4=BB=BF=E6=8A=A5=E8=A1=A8=E6=9A=82?= =?UTF-8?q?=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PC/src/api/wms-api.js | 9 +- .../InventoryBookDetail_innerPage.vue | 524 +++++++++--------- 2 files changed, 269 insertions(+), 264 deletions(-) diff --git a/fe/PC/src/api/wms-api.js b/fe/PC/src/api/wms-api.js index 5c1d94f0c..bb5cbe0e9 100644 --- a/fe/PC/src/api/wms-api.js +++ b/fe/PC/src/api/wms-api.js @@ -585,11 +585,12 @@ export function getListPageSafety(data, url) { } // 库存流水帐明细 报表页面 -export function getInventoryTransactionSerials(data) { +export function getInventoryTransactionSerials(data,params) { return request({ - url: 'http://dev.ccwin-in.com:60099/api/wms/inventory/inventory-transaction/item-serial-list', - method: 'get', - params: data + url: baseURL + 'wms/inventory/inventory-transaction/item-serial-list', + method: 'post', + data:data, + params:params }) } diff --git a/fe/PC/src/views/activeReportManage/reportForm/InventoryBookDetail_innerPage.vue b/fe/PC/src/views/activeReportManage/reportForm/InventoryBookDetail_innerPage.vue index 66973f43c..fcdd13f02 100644 --- a/fe/PC/src/views/activeReportManage/reportForm/InventoryBookDetail_innerPage.vue +++ b/fe/PC/src/views/activeReportManage/reportForm/InventoryBookDetail_innerPage.vue @@ -2,9 +2,6 @@