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.

16 lines
263 B

  1. import {http} from '../../utils/http'
  2. /**
  3. * 修改密码
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const updatePassword = (data) => {
  8. return http({
  9. method: 'POST',
  10. url: '/api/my/updatePassword',
  11. data:
  12. data
  13. ,
  14. })
  15. }