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