Index.cshtml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. @{ Layout = null; }
  2. @using System.Web.Mvc.Html
  3. @using Models
  4. @model Tuple<List<PageLottery>, List<PageLottery>>
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  9. <meta name="description" content="中国彩吧的专业彩票工具|彩票走势图站点|彩票遗漏统计 - 彩吧助手">
  10. <meta name="keywords" content="彩吧助手,3D在线缩水,P3在线缩水,3D走势图,P3走势图,P5走势图,双色球走势图,大乐透走势图,22选5走势图,七乐彩走势图,3D遗漏分析,P3遗漏分析,双色球遗漏分析">
  11. <title>彩吧资讯提供福彩开奖结果,字谜太湖钓叟,预测,图谜,胆码,杀码,开机号、试机号、开奖结果、字谜与图谜汇总、杀号定胆等专业彩票信息网站</title>
  12. @*<link rel="stylesheet/less" type="text/css" href="~/Content/css/kj/kj.less" />*@
  13. <link href="~/Content/miniCss/kj/kj.css?v=@(DateTime.Now.Millisecond)" rel="stylesheet" />
  14. <script src="~/Content/lib/jquery-3.2.1.min.js"></script>
  15. </head>
  16. <body>
  17. @Html.Partial("_header1", "KJ")
  18. <div class="kj-page">
  19. @*<div id="ads-wrapper">
  20. <script type="text/javascript">
  21. /*m.55128.cn联盟广告*/
  22. var cpro_id = "u3378734";
  23. </script>
  24. <script type="text/javascript" src="//cpro.baidustatic.com/cpro/ui/cm.js"></script>
  25. </div>*@
  26. <div id="ads-wrapper" style="border:1px solid #eee;">
  27. <div id="advertisement-top">
  28. <!--联盟广告-->
  29. <script src="//pic.55128.cn/ad_js/mobil_advertisement_js.js"></script>
  30. </div>
  31. </div>
  32. <section class="kj-category-wrapper">
  33. <div class="kj-category kj-active"><span class="tab-text">全国彩</span></div>
  34. <div class="kj-category"><span class="tab-text">地方彩</span></div>
  35. <div class="kj-category"><span class="tab-text">高频彩</span></div>
  36. </section>
  37. @if (Model != null)
  38. {
  39. <section class="kj-wrapper" id="wrapper1">
  40. @foreach (PageLottery plitem in Model.Item1)
  41. {
  42. <div class='kj-item-wrapper @(plitem.Type == "qgc" ? "kj-item-active" : "")'>
  43. @foreach (LotteryData item in plitem.Data)
  44. {
  45. <div class="kj-item-list border-1px-bottom">
  46. <div class="kj-item-title">
  47. <span class="kj-item-name">@item.LotteryName</span>
  48. <span class="kj-item-periods">第@(item.Term)期</span>
  49. </div>
  50. <div class="kj-item-ball">
  51. <div class="ball-wrapper">
  52. @if (item.RedBall != null && item.RedBall.Length > 0)
  53. {
  54. foreach (string ball in item.RedBall)
  55. {
  56. <span class="ball-item redBall">@ball</span>
  57. }
  58. }
  59. @if (item.BlueBall != null && item.BlueBall.Length > 0)
  60. {
  61. foreach (string ball in item.BlueBall)
  62. {
  63. <span class="ball-item blueBall">@ball</span>
  64. }
  65. }
  66. </div>
  67. <a href="@(item.LotteryText).html">
  68. <span class="more iconfont icon-right">
  69. </span>
  70. </a>
  71. </div>
  72. <div class="kj-item-bottom">
  73. @{
  74. string moneyPond = "";
  75. if (item.GetType().GetProperty("MoneyPond") != null)
  76. {
  77. moneyPond = item.MoneyPond;
  78. }
  79. }
  80. <span class="kj-item-bl">奖池:<span class="kj-item-jackpot">@(string.IsNullOrWhiteSpace(moneyPond) ? "0.00" : string.Format("{0:N2}", float.Parse(moneyPond)))</span>元</span>
  81. <div class="kj-item-br">
  82. <a href="@(item.LotteryText).html"><span class="kj-btn">开奖详情</span></a>
  83. <a href="@(item.HasLotteryZS==true?"/kjzs/"+item.LotteryText+".html":"#")" class=""><span class="kj-btn">走势图表</span></a>
  84. </div>
  85. </div>
  86. </div>
  87. }
  88. </div>
  89. }
  90. <div class="kj-item-wrapper">
  91. <div class="kj-high-lottery-wrapper">
  92. <div class="kj-high-lottery-left">
  93. <div class="kj-high-lottery-category kj-active">11选5</div>
  94. <div class="kj-high-lottery-category">快3</div>
  95. <div class="kj-high-lottery-category">快乐十分</div>
  96. <div class="kj-high-lottery-category">快乐12</div>
  97. <div class="kj-high-lottery-category">更多彩种</div>
  98. </div>
  99. <div class="kj-high-lottery-right" id="wrapper">
  100. <div class="content">
  101. @foreach (PageLottery plitem in Model.Item2)
  102. {
  103. <div class="v-item-list">
  104. <div class="high-lottery-title border-1px-bottom">@plitem.Name</div>
  105. @foreach (LotteryData item in plitem.Data)
  106. {
  107. <div class="kj-item-list border-1px-bottom">
  108. <div class="kj-item-title">
  109. <span class="kj-item-name">@item.LotteryName</span>
  110. <span class="kj-item-periods">第@(item.Term)期</span>
  111. </div>
  112. <div class="kj-item-ball">
  113. <div class="ball-wrapper">
  114. @if (item.RedBall != null && item.RedBall.Length > 0)
  115. {
  116. foreach (string ball in item.RedBall)
  117. {
  118. <span class="ball-item redBall">@ball</span>
  119. }
  120. }
  121. @if (item.BlueBall != null && item.BlueBall.Length > 0)
  122. {
  123. foreach (string ball in item.BlueBall)
  124. {
  125. <span class="ball-item blueBall">@ball</span>
  126. }
  127. }
  128. @if (item.LotteryType == "GP_KLPK3_ShanDong" && item.Details != null && item.Details.Count > 0)
  129. {
  130. foreach (LotteryDetail subitem in item.Details)
  131. {
  132. <div class="huase-item @subitem.Label">
  133. <span class="iconfont icon-@subitem.Label"></span>
  134. <span class="huase-num">@subitem.Value</span>
  135. </div>
  136. }
  137. }
  138. </div>
  139. @*<a href="@(item.LotteryType.ToLower()).html">
  140. <span class="more iconfont icon-right">
  141. </span>
  142. </a>*@
  143. </div>
  144. <div class="kj-item-bottom">
  145. @{
  146. string moneyPond = "";
  147. if (item.GetType().GetProperty("MoneyPond") != null)
  148. {
  149. moneyPond = item.MoneyPond;
  150. }
  151. }
  152. <span class="kj-item-bl">奖池:<span class="kj-item-jackpot">@(string.IsNullOrWhiteSpace(moneyPond) ? "0.00" : string.Format("{0:N2}", float.Parse(moneyPond)))</span>元</span>
  153. <div class="kj-item-br">
  154. @*<a href="@(item.LotteryType.ToLower()).html"><span class="kj-btn">开奖详情</span></a>*@
  155. <a href="@(item.HasLotteryZS==true?"/kjzs/"+item.LotteryText+".html":"#")" class=""><span class="kj-btn">走势图表</span></a>
  156. </div>
  157. </div>
  158. </div>
  159. }
  160. </div>
  161. }
  162. </div>
  163. </div>
  164. <div style="clear:both;"></div>
  165. </div>
  166. </div>
  167. </section>
  168. }
  169. </div>
  170. @Html.Partial("_footer", "KJ")
  171. <script src="~/Content/lib/less.min.js"></script>
  172. <script src="~/Content/lib/jquery-3.2.1.min.js"></script>
  173. <script src="~/Content/lib/bscroll.js"></script>
  174. <script src="~/Content/js/kj/kj.js?v=@(DateTime.Now.Millisecond)"></script>
  175. </body>
  176. </html>