| | |
| | | import request from '@/utils/request'
|
| | | import { praseStrEmpty } from "@/utils/ruoyi";
|
| | | import { parseStrEmpty } from "@/utils/ruoyi";
|
| | |
|
| | | // 查询用户列表
|
| | | export function listUser(query) {
|
| | |
| | | // 查询用户详细
|
| | | export function getUser(userId) {
|
| | | return request({
|
| | | url: '/system/user/' + praseStrEmpty(userId),
|
| | | url: '/system/user/' + parseStrEmpty(userId),
|
| | | method: 'get'
|
| | | })
|
| | | }
|
| | |
| | | }
|
| | |
|
| | | // 转换字符串,undefined,null等转化为""
|
| | | export function praseStrEmpty(str) {
|
| | | export function parseStrEmpty(str) {
|
| | | if (!str || str == "undefined" || str == "null") {
|
| | | return "";
|
| | | }
|