service.js 289 Bytes
import { saveMockTeacherRegistration } from './mock';

export const submitTeacherRegistration = async (formData) => {
  const res = await saveMockTeacherRegistration(formData);
  if (res.code !== 1) {
    throw new Error(res.msg || '保存老师表单失败');
  }

  return res.data;
};