12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import request from '@/utils/request'
- // 查询客户详情列表
- export function listCorps(query) {
- return request({
- // url: 'system/notice/list?pageNum=1&pageSize=10&status=0',
- url: 'system/notice/list?pageNum=1&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'
- })
- }
- // 利润统计查询
- export function getProfitData(query){
- return request({
- url:'/shipping/profit/list',
- method:'get',
- params: query
- })
- }
- // 协议到期提醒
- export function remindExpirationData(query){
- return request({
- url:'/warehouseBusiness/agreement/remindList',
- method:'get',
- params: query
- })
- }
|