index.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import request from '@/utils/request'
  2. // 查询客户详情列表
  3. export function listCorps(query) {
  4. return request({
  5. url: 'system/notice/list?pageNum=1&pageSize=10&status=0',
  6. method: 'get'
  7. })
  8. }
  9. // 条件查询仓库详情图表
  10. export function information(fId) {
  11. return request({
  12. url: '/warehouseBusiness/whgenleg/goodsList/' + fId,
  13. method: 'get'
  14. })
  15. }
  16. //查询仓库所有
  17. export function warehouse(){
  18. return request({
  19. url:'/warehouseBusiness/whgenleg/wareHouseList',
  20. method:'get'
  21. })
  22. }
  23. //查询待办事宜
  24. export function inquiry(data){
  25. return request({
  26. url:'/warehouse/paths/selectAllAuditItems',
  27. method:'post',
  28. data:data
  29. })
  30. }
  31. //箱分布查询
  32. export function boxDistribution(){
  33. return request({
  34. url:'/shipping/homePage/homeBox',
  35. method:'get'
  36. })
  37. }
  38. //船动态查询
  39. export function shipDynamics(){
  40. return request({
  41. url:'shipping/homePage/shipDynamic',
  42. method:'get'
  43. })
  44. }
  45. //订舱排名查询
  46. export function bookingSpace(){
  47. return request({
  48. url:'shipping/homePage/bookingSpace',
  49. method:'get'
  50. })
  51. }
  52. //应收款排名查询
  53. export function locationRanking(){
  54. return request({
  55. url:'shipping/homePage/accountsDue',
  56. method:'get'
  57. })
  58. }