交易所前端蓝色ui 4.5 jiem
lxf
2025-05-14 31a83539c601c569288daaf375e9553422d2d2ec
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import Axios from "@/utils/http";
 
// 获取用户实名认证信息
function getIdentify(data) {
  return Axios.fetch("wap/api/kyc!get.action", data);
}
// 申请实名认证
function apply(data) {
  return Axios.postFormData("wap/api/realNameAuth/apply", data);
}
 
// 获取高级认证信息,如家庭住址等
function getHighIdentify(data) {
  return Axios.post("wap/api/kycHighLevel!get.action", data);
}
 
// 申请高级认证
function applyHigh(data) {
  return Axios.postFormData("wap/api/highLevelAuth/apply", data);
}
 
//兑换币种
function getExchangerateuserconfig() {
  return Axios.fetch("wap/api/rate/exchangeRate/list");
}
 
//帮助中心
function cms(data) {
  return Axios.fetch("wap/api/cms!list.action", data);
}
 
//公告
function news(data) {
  return Axios.fetch("wap/api/news!list.action", data);
}
 
//绑定邮件
function saveEmail(data) {
  return Axios.postFormData("wap/api/user/saveEmail", data);
}
 
//绑定手机
function savePhone(data) {
  return Axios.fetch("wap/api/user/savePhone", data);
}
 
//重置安全密码,获取人工审核的结果
function getSafewordApply(data) {
  return Axios.fetch("wap/api/user!get_safeword_apply.action", data);
}
 
//
function setSafewordApply(data) {
  return Axios.postFormData("wap/api/user/setSafewordApply", data);
}
 
//修改资金米啊
function setSafeword(data) {
  return Axios.postFormData("wap/api/user/setSafeword", data);
}
 
//获取验证目标
function getVerifTarget(data) {
  return Axios.post("wap/api/user!getVerifTarget.action", data);
}
 
//获得谷歌绑定的信息
function getGoogleAuth(data) {
  return Axios.fetch("wap/api/googleauth!get.action", data);
}
 
//绑定谷歌绑定
function bindGoogleAuth(data) {
  return Axios.postFormData("wap/api/gooleAuth/bind", data);
}
 
function updatepsw(data) {
  return Axios.fetch("wap/api/user/updatePsw", data);
}
 
//用户信息
function getUserInfo(data) {
  return Axios.fetch("wap/api/localuser!get.action", data);
}
 
export default {
  getIdentify,
  apply,
  getHighIdentify,
  applyHigh,
  getExchangerateuserconfig,
  cms,
  news,
  saveEmail,
  savePhone,
  setSafewordApply,
  getSafewordApply,
  setSafeword,
  getVerifTarget,
  getGoogleAuth,
  bindGoogleAuth,
  updatepsw,
  getUserInfo,
};