public ActionResult OrderPaymenting(decimal orderId) { try { OnlineOrderServices.OrderPaying(orderId); return(Json(MyResult.Success())); } catch (Exception ex) { ExceptionsServices.AddExceptionToDbAndTxt("AliPay_Error", string.Format("订单状态更改为支付中失败 orderId:{0};openId:{1}", orderId, WeiXinOpenId), ex, LogFrom.WeiXin); return(Json(MyResult.Error("更改未支付中失败"))); } }