user.js
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"use strict";
const ty_request_index = require("../request/index.js");
const userApi = {
// 获取用户code
getUserInfo: (data) => ty_request_index.request({
url: "/api/v1/Wechat/get_user_info_by_code",
method: "POST",
data,
header: {
Accept: "text/json",
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8"
},
custom: {
showSuccess: true,
loadingMsg: "获取中"
}
}),
// 获取活动信息
getActivity: (data) => ty_request_index.request({
url: "/api/v1/Client/getactivity",
method: "POST",
data,
custom: {
showLoading: false
}
}),
// 获取用户列表
getActUserList: (data) => ty_request_index.request({
url: "/api/v1/Client/participate_activitie",
method: "POST",
data,
custom: {
showLoading: false
}
}),
createOrder: (data) => ty_request_index.request({
url: "/api/v1/Client/crateorder",
method: "POST",
data,
custom: {
showLoading: false
}
}),
getUserOrder: (data) => ty_request_index.request({
url: "/api/v1/Client/myorder",
method: "POST",
data,
custom: {
showLoading: false
}
})
};
const __vite_glob_0_0 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
__proto__: null,
default: userApi
}, Symbol.toStringTag, { value: "Module" }));
exports.__vite_glob_0_0 = __vite_glob_0_0;
exports.userApi = userApi;