19 lines
433 B
JavaScript
19 lines
433 B
JavaScript
import { RamRequest } from '@/utils/service/index'
|
|
|
|
//采购
|
|
class PurchaseModel extends RamRequest {
|
|
GetPurchaseList(param) {
|
|
return this.get('/api/PUR_PurchaseOrder/List', param);
|
|
}
|
|
GetPurchaseView(param) {
|
|
return this.get('/api/PUR_PurchaseOrder/View', param);
|
|
}
|
|
//下推
|
|
OrderPush(param){
|
|
return this.post('/api/PUR_PurchaseOrder/Push', param);
|
|
}
|
|
|
|
}
|
|
|
|
export const purchaseModel = new PurchaseModel()
|