@using System.Data @using ZoomLa.Common @using ZoomLa.BLL @model System.Data.DataTable @functions{ public string GetAddress(DataRow dr) { string html= string.Format("{0} {1}({2} 收) {3} ", dr["Provinces"], dr["Street"], dr["ReceivName"], dr["MobileNum"]); if (DataConverter.CLng(dr["isDefault"]) == 1) { html+= "(默认地址)"; } return "
"+ html + "
"; } } @{ } @if (Model.Rows.Count >0) { foreach (DataRow dr in Model.Rows) {
  • 修改 删除
  • } } else {
    你没有收货地址,请先填写收货地址
    }