1234567891011121314151617181920 |
- @using M55128_rec.Models.ViewModels.ConsultationMangerModel
- @model List<NewsPreviewItem>
- <div class="zxzlxq-newslist-title border-1px-bottom">
- <span class="iconfont icon-@(ViewBag.m) @(ViewBag.m )"></span>
- <span>@ViewBag.c</span> <span class="iconfont icon-right"></span>
- </div>
- <div id="v-morezx-wrapper" class="zxzlxq-newslist">
- <div class="content">
- @foreach (NewsPreviewItem item in Model)
- {
- <a class="news-item border-1px-bottom" href="/zx/@(ViewBag.m)/@(item.NewsId).html">
- <span class="news-item-text">@item.Title</span>
- <span class="news-item-time">@item.AddTime</span>
- </a>
- }
- </div>
- </div>
- <footer style="">上拉加载更多数据</footer>
|