安全性问题处理:添加页面访问校验初版代码 --提交人:阳华祥

This commit is contained in:
yang.huaxiang
2020-11-13 17:42:33 +08:00
parent 7043904b6c
commit 15f831700c
2 changed files with 105 additions and 1 deletions

View File

@@ -62,3 +62,21 @@ export function wxShare(data) {
data
})
}
//验证代理人访问
export function checkEnterPower(data) {
return request({
url: getUrl('/customer/agent/checkEnterPower', 1),
method: 'post',
data
})
}
// 获取验证码
export function getAuthCode(data) {
return request({
url: getUrl('/customer/authcode/loginedSend', 1),
method: 'post',
data
})
}