1234567891011121314151617181920 |
- @using KJH55128_Rec.ViewModels
- @model List<LotteryItems>
- <section class="ads-section">
- <div class="ads-list-title">
- <div class="ads-title-lable">推荐彩种</div>
- </div>
- <div class="ads-list-content row">
- @if (Model != null && Model.Count > 0)
- {
- foreach (LotteryItems item in Model)
- {
- <a class="col-xs-4 hot-lottery-list" href="/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>
|