修复第一次登录失败的Bug

This commit is contained in:
LawyZHENG 2021-03-19 16:40:54 +08:00
parent a01cb91cbd
commit 5d5472db5d
2 changed files with 34 additions and 31 deletions

View File

@ -144,7 +144,7 @@ func (c *AccountController) DingTalkLogin() {
code := c.GetString("code") code := c.GetString("code")
if code == "" { if code == "" {
c.Redirect(conf.URLFor("AccountController.Login"), 302) c.JsonResult(500, "获取身份信息失败", nil)
} }
appKey := beego.AppConfig.String("dingtalk_app_key") appKey := beego.AppConfig.String("dingtalk_app_key")

View File

@ -88,40 +88,43 @@
<script src="{{cdnjs "/static/layer/layer.js"}}" type="text/javascript"></script> <script src="{{cdnjs "/static/layer/layer.js"}}" type="text/javascript"></script>
<script src="{{cdnjs "/static/js/dingtalk-jsapi.js"}}" type="text/javascript"></script> <script src="{{cdnjs "/static/js/dingtalk-jsapi.js"}}" type="text/javascript"></script>
<script type="text/javascript"> <script type="text/javascript">
if (dd.env.platform !== "notInDingTalk"){ $(function () {
dd.ready(function() { if (dd.env.platform !== "notInDingTalk"){
dd.runtime.permission.requestAuthCode({ dd.ready(function() {
corpId: {{ .corpID }} , // 企业id dd.runtime.permission.requestAuthCode({
onSuccess: function (info) { corpId: {{ .corpID }} , // 企业id
var index = layer.load(1, { onSuccess: function (info) {
shade: [0.1, '#fff'] // 0.1 透明度的白色背景 var index = layer.load(1, {
}) shade: [0.1, '#fff'] // 0.1 透明度的白色背景
})
var formData = $("form").serializeArray() var formData = $("form").serializeArray()
formData.push({"name": "code", "value": info.code}) formData.push({"name": "code", "value": info.code})
$.ajax({ $.ajax({
url: "{{urlfor "AccountController.DingTalkLogin"}} ", url: "{{urlfor "AccountController.DingTalkLogin"}} ",
data: formData, data: formData,
dataType: "json", dataType: "json",
type: "POST", type: "POST",
complete: function(){ complete: function(){
layer.close(index) layer.close(index)
}, },
success: function (res) { success: function (res) {
if (res.errcode !== 0) { if (res.errcode !== 0) {
layer.msg(res.message) layer.msg(res.message)
} else { } else {
window.location = "/" window.location = "{{ urlfor "HomeController.Index" }}"
}
},
error: function (res) {
window.location = "{{ urlfor "HomeController.Index" }}"
} }
}, })
// error: function () { }
// } });
})
}
}); });
}); }
} })
</script> </script>
<script type="text/javascript"> <script type="text/javascript">