招聘网页
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

data.ts 222B

12345678910111213141516171819
  1. export let dataForm = {
  2. photo: '',
  3. }
  4. export let otherDataForm = {
  5. photo_img: ''
  6. }
  7. export const reset = () => {
  8. dataForm = {
  9. photo: '',
  10. }
  11. otherDataForm = {
  12. photo_img: ''
  13. }
  14. return { dataForm, otherDataForm }
  15. }