123456789101112131415161718192021222324 |
- @using KJH55128_Rec.ViewModels
- @model List<LotteryItems>
- <section class="hot-lottery-wrapper">
- <h1><span class="hot-lottery-title">
- 热门彩种
- <span class="iconfont icon-hot"></span>
- <span class="lot-more">查看更多<span class="iconfont icon-arrowdown"><span></span>
- </span>
- </h1>
- <div class="hot-lottery-content row">
- @if (Model != null && Model.Count > 0)
- {
- foreach (LotteryItems item in Model)
- {
- <a class="hot-lottery-list col-xs-3 col-sm-1d5" href="/@(item.ItemValue.Split('_')[0].ToLower()=="gpc"?"kjls":"kjxq")/@(item.ItemValue.Split('_')[0].ToLower())-@(item.SimpleSpelling.ToLower()).html" target="_blank">
- <span class="iconfont icon-@(item.ItemValue)"></span>
- <span class="icon-lable">@item.ItemName</span>
- </a>
- }
- }
- </div>
- </section>
|