| | |
| | | //ä¿®æ¹å¯ç id=${data.id}& |
| | | export const UpdatePassword = (data) => http.post(`/api/User/modifyPwd?newPwd=${data.newPwd}&oldPwd=${data.oldPwd}`) |
| | | // |
| | | export const UpdatePwd = (data) => http.post(`/api/User/UpdatePwd?id=${data.id}&newPwd=${data.newPwd}&oldPwd=${data.oldPwd}`) |
| | | // export const UpdatePwd = (data) => http.post(`/api/User/UpdatePwd?id=${data.id}&newPwd=${data.newPwd}&oldPwd=${data.oldPwd}`) |
| | | export const UpdatePwd = (data) =>http.post(`/api/User/UpdatePwd?id=${encodeURIComponent(data.id)}&newPwd=${encodeURIComponent(data.newPwd)}&oldPwd=${encodeURIComponent(data.oldPwd)}`) |
| | | |
| | | |
| | | //导åºç¨æ·å表 |
| | | export const ExportApi = (data) => http.download("/api/User/Export", data, "ç¨æ·åè¡¨æ°æ®.xlsx", "å è½½ä¸"); |