This commit is contained in:
skjia 2025-07-21 13:35:26 +08:00
parent 0834234377
commit 759805442c
3 changed files with 8 additions and 2 deletions

View File

@ -119,11 +119,15 @@ export function delPurchaseContractApi(data) {
export function goodsInquiryPageApi(data) {
return request({
url: '/smart-canteen/ims_inquiry/list',
method: 'get',
method: 'post',
headers: {
//"merchant-id":"378915229716713472",
},
params:data
data:data,
params:{
pageNum:data.pageNum,
pageSize:data.pageSize
}
})
}
//获取采购询价分页详情

View File

@ -286,6 +286,7 @@ export default {
param.startTime=undefined;
param.endTime=undefined;
}
console.log("param",param)
goodsInquiryPageApi(param).then(response => {
console.log("this.tableListData",response)
this.tableListData = response.rows;

View File

@ -222,6 +222,7 @@ export default {
param.startDateTime=undefined;
param.endDateTime=undefined;
}
console.log("param",param)
goodsInquiryPageApi(param).then(response => {
this.tableListData = response.rows;
this.total = Number(response.total);