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.
35 lines
742 B
35 lines
742 B
9 months ago
|
import http from "@/utils/request";
|
||
|
|
||
|
export function getMemberShipList() {
|
||
|
return http.get("/auth_api/membershipLists", null, {
|
||
|
requireAuth: true
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function getMemberData() {
|
||
|
return http.get("/auth_api/merberDatas", null, {
|
||
|
requireAuth: true
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function getMemberInitData() {
|
||
|
return http.get("/member/member_recharge_api", null, {
|
||
|
requireAuth: true
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function exchangeMember(member_code, member_pwd) {
|
||
|
return http.post("/auth_api/confirm_activation", {
|
||
|
member_code, member_pwd
|
||
|
}, {
|
||
|
requireAuth: true
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function getMerberData() {
|
||
|
return http.get("/auth_api/merberDatas", null, {
|
||
|
requireAuth: true
|
||
|
});
|
||
|
}
|
||
|
|