MVC 后台DataTable 前台遍历

复制代码
      /// <summary>
        /// 多级审批流展示
        /// </summary>
        /// <returns></returns>
        public ActionResult AddMoreflow()
        {
            string userid = CommConst.CurrentAccountId;
            DataSet ds = CheckFlowService.LCheckFlowBLL.GetNowFlowList(userid);
            DataTable dt = ds.Tables[0];
            return View(dt);
        }
复制代码

前台

复制代码
@using System.Data;   

 @foreach (DataRow item in Model.Rows)
    {
        <table class="table table-bordered">
            <tr>
                <td>流程提交人</td>
                <td>@item["formid"]</td>
                <td>处理状态</td>
                <td>@item["state"]</td>
            </tr>
            <tr>
                <td>内容</td>
                <td colspan="3">@item["checkcontent"]</td>
            </tr>
            <tr>
                <td>时间</td>
                <td colspan="3">@item["checkinserttime"]</td>
            </tr>
        </table>
    }
复制代码

猜你喜欢

转载自blog.csdn.net/fkedwgwy/article/details/80269268