index.js 688 B

1234567891011121314151617
  1. /*
  2. * @Author: Myz
  3. * @Date: 2020-10-19 15:10:28
  4. * @Last Modified by: Yolo
  5. * @Last Modified time: 2021-01-16 23:18:32
  6. * @Desc 统计图Api接口
  7. */
  8. import { errorCatcher, errorHandle, filter } from 'base-core-lib'
  9. import { appRx } from '../defalutConfig/indexRx'
  10. import {
  11. API_GET_DISEMBARKSTATISTICS,
  12. API_GET_CREWTURNOVER_GETCREWTURNOVERDETAIL,
  13. } from '@/api/V2/crew'
  14. // 船员统计 下船船员饼状图的统计
  15. export const downShipReason = appRx.get(API_GET_DISEMBARKSTATISTICS, errorCatcher, errorHandle, filter)
  16. // 船员统计 异动明细统计
  17. export const getCrewTurnoverDetail = appRx.get(API_GET_CREWTURNOVER_GETCREWTURNOVERDETAIL, errorCatcher, errorHandle, filter)