Files
wx_oms/api/contractManagement/list.js

12 lines
180 B
JavaScript
Raw Normal View History

2024-02-21 10:44:24 +08:00
import request from '@/utils/request'
export default {
getByPage(data) {
return request({
url: '/oil-finance/contract/getByPage',
method: 'post',
data: data
})
}
}