You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
704 B
JavaScript

import {
request
} from "@/utils/request";
export default {
userList(data) {
return request({
url: "/admin/user/userList",
method: "GET",
data,
type: 'store'
})
},
userItem(data) {
return request({
url: "/admin/user/userItem",
method: "GET",
data,
type: 'store'
})
},
getLog(data) {
return request({
url: "/admin/user/getLog",
method: "GET",
data,
type: 'store'
})
},
changeInformation(data) {
return request({
url: "/admin/user/changeInformation",
method: "GET",
data,
type: 'store'
})
},
UpdateLevel(data) {
return request({
url: "/admin/user/UpdateLevel",
method: "GET",
data,
type: 'store'
})
},
};