解决支付宝错误
This commit is contained in:
@@ -534,10 +534,18 @@ namespace Home.Controllers
|
||||
public async Task<IActionResult> MyCoupons()
|
||||
{
|
||||
var userId =this.Request.GetUserInfo().UserId;
|
||||
var model = await m_CouponService.GetUserCoupon(userId);
|
||||
var model = await m_CouponService.GetUserCoupon(userId);
|
||||
return View(model);
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[UserAuth]
|
||||
public IActionResult CashOut()
|
||||
{
|
||||
var userId =this.Request.GetUserInfo().UserId;
|
||||
return View();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 发送手机验证码
|
||||
/// </summary>
|
||||
@@ -598,7 +606,7 @@ namespace Home.Controllers
|
||||
};
|
||||
var retAmount = await m_UserService.UpdateAmount(amountInfo);
|
||||
|
||||
await m_CouponService.TaoBaoGive(userEntity.Id, 1, userEntity.TaoBao);
|
||||
await m_CouponService.TaoBaoGive(userEntity.Id, 9, userEntity.TaoBao);
|
||||
|
||||
|
||||
var taobaoEntity = notifyOrder.MapTo<TaoBaoOrderEntity>();
|
||||
|
||||
Reference in New Issue
Block a user