wallet.ts 260 B

1234567891011121314
  1. import { post } from './http';
  2. const apis = {
  3. PRE_ONE_KEY: '/api/substituteOrder/preOneKeySubmit',
  4. };
  5. export const preOneKeySubmit = async () => {
  6. const res = await post(apis.PRE_ONE_KEY);
  7. return res;
  8. };
  9. export default {
  10. preOneKeySubmit,
  11. };