This commit is contained in:
xiaozhiyong
2026-05-06 10:00:13 +08:00
parent 9c5961efe9
commit a54a3bd1a9
8 changed files with 173 additions and 186 deletions

View File

@@ -0,0 +1,9 @@
import service from '@/utils/request'
export const resetPassword = (data) => {
return service({
url: '/user/resetPassword',
method: 'post',
data: data
})
}