库房新加拣货的模块
This commit is contained in:
parent
5d0c2eb015
commit
dd4cd2b718
|
|
@ -150,6 +150,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path" : "pages/Warehouse/procurement"
|
"path" : "pages/Warehouse/procurement"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/Warehouse/purchaseorder",
|
||||||
|
"style": {
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// {
|
// {
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
}
|
}
|
||||||
const navurl = ref('');
|
const navurl = ref('');
|
||||||
const movecard = (type : number) => {
|
const movecard = (type : number) => {
|
||||||
console.log(type)
|
// console.log(type,housedex.value)
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 0:
|
case 0:
|
||||||
// 上
|
// 上
|
||||||
|
|
@ -89,7 +89,9 @@
|
||||||
if (housedex.value == 1) {
|
if (housedex.value == 1) {
|
||||||
navurl.value = 'pages/Warehouse/procurement'
|
navurl.value = 'pages/Warehouse/procurement'
|
||||||
}
|
}
|
||||||
|
if (housedex.value == 3) {
|
||||||
|
navurl.value = 'pages/Warehouse/purchaseorder'
|
||||||
|
}
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/' + navurl.value
|
url: '/' + navurl.value
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -32,4 +32,29 @@ export const updateKfstatus = (params) => {
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: params,
|
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
|
|
@ -311,10 +311,10 @@ to {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) .c {
|
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) .c {
|
||||||
color: #FF6600;
|
color: #FF6600 !important;
|
||||||
}
|
}
|
||||||
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) .l {
|
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) .l {
|
||||||
color: #0076D6;
|
color: #0076D6 !important;
|
||||||
}
|
}
|
||||||
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) uni-text {
|
.crkcard .crkscroll .cgrk > uni-view:nth-child(2) uni-text {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue