From 1e045e262d92893835f3a85c5a54be8988b0287f Mon Sep 17 00:00:00 2001 From: jiang Date: Sat, 15 Nov 2025 21:56:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/business/outbound.js | 56 +++ src/views/business/outbound/details.vue | 466 ++++++++++++++++++++++++ 2 files changed, 522 insertions(+) create mode 100644 src/api/business/outbound.js create mode 100644 src/views/business/outbound/details.vue diff --git a/src/api/business/outbound.js b/src/api/business/outbound.js new file mode 100644 index 00000000..07494cea --- /dev/null +++ b/src/api/business/outbound.js @@ -0,0 +1,56 @@ +import request from '@/utils/request' + +// 工具台账-列表 +export const getOutboundList = (data = {}) => { + return request({ + url: '/material-mall/decChange/getOutboundList', + method: 'GET', + params: data + }) +} + +// 申请-获取详情 +export const getApplyDetailsApi = (data = {}) => { + return request({ + url: '/material-mall/decChange/getDevDetailsById', + method: 'get', + params: data + }) +} + +export const out = (data = {}) => { + return request({ + url: '/material-mall/decChange/out', + method: 'post', + data: data + }) +} + +export const outCancel = (data = {}) => { + return request({ + url: '/material-mall/decChange/outCancel', + method: 'post', + data: data + }) +} + +export const outCancelAll = (data = {}) => { + return request({ + url: '/material-mall/decChange/outCancelAll', + method: 'post', + data: data + }) +} + +export const outAll = (data = {}) => { + return request({ + url: '/material-mall/decChange/outAll', + method: 'post', + data: data + }) +} + + + + + diff --git a/src/views/business/outbound/details.vue b/src/views/business/outbound/details.vue new file mode 100644 index 00000000..41b23201 --- /dev/null +++ b/src/views/business/outbound/details.vue @@ -0,0 +1,466 @@ + + + + +