Blame view

HHECS.Web/src/api/systemPermission/user.js 344 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import request from '@/utils/request'

// 用户列表
export function getUserData(data) {
  return request({
    url: '/api/User/GetUserByPage',
    method: 'post',
    data
  })
}

// 接口日志-表格数据
export function GetInterfaceLog(data) {
  return request({
    url: '/api/Log/GetInterfaceLog',
    method: 'post',
    data
  })
}