18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
import { RamRequest } from '@/utils/service/index'
|
|
|
|
//采购
|
|
class OutOftockModel extends RamRequest {
|
|
GetPurchaseList1(param) {
|
|
return this.get('/api/SAL_DELIVERYNOTICE/List', param);
|
|
}
|
|
GetPurchaseView1(param) {
|
|
return this.get('/api/SAL_DELIVERYNOTICE/View', param);
|
|
}
|
|
OrderPush1(param){
|
|
return this.post('/api/SAL_DELIVERYNOTICE/Push', param);
|
|
}
|
|
|
|
}
|
|
|
|
export const outOftockModel = new OutOftockModel()
|