123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- import request from '@/utils/request'
- // 查询用户列表
- export function listUser(query) {
- return request({
- url: '/api/v1/sysUserList',
- method: 'get',
- params: query
- })
- }
- // 查询用户详细
- export function getUser(userId) {
- return request({
- url: '/api/v1/sysUser/' + userId,
- method: 'get'
- })
- }
- export function getUserInit() {
- return request({
- url: '/api/v1/sysUser/',
- method: 'get'
- })
- }
- // 新增用户
- export function addUser(data) {
- return request({
- url: '/api/v1/sysUser',
- method: 'post',
- data: data
- })
- }
- // 修改用户
- export function updateUser(data) {
- return request({
- url: '/api/v1/sysUser',
- method: 'put',
- data: data
- })
- }
- // 删除用户
- export function delUser(userId) {
- return request({
- url: '/api/v1/sysUser/' + userId,
- method: 'delete'
- })
- }
- // 导出用户
- export function exportUser(query) {
- return request({
- url: '/api/v1/sysUser/export',
- method: 'get',
- params: query
- })
- }
- // 用户密码重置
- export function resetUserPwd(userId, password) {
- const data = {
- userId,
- password
- }
- return request({
- url: '/api/v1/sysUser',
- method: 'put',
- data: data
- })
- }
- // 用户状态修改
- export function changeUserStatus(userId, status) {
- const data = {
- userId,
- status
- }
- return request({
- url: '/api/v1/sysUser',
- method: 'put',
- data: data
- })
- }
- // 查询用户个人信息
- export function getUserProfile() {
- return request({
- url: '/api/v1/user/profile',
- method: 'get'
- })
- }
- // 修改用户个人信息
- export function updateUserProfile(data) {
- return request({
- url: '/api/v1/sysUser/profile',
- method: 'put',
- data: data
- })
- }
- // 用户密码重置
- export function updateUserPwd(oldPassword, newPassword, passwordType) {
- const data = {
- oldPassword,
- newPassword,
- passwordType
- }
- return request({
- url: '/api/v1/user/pwd',
- method: 'put',
- data: data
- })
- }
- // 用户头像上传
- export function uploadAvatar(data) {
- return request({
- url: '/api/v1/user/avatar',
- method: 'post',
- data: data
- })
- }
- // 下载用户导入模板
- export function importTemplate() {
- return request({
- url: '/api/v1/sysUser/importTemplate',
- method: 'get'
- })
- }
|