hwEnrollment.impl.ts 299 B

1234567891011
  1. import { getEnrollmentsApi } from "../hwEnrollment";
  2. /**
  3. * 获取我的订单列表
  4. * @param parma
  5. */
  6. export const getEnrollmentsImpl = (parma: getEnrollmentsDataType) => getEnrollmentsApi(parma).then(res => {
  7. const data = (<responseOptionsType>res)
  8. return data
  9. }).catch(err => {
  10. throw err
  11. })