This commit is contained in:
许允枞 2024-09-14 14:50:15 +08:00
parent ac4d6eb764
commit 4eff6b3f5f
2 changed files with 3 additions and 2 deletions

View File

@ -7,11 +7,11 @@ export function getHandoverApi() {
// params: query // params: query
}) })
} }
export function getHandoverApi2() { export function getHandoverApi2(query) {
return request({ return request({
url: '/business/handoverRecord/handover2', url: '/business/handoverRecord/handover2',
method: 'get', method: 'get',
// params: query params: query
}) })
} }

View File

@ -447,6 +447,7 @@ export default {
}, },
methods: { methods: {
getHandover() { getHandover() {
console.log("getHandover", this.queryParams)
getHandoverApi2(this.queryParams).then(res => { getHandoverApi2(this.queryParams).then(res => {
// this.handoverList = res.data; // this.handoverList = res.data;
this.handoverData = res.data; this.handoverData = res.data;