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') }