This commit is contained in:
xiaozhiyong
2023-12-12 15:05:37 +08:00
parent 3bd60fe2bd
commit d2878369d4
6 changed files with 612 additions and 177 deletions

18
api/packageBill/push.js Normal file
View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
export default{
getByPageRecord(data) {
return request({
url: `/oil-finance/xoilSiteChannelAccountAck/getByPage`,
method: 'post',
data
})
},
ackBill(data) {
return request({
url: `/oil-finance/xoilSiteChannelAccountAck/ackBill`,
method: 'post',
data
})
},
}