user.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import { request, uploads } from '@/utils/request';
  2. // 用户密码重置
  3. export function updateUserPwd(oldPassword, newPassword) {
  4. const data = {
  5. oldPassword,
  6. newPassword
  7. }
  8. return request({
  9. url: '/system/user/profile/updatePwd',
  10. method: 'put',
  11. params: data
  12. })
  13. }
  14. // 查询用户个人信息
  15. export function getUserProfile() {
  16. return request({
  17. url: '/system/user/profile',
  18. method: 'get'
  19. })
  20. }
  21. // 修改用户个人信息
  22. export function updateUserProfile(data) {
  23. return request({
  24. url: '/system/user/profile',
  25. method: 'put',
  26. data: data
  27. })
  28. }
  29. // 用户头像上传
  30. export function uploadAvatar(data) {
  31. return uploads({
  32. url: "/service-file/upload",
  33. name: data.name,
  34. filePath: data.filePath,
  35. });
  36. }
  37. // 注册用户个人信息
  38. export function appAdd(data) {
  39. return request({
  40. url: '/system/user/appAdd',
  41. method: 'POST',
  42. data: data
  43. })
  44. }
  45. // 注销用户个人信息
  46. export function appDel(data) {
  47. return request({
  48. url: `/system/user/${data.id}`,
  49. method: 'DELETE',
  50. })
  51. }
  52. // 树结构查询部门--用户列表
  53. export function deptUserTreeSelect(query) {
  54. return request({
  55. url: '/system/dept/deptUserTreeSelect',
  56. method: 'GET',
  57. params: query
  58. })
  59. }
  60. // 用户列表
  61. export function UserList(query) {
  62. return request({
  63. url: '/system/user/list',
  64. method: 'GET',
  65. params: query
  66. })
  67. }
  68. // 用户列表(无数据权限)
  69. export function dUserList(query) {
  70. return request({
  71. url: '/system/user/dUserList',
  72. method: 'GET',
  73. params: query
  74. })
  75. }
  76. // 微信用户验证
  77. export function getPageAuthorization(data) {
  78. return request({
  79. url: '/service-iot/weChat/getPageAuthorization',
  80. method: 'GET',
  81. data: data,
  82. })
  83. }