From 7cbf5e202f8336f59d00792b7cefe11055732c2e Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Mon, 8 Dec 2025 17:01:16 +0800 Subject: [PATCH] =?UTF-8?q?2025-12-08=20=E5=A2=9E=E5=8A=A0"=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E5=8F=98=E5=8A=A8=E8=AE=B0=E5=BD=95"=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=EF=BC=88WMS=20-=20=E4=BB=93=E5=BA=93=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8=E7=AE=A1=E7=90=86=20-=20=E6=A0=87=E7=AD=BE=E5=8F=98?= =?UTF-8?q?=E5=8A=A8=E8=AE=B0=E5=BD=95=EF=BC=89=20=20=20=20=20=201?= =?UTF-8?q?=E3=80=81=E6=98=8E=E7=BB=86=E8=A1=A8=E5=B1=95=E7=A4=BA=E6=89=80?= =?UTF-8?q?=E6=9C=89=E6=95=B0=E6=8D=AE=EF=BC=88=E9=BB=98=E8=AE=A4=E6=98=AF?= =?UTF-8?q?=E4=BB=8A=E5=A4=A9=E7=9A=84=EF=BC=89=20=20=20=20=20=202?= =?UTF-8?q?=E3=80=81=E5=85=B6=E4=BB=96=E9=A1=B5=E7=AD=BE=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?document=5Ftype=E5=8C=BA=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/warehouse/labelTransactionLog.js | 25 ++ .../modules/warehouse/labelTransactionLog.vue | 305 ++++++++++++++++++ 2 files changed, 330 insertions(+) create mode 100644 src/api/warehouse/labelTransactionLog.js create mode 100644 src/views/modules/warehouse/labelTransactionLog.vue diff --git a/src/api/warehouse/labelTransactionLog.js b/src/api/warehouse/labelTransactionLog.js new file mode 100644 index 0000000..9fe1d29 --- /dev/null +++ b/src/api/warehouse/labelTransactionLog.js @@ -0,0 +1,25 @@ +import http from '@/utils/httpRequest' + +/** + * 查询标签变动记录列表 + */ +export function labelTransactionLogList(data) { + return http({ + url: http.adornUrl('/warehouse/labelTransactionLog/list'), + method: 'post', + data: http.adornData(data) + }) +} + +/** + * 导出标签变动记录 + */ +export function labelTransactionLogExport(data) { + return http({ + url: http.adornUrl('/warehouse/labelTransactionLog/export'), + method: 'post', + data: http.adornData(data), + responseType: 'blob' + }) +} + diff --git a/src/views/modules/warehouse/labelTransactionLog.vue b/src/views/modules/warehouse/labelTransactionLog.vue new file mode 100644 index 0000000..164b5d6 --- /dev/null +++ b/src/views/modules/warehouse/labelTransactionLog.vue @@ -0,0 +1,305 @@ + + + + + +