/// <summary>
 /// 加载支付方式
 /// </summary>
 public object GetPayType()
 {
     BLL.PaymentBase pay = new BLL.PaymentBase();
     var list = pay.GetModelList(" pay_IsDel = 0 and pay_isPhone = 1");
     ViewData["PayTypeList"] = list;
     return ViewData["PayTypeList"];
 }
 /// <summary>
 /// 支付方式
 /// </summary>
 public void GetPayType()
 {
     BLL.PaymentBase pay = new BLL.PaymentBase();
     var list = pay.GetModelList(" pay_IsDel = 0 and pay_isPhone = 0");
     ViewData["PayTypeList"] = list;
 }