Index.cshtml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. @using KJH55128_Rec.ViewModels
  2. @model PalyRuleModel
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title>@(Model.LotteryName)玩法规则</title>
  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="@(Model.LotteryName)玩法规则">
  10. <meta name="Keywords" content="@(Model.LotteryName)玩法规则">
  11. <meta charset="UTF-8">
  12. <link rel="stylesheet" type="text/css" href="~/Content/css/wfgz.css">
  13. <link rel="icon" type="image/x-icon" href="~/Content/images/favicon.ico" mce_href="/images/favicon.ico">
  14. <!--[if IE]>
  15. <script src="https://cdn.bootcss.com/html5shiv/r29/html5.min.js"></script>
  16. <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
  17. <![endif]-->
  18. </head>
  19. <body>
  20. @Html.Action("header", "Shared")
  21. <div class="main">
  22. <section class="bread-nav">
  23. <span class="lable">当前位置:玩法规则</span>
  24. <span class="iconfont icon-right"></span>
  25. <span class="lable">@(Model.LotteryName)玩法规则</span>
  26. </section>
  27. <section class="mainContent row">
  28. @Html.Action("wfnav", "Shared", new { type= ViewBag.type, code = ViewBag.lottery })
  29. <section class="wfgz-wrapper" style="margin-left:160px;">
  30. <section class="wfgz-title">
  31. <span class="wfgz-lable active">玩法介绍</span>
  32. @if (!string.IsNullOrWhiteSpace(Model.LotteryTime))
  33. {
  34. <span class="wfgz-lable">开奖时间</span>
  35. }
  36. @Html.Action("recomurl", "Shared", new { code = ViewBag.lottery, type = 1 })
  37. </section>
  38. <section class="wfgz-content-box">
  39. <section class="wfgz-content active">
  40. @(!string.IsNullOrWhiteSpace(Model.Gameplay)? Html.Raw(Model.Gameplay): Html.Raw("暂无此彩种玩法介绍"))
  41. </section>
  42. @if (!string.IsNullOrWhiteSpace(Model.LotteryTime))
  43. {
  44. <section class="wfgz-content">
  45. @Html.Raw(Model.LotteryTime)
  46. </section>
  47. }
  48. <section class="wfgz-content">
  49. @(!string.IsNullOrWhiteSpace(Model.Winning) ? Html.Raw(Model.Winning) : Html.Raw("暂无此彩种中奖规则"))
  50. </section>
  51. </section>
  52. </section>
  53. </section>
  54. </div>
  55. @Html.Action("footer", "Shared")
  56. <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
  57. <!--<script src="/js/libs/less.min.js" type="text/javascript" charset="utf-8"></script>-->
  58. <script src="~/Content/js/common/public.js" type="text/javascript" charset="utf-8"></script>
  59. <script src="~/Content/js/common.js" type="text/javascript" charset="utf-8"></script>
  60. </body>
  61. </html>