index.js 318 B

123456789101112131415
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. /** *
  3. * 员工修改密码 b
  4. */
  5. export const updatePassword = data => {
  6. return https.get('/admin/password', data)
  7. }
  8. /** *
  9. * 员工修改确认密码 b
  10. */
  11. export const updateConfirmPassword = data => {
  12. return https.get('/admin/confirm-password', data)
  13. }