feat api 问题

This commit is contained in:
Amjacks 2025-03-28 10:35:19 +08:00
parent 612236f72f
commit 7b3bf08989
3 changed files with 5 additions and 5 deletions

View File

@ -151,7 +151,7 @@ export function TransferIn(params: any) {
/********** 批次 **************/
export function createDelivery(params: any) {
return request({
url: '/api/delivery/create',
url: '/api/api/delivery/create',
method: 'post',
data: params,
});
@ -159,7 +159,7 @@ export function createDelivery(params: any) {
export function getPurchase(params: any) {
return request({
url: '/api/delivery/getPurchase',
url: '/api/api/delivery/getPurchase',
method: 'post',
data: params,
});
@ -167,7 +167,7 @@ export function getPurchase(params: any) {
export function getStoreDetail(params: any) {
return request({
url: '/api/delivery/getStoreDetail',
url: '/api/api/delivery/getStoreDetail',
method: 'post',
data: params,
});

View File

@ -6,7 +6,7 @@ import request from '@/utils/request';
*/
export function updatePacking(data: any) {
return request({
url: '/api/packing/update',
url: '/api/api/packing/update',
method: 'post',
data: data
});

View File

@ -81,7 +81,7 @@
<span>批次信息</span>
</div>
</div>
<el-table class="charge-table" :height="tableHeight" :data="state.MATERIALPACKINGLIST" border show-summary>
<el-table class="charge-table" :height="tableHeight" :data="state.MATERIALPACKINGLIST" border >
<!-- <el-table-column prop="SEQ" label="序号" fixed="left" width="100" />-->
<el-table-column prop="CHARGE" label="批次" fixed="left" width="180" />
<el-table-column prop="MATERIALSPECNAME" fixed="left" label="料号" width="100" />