123456789101112131415161718192021222324252627 |
- @using KJH55128_Rec.ViewModels
- @model ViewLotteryType
- <section class="hot-lottery-wrapper">
- @if (Model != null)
- {
- <h1>
- <span class="hot-lottery-title">@Model.TypeName
- <span class="iconfont icon-@(Model.TypeCode)"></span>
- <span class="lot-more">查看更多<span class="iconfont icon-arrowdown"><span></span>
- </span>
- </h1>
- <div class="hot-lottery-content row">
- @if (Model.Lotterys != null && Model.Lotterys.Count > 0)
- {
- foreach (LotteryItems item in Model.Lotterys)
- {
- <a class="hot-lottery-list col-xs-3 col-sm-1d5" href="/kjxq/@(Model.TypeCode.ToLower())-@(item.SimpleSpelling.ToLower()).html" target="_blank">
- <span class="iconfont icon-@(item.ItemValue)"></span>
- <span class="icon-lable">@(item.ItemName)</span>
- </a>
- }
- }
- </div>
- }
- </section>
|