Beispiel #1
0
 public JsonResult ReviewedVipInfo(int vipId, int userId)
 {
     AjaxResult result = new AjaxResult();
     try
     {
         UserService service = new UserService();
         if (!service.ReviewedVipInfo(vipId, userId))
         {
             result.ExceptionInfo = "审核失败";
         }
     }
     catch (Exception ex)
     {
         LogService.Log("ReviewedVipInfo", ex.ToString());
         result.ExceptionInfo = "审核失败";
     }
     return Json(result);
 }