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.
19 lines
337 B
19 lines
337 B
import request from '@/utils/request'
|
|
|
|
// 条件查询
|
|
export function kchz(data) {
|
|
return request({
|
|
url: '/kucun/kchz',
|
|
method: 'get',
|
|
data: data
|
|
})
|
|
}
|
|
// 条件查询
|
|
export function downloadhz(parm) {
|
|
return request({
|
|
url: '/kucun/downloadhz',
|
|
method: 'get',
|
|
responseType: 'blob',
|
|
params: parm
|
|
})
|
|
}
|
|
|