This commit is contained in:
commit
4f4f98c104
|
|
@ -157,6 +157,13 @@
|
|||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/Warehouse/purchaseorder",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
})
|
||||
|
|
|
|||
|
|
@ -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
|
|
@ -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
Loading…
Reference in New Issue