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

70 lines
987 B

1 year ago
import request from "@/utils/request.js";
import {host} from "@/config/host.js";
/**
* 登录
* @param {Object} data
*/
export function testLogin(data) {
return request({
url: `${host}/user/gettoken`,
method: "get",
data
});
}
export function login(data) {
1 year ago
return request({
url: `${host}`,
method: "method",
data
});
}
export function userDetail() {
return request({
url: `${host}/user/detail`,
method: "post",
});
}
export function userExtends(data) {
return request({
url: `${host}/user/user-count`,
method: "post",
data
});
}
export function userCoupons(data) {
return request({
url: `${host}/user/coupons-list`,
method: "get",
data
});
1 year ago
}
export function appletLogin(code){
return request({
url: `${host}/user/login`,
method: "post",
data:{
code:code
}
})
}
/**
* 更新用户详情
* @param data
*/
export function updateUserDetail(data){
return request({
url:"user/updateInfo",
method:'post',
data:data
})
1 year ago
}