From ce116a9b42f705debc79e3ec764cfe176ec69a01 Mon Sep 17 00:00:00 2001 From: wenshijun Date: Tue, 14 Apr 2026 08:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=BA=93=E6=A8=A1=E5=9D=97=E5=89=94?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/worn/outbound.js | 44 ---- src/views/worn/outbound/index.vue | 352 ------------------------------ 2 files changed, 396 deletions(-) delete mode 100644 src/api/worn/outbound.js delete mode 100644 src/views/worn/outbound/index.vue diff --git a/src/api/worn/outbound.js b/src/api/worn/outbound.js deleted file mode 100644 index 2de87eb..0000000 --- a/src/api/worn/outbound.js +++ /dev/null @@ -1,44 +0,0 @@ -import request from '@/utils/request' - -// 查询出库单据列表 -export function listOutbound(query) { - return request({ - url: '/worn/outbound/list', - method: 'get', - params: query - }) -} - -// 查询出库单据详细 -export function getOutbound(id) { - return request({ - url: '/worn/outbound/' + id, - method: 'get' - }) -} - -// 新增出库单据 -export function addOutbound(data) { - return request({ - url: '/worn/outbound', - method: 'post', - data: data - }) -} - -// 修改出库单据 -export function updateOutbound(data) { - return request({ - url: '/worn/outbound', - method: 'put', - data: data - }) -} - -// 删除出库单据 -export function delOutbound(id) { - return request({ - url: '/worn/outbound/' + id, - method: 'delete' - }) -} diff --git a/src/views/worn/outbound/index.vue b/src/views/worn/outbound/index.vue deleted file mode 100644 index 474498a..0000000 --- a/src/views/worn/outbound/index.vue +++ /dev/null @@ -1,352 +0,0 @@ - - -