/// <summary> /// 订单明细列表(返回Json) /// </summary> /// <param name="orderId"></param> /// <returns></returns> public ActionResult GetOrderItemList(string orderId) { try { var jsonData = new { rows = _orderBll.GetOrderItemListByOrderId(orderId), }; return(Content(jsonData.ToJson())); } catch (Exception ex) { BaseSysLogBll.Instance.WriteLog("", OperationType.Query, "-1", "异常错误:" + ex.Message); return(null); } }