18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
|
import { RamRequest } from '@/utils/service/index'
|
||
|
|
||
|
//收料
|
||
|
class ReceiveModel extends RamRequest {
|
||
|
GetReceiveList(param) {
|
||
|
return this.get('/api/PUR_ReceiveBill/List', param);
|
||
|
}
|
||
|
GetReceiveView(param) {
|
||
|
return this.get('/api/PUR_ReceiveBill/View', param);
|
||
|
}
|
||
|
//下推
|
||
|
OrderPush(param){
|
||
|
return this.post('/api/PUR_ReceiveBill/Push', param);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const receiveModel = new ReceiveModel()
|