19 lines
430 B
JavaScript
19 lines
430 B
JavaScript
|
import { RamRequest } from '@/utils/service/index'
|
||
|
|
||
|
class StockModel extends RamRequest {
|
||
|
// 仓库查询列表
|
||
|
GetStockList(param) {
|
||
|
return this.get('/api/Stock/List', param);
|
||
|
}
|
||
|
//查看
|
||
|
GetStockView(param){
|
||
|
return this.get('/api/Stock/View', param);
|
||
|
}
|
||
|
//获取仓位
|
||
|
GetStockLocationList(param){
|
||
|
return this.get('/api/FStockFlexDetail/List', param);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const stockModel = new StockModel()
|