chenrui
昨天 ece2dfeb926d728b10db38038e4d12e9e9851c24
src/api/system/user.js
@@ -96,7 +96,7 @@
  return request({
    url: '/system/user/profile/updatePwd',
    method: 'put',
    params: data
    data: data
  })
}
@@ -105,6 +105,7 @@
  return request({
    url: '/system/user/profile/avatar',
    method: 'post',
    headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
    data: data
  })
}
@@ -125,3 +126,26 @@
    params: data
  })
}
// 查询部门下拉树结构
export function deptTreeSelect() {
  return request({
    url: '/system/user/deptTree',
    method: 'get'
  })
}
// 查询用户列表
export function userListNoPage() {
  return request({
    url: '/system/user/userListNoPage',
    method: 'get'
  })
}
// 部门列表
export function userLoginFacotryList(params) {
  return request({
    url: '/userLoginFacotryList',
    method: 'get',
    params: params
  })
}