You cannot 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
423 B
JavaScript
19 lines
423 B
JavaScript
import http from '@/common/js/request/request.js'
|
|
|
|
// 运价综合查询
|
|
export const realQuery = (data) => {
|
|
return http.post('/test_yunjia/v1/real/query', data, 'json')
|
|
}
|
|
|
|
// 港口模糊查询
|
|
export const realGk = (data) => {
|
|
return http.post('/test_yunjia/v1/real/gk', data, 'json')
|
|
}
|
|
|
|
// 箱型模糊查询
|
|
export const realBox = (data) => {
|
|
return http.post('/test_yunjia/v1/real/box', data, 'json')
|
|
}
|
|
|
|
|