jsk
This commit is contained in:
parent
0834234377
commit
759805442c
|
|
@ -119,11 +119,15 @@ export function delPurchaseContractApi(data) {
|
||||||
export function goodsInquiryPageApi(data) {
|
export function goodsInquiryPageApi(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/smart-canteen/ims_inquiry/list',
|
url: '/smart-canteen/ims_inquiry/list',
|
||||||
method: 'get',
|
method: 'post',
|
||||||
headers: {
|
headers: {
|
||||||
//"merchant-id":"378915229716713472",
|
//"merchant-id":"378915229716713472",
|
||||||
},
|
},
|
||||||
params:data
|
data:data,
|
||||||
|
params:{
|
||||||
|
pageNum:data.pageNum,
|
||||||
|
pageSize:data.pageSize
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
//获取采购询价分页详情
|
//获取采购询价分页详情
|
||||||
|
|
|
||||||
|
|
@ -286,6 +286,7 @@ export default {
|
||||||
param.startTime=undefined;
|
param.startTime=undefined;
|
||||||
param.endTime=undefined;
|
param.endTime=undefined;
|
||||||
}
|
}
|
||||||
|
console.log("param",param)
|
||||||
goodsInquiryPageApi(param).then(response => {
|
goodsInquiryPageApi(param).then(response => {
|
||||||
console.log("this.tableListData",response)
|
console.log("this.tableListData",response)
|
||||||
this.tableListData = response.rows;
|
this.tableListData = response.rows;
|
||||||
|
|
|
||||||
|
|
@ -222,6 +222,7 @@ export default {
|
||||||
param.startDateTime=undefined;
|
param.startDateTime=undefined;
|
||||||
param.endDateTime=undefined;
|
param.endDateTime=undefined;
|
||||||
}
|
}
|
||||||
|
console.log("param",param)
|
||||||
goodsInquiryPageApi(param).then(response => {
|
goodsInquiryPageApi(param).then(response => {
|
||||||
this.tableListData = response.rows;
|
this.tableListData = response.rows;
|
||||||
this.total = Number(response.total);
|
this.total = Number(response.total);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue