1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import request from '@/utils/request'
- // 查询客户详情列表
- export function listCorps(query) {
- return request({
- url: 'system/notice/list?pageNum=1&pageSize=10&status=0',
- method: 'get'
- })
- }
- // 条件查询仓库详情图表
- export function information(fId) {
- return request({
- url: '/warehouseBusiness/whgenleg/goodsList/' + fId,
- method: 'get'
- })
- }
- //查询仓库所有
- export function warehouse(){
- return request({
- url:'/warehouseBusiness/whgenleg/wareHouseList',
- method:'get'
- })
- }
- //查询待办事宜
- export function inquiry(data){
- return request({
- url:'/warehouse/paths/selectAllAuditItems',
- method:'post',
- data:data
- })
- }
- //箱分布查询
- export function boxDistribution(){
- return request({
- url:'/shipping/homePage/homeBox',
- method:'get'
- })
- }
- //船动态查询
- export function shipDynamics(){
- return request({
- url:'shipping/homePage/shipDynamic',
- method:'get'
- })
- }
- //订舱排名查询
- export function bookingSpace(){
- return request({
- url:'shipping/homePage/bookingSpace',
- method:'get'
- })
- }
- //应收款排名查询
- export function locationRanking(){
- return request({
- url:'shipping/homePage/accountsDue',
- method:'get'
- })
- }
|