Blame view

src/api/api.js 694 Bytes
c9493378   liuqimichale   api 接口封装
1
2
3
4
5
6
7
8
  import { get, post} from './httpRequest'
  
  //....用户数
  export const memberAddress = p => post('urban/intelligence/appuser/queryUserPersonStatistic',p)
  
  //....收费员
  export const tollmanAddress = p => post('urban/intelligence/employee/queryEmployeeStaByOrgIds',p)
  
8dcd7f64   liuqimichale   api 接口封装 news
9
  //....收入
848073f1   liuqimichale   api 接口封装 收入
10
11
  export const incomeAddress = p => post('urban/intelligence/income/queryIncomeStaByOrgIds',p)
  
8dcd7f64   liuqimichale   api 接口封装 news
12
13
14
  //....泊位
  export const berthAddress = p => post('urban/intelligence/berth/queryBerthStatisticByOrgIds',p)
  
848073f1   liuqimichale   api 接口封装 收入
15
  //....设备
c9493378   liuqimichale   api 接口封装
16
  export const deviceAddress = p => post('urban/intelligence/device/queryDeviceStatistic',p)
8dcd7f64   liuqimichale   api 接口封装 news
17
18
19
  
  //....消息
  export const msgAddress = p => post('urban/intelligence/orderPark/queryLastOrderPark',p)