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.
51 lines
614 B
JavaScript
51 lines
614 B
JavaScript
import {
|
|
request
|
|
} from "@/utils/request";
|
|
|
|
export default {
|
|
|
|
userList(data) {
|
|
return request({
|
|
url: "/shop/user/userList",
|
|
method: "GET",
|
|
data,
|
|
})
|
|
},
|
|
|
|
userItem(data) {
|
|
return request({
|
|
url: "/shop/user/userItem",
|
|
method: "GET",
|
|
data,
|
|
})
|
|
},
|
|
|
|
|
|
getLog(data) {
|
|
return request({
|
|
url: "/shop/user/getLog",
|
|
method: "GET",
|
|
data,
|
|
})
|
|
},
|
|
|
|
changeInformation(data) {
|
|
return request({
|
|
url: "/shop/user/changeInformation",
|
|
method: "GET",
|
|
data,
|
|
})
|
|
},
|
|
|
|
UpdateLevel(data) {
|
|
return request({
|
|
url: "/shop/user/UpdateLevel",
|
|
method: "GET",
|
|
data,
|
|
})
|
|
},
|
|
|
|
|
|
|
|
|
|
}; |