Commit a1727541 authored by 吴春's avatar 吴春

1

parent b7ee1d44
...@@ -162,5 +162,24 @@ namespace Edu.Common.Plugin ...@@ -162,5 +162,24 @@ namespace Edu.Common.Plugin
} }
return result; return result;
} }
/// <summary>
/// 获取请求数据
/// </summary>
/// <param name="url"></param>
/// <returns></returns>
public static string HttpClientGet(string url)
{
HttpClient httpClient = new HttpClient();
HttpResponseMessage res = httpClient.GetAsync(url).Result;
if (res.IsSuccessStatusCode)
{
Task<string> t = res.Content.ReadAsStringAsync();
return t.Result;
}
return string.Empty;
}
} }
} }
\ No newline at end of file
...@@ -118,6 +118,11 @@ namespace Edu.Common.Plugin ...@@ -118,6 +118,11 @@ namespace Edu.Common.Plugin
return userInfo; return userInfo;
} }
/// <summary> /// <summary>
/// 获取微信授权手机号码 /// 获取微信授权手机号码
/// </summary> /// </summary>
...@@ -223,4 +228,55 @@ namespace Edu.Common.Plugin ...@@ -223,4 +228,55 @@ namespace Edu.Common.Plugin
public string phoneNumber { get; set; } public string phoneNumber { get; set; }
} }
#region 微信登录获取返回的access_token (通过 code 获取access_token
/// <summary>
/// 通过 code 获取access_token
/// </summary>
public class GetTokenByCode
{
/// <summary>
/// refresh_token
/// </summary>
public string access_token { get; set; }
/// <summary>
/// access_token接口调用凭证超时时间,单位(秒)
/// </summary>
public string expires_in { get; set; }
/// <summary>
/// 用户刷新access_token
/// </summary>
public string refresh_token { get; set; }
/// <summary>
/// 授权用户唯一标识
/// </summary>
public string openid { get; set; }
/// <summary>
/// 用户授权的作用域,使用逗号(,)分隔
/// </summary>
public string scope { get; set; }
/// <summary>
/// 当且仅当该网站应用已获得该用户的 userinfo 授权时,才会出现该字段。
/// </summary>
public string unionid { get; set; }
/// <summary>
/// 错误状态码
/// </summary>
public string errcode { get; set; }
/// <summary>
/// 错误提示信息
/// </summary>
public string errmsg { get; set; }
}
#endregion
} }
\ No newline at end of file
...@@ -24,7 +24,8 @@ namespace Edu.Module.User ...@@ -24,7 +24,8 @@ namespace Edu.Module.User
/// </summary> /// </summary>
/// <param name="empId"></param> /// <param name="empId"></param>
/// <returns></returns> /// <returns></returns>
public Employee_ViewModel GetEmployeeInfo(int empId) { public Employee_ViewModel GetEmployeeInfo(int empId)
{
return accountRepository.GetEmployeeInfo(empId); return accountRepository.GetEmployeeInfo(empId);
} }
...@@ -102,8 +103,11 @@ namespace Edu.Module.User ...@@ -102,8 +103,11 @@ namespace Edu.Module.User
Dictionary<string, object> fileds = new Dictionary<string, object>() Dictionary<string, object> fileds = new Dictionary<string, object>()
{ {
{nameof(RB_Account_ViewModel.OpenId),model.OpenId.Trim() }, {nameof(RB_Account_ViewModel.OpenId),model.OpenId.Trim() },
{nameof(RB_Account_ViewModel.UnionId),model.UnionId.Trim() }
}; };
if (!string.IsNullOrWhiteSpace(model.UnionId))
{
fileds.Add(nameof(RB_Account_ViewModel.UnionId), model.UnionId.Trim());
}
flag = accountRepository.Update(fileds, new WhereHelper(nameof(RB_Account_ViewModel.Id), model.Id)); flag = accountRepository.Update(fileds, new WhereHelper(nameof(RB_Account_ViewModel.Id), model.Id));
} }
return flag; return flag;
......
...@@ -426,5 +426,53 @@ namespace Edu.WebApi.Controllers.Applet ...@@ -426,5 +426,53 @@ namespace Edu.WebApi.Controllers.Applet
} }
} }
#endregion #endregion
#region 根据openid 绑定用户的账号信息
/// <summary>
/// 取消预约
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult GetOpenIdBindAccount()
{
var userInfo = base.AppletUserInfo;
string openId = ParmJObj.GetStringValue("OpenId");
if (string.IsNullOrWhiteSpace(openId))
{
return ApiResult.ParamIsNull("请传递OpenId");
}
var model = accountModule.GetStudentExt(new RB_Account_ViewModel()
{
Id = userInfo.Id,
AccountId = userInfo.AccountId,
AccountType = Common.Enum.User.AccountTypeEnum.Student
})?.FirstOrDefault();
if (!string.IsNullOrWhiteSpace(model.OpenId))
{
return ApiResult.Failed("账户已绑定微信信息,请勿重复操作");
}
var modelOpenId = accountModule.GetStudentExt(new RB_Account_ViewModel()
{
OpenId = openId.Trim(),
AccountType = Common.Enum.User.AccountTypeEnum.Student
})?.FirstOrDefault();
if ((modelOpenId?.Id ?? 0) > 0)
{
return ApiResult.Failed("微信信息已绑定账户,请勿重复操作");
}
model.OpenId = openId;
model.UnionId = "";
var flag = accountModule.UpdateAccountUnionId(model);
if (flag)
{
return ApiResult.Success();
}
else
{
return ApiResult.Failed("绑定失败");
}
}
#endregion
} }
} }
...@@ -46,8 +46,8 @@ ...@@ -46,8 +46,8 @@
"JHTenantId": "15", "JHTenantId": "15",
"JHMallBaseId": "5", "JHMallBaseId": "5",
"JHMallUserOpenId": "oshxs5I-6uR1J91Rs3QVyi2rJIm4", "JHMallUserOpenId": "oshxs5I-6uR1J91Rs3QVyi2rJIm4",
"WeChatAccountAppId": "wx7c2cedaebbfca211", "WeChatAccountAppId": "wx17ed4ce5c80be02c",
"WeChatAccountAppSecret": "6fd676c7f599bc2783fab6ae6c7a12d4", "WeChatAccountAppSecret": "2d777c2ed4627423bace16f2428b2169",
"Notice_BaseKey": "Notice_BaseKey", "Notice_BaseKey": "Notice_BaseKey",
"QYWeiChatToken": "b3e0ebf63301f80cb8e741cf72fdaf3c", "QYWeiChatToken": "b3e0ebf63301f80cb8e741cf72fdaf3c",
"QYWeiChatEncodingAESKey": "ODRjOGEwYWQxNWJkNDRkMTg2NGJiOWY1ZTE4LCE0NmY", "QYWeiChatEncodingAESKey": "ODRjOGEwYWQxNWJkNDRkMTg2NGJiOWY1ZTE4LCE0NmY",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment