You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
403 B
21 lines
403 B
3 years ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// 车辆销售(出库)列表
|
||
|
export function pagerList(data) {
|
||
|
return request({
|
||
|
url: '/base/v1/basevehicleout/pagerList',
|
||
|
data,
|
||
|
method: 'post',
|
||
|
headers: { 'Content-Type': 'application/json' }
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 出库详情
|
||
|
export function fetcBySid(sid) {
|
||
|
return request({
|
||
|
url: '/base/v1/basevehicleout/details/' + sid,
|
||
|
method: 'get'
|
||
|
})
|
||
|
}
|
||
|
|