Blame view

src/api/user.js 1.69 KB
1
/*
2
 * @Description: 用户首页
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-16 16:06:51
5
 */
任超 committed
6
import request from '@/utils/request'
7
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
任超 committed
8 9


10 11 12 13
/**
 * @description: 获取用户信息
 * @author: renchao
 */
任超 committed
14 15 16 17 18 19 20
export function getUserInfo () {
  return request({
    url: SERVER.SERVERAPI + '/rest/user/getUserInfo',
    method: 'get',
  })
}

21 22 23 24
/**
 * @description: 获取菜单信息
 * @author: renchao
 */
任超 committed
25 26
export function getMenuInfo () {
  return request({
任超 committed
27
    url: SERVER.SERVERAPI + '/rest/user/getUserAuthorizationMenus',
任超 committed
28 29
    method: 'get',
  })
任超 committed
30
}
31 32 33 34 35

/**
 * @description: 获取全部字典数据
 * @author: renchao
 */
任超 committed
36 37 38 39 40 41 42 43 44 45 46 47 48
export function getAllDict () {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict',
    method: 'post'
  })
}
export function getQlxxDictList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList',
    method: 'post',
    data
  })
}
49 50 51 52 53 54

/**
 * @description: 获取字典子级列表
 * @param {*} bsmDict
 * @author: renchao
 */
任超 committed
55 56 57 58 59 60 61 62 63
export function getChildDictList (bsmDict) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList',
    method: 'get',
    params: {
      bsmDict: bsmDict
    }
  })
}
64 65 66 67 68 69

/**
 * @description: 编辑字典数据
 * @param {*} data
 * @author: renchao
 */
任超 committed
70 71 72 73 74 75 76 77
export function editDictNode (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode',
    method: 'post',
    data
  })
}

78 79 80 81 82

/**
 * @description: 刷新字典缓存
 * @author: renchao
 */
任超 committed
83 84 85 86 87
export function refreshDictCache () {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache',
    method: 'get'
  })
任超 committed
88
}