report.js 203 B

12345678910
  1. import $http from '@/utils/request'
  2. // 获取报表信息
  3. export const getMileageList = data =>
  4. $http({
  5. method: 'POST',
  6. url: 'customPage/page/getList',
  7. data,
  8. notShowLoading: true,
  9. })