import { post } from './http'; const apis = { PRE_ONE_KEY: '/api/substituteOrder/preOneKeySubmit', }; export const preOneKeySubmit = async () => { const res = await post(apis.PRE_ONE_KEY); return res; }; export default { preOneKeySubmit, };