库房新加拣货的模块

This commit is contained in:
Teng 2025-10-21 16:54:18 +08:00
parent 5d0c2eb015
commit dd4cd2b718
8 changed files with 4845 additions and 221 deletions

View File

@ -150,6 +150,13 @@
},
{
"path" : "pages/Warehouse/procurement"
},
{
"path": "pages/Warehouse/purchaseorder",
"style": {
"navigationStyle": "custom"
}
}
// {

View File

@ -65,7 +65,7 @@
}
const navurl = ref('');
const movecard = (type : number) => {
console.log(type)
// console.log(type,housedex.value)
switch (type) {
case 0:
//
@ -89,7 +89,9 @@
if (housedex.value == 1) {
navurl.value = 'pages/Warehouse/procurement'
}
if (housedex.value == 3) {
navurl.value = 'pages/Warehouse/purchaseorder'
}
uni.navigateTo({
url: '/' + navurl.value
})

View File

@ -32,4 +32,29 @@ export const updateKfstatus = (params) => {
method: 'post',
data: params,
})
}
}
//获得采购单信息
export const queryCgdList = (params) => {
return request({
url: `${uni.getStorageSync('serverUrl')}/api/pad/invoicing/queryCgdList`,
method: 'get',
data: params,
})
}
// 查询采购项目
export const queryCgdInfoList = (params) => {
return request({
url: `${uni.getStorageSync('serverUrl')}/api/pad/invoicing/queryCgdInfoList`,
method: 'get',
data: params,
})
}
// 查询采购项目的详情
export const queryWlInfoByWlId = (params) => {
return request({
url: `${uni.getStorageSync('serverUrl')}/api/pad/invoicing/queryWlInfoByWlId`,
method: 'get',
data: params,
})
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -311,10 +311,10 @@ to {
color: #333333;
}
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) .c {
color: #FF6600;
color: #FF6600 !important;
}
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) .l {
color: #0076D6;
color: #0076D6 !important;
}
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) uni-text {
font-weight: 400;

File diff suppressed because it is too large Load Diff