1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- @using KJH55128_Rec.ViewModels
- @model PalyRuleModel
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>@(Model.LotteryName)玩法规则</title>
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="Description" content="@(Model.LotteryName)玩法规则">
- <meta name="Keywords" content="@(Model.LotteryName)玩法规则">
- <meta charset="UTF-8">
- <link rel="stylesheet" type="text/css" href="~/Content/css/wfgz.css">
- <link rel="icon" type="image/x-icon" href="~/Content/images/favicon.ico" mce_href="/images/favicon.ico">
- <!--[if IE]>
- <script src="https://cdn.bootcss.com/html5shiv/r29/html5.min.js"></script>
- <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body>
- @Html.Action("header", "Shared")
- <div class="main">
- <section class="bread-nav">
- <span class="lable">当前位置:玩法规则</span>
- <span class="iconfont icon-right"></span>
- <span class="lable">@(Model.LotteryName)玩法规则</span>
- </section>
- <section class="mainContent row">
- @Html.Action("wfnav", "Shared", new { type= ViewBag.type, code = ViewBag.lottery })
- <section class="wfgz-wrapper" style="margin-left:160px;">
- <section class="wfgz-title">
- <span class="wfgz-lable active">玩法介绍</span>
- @if (!string.IsNullOrWhiteSpace(Model.LotteryTime))
- {
- <span class="wfgz-lable">开奖时间</span>
- }
- @Html.Action("recomurl", "Shared", new { code = ViewBag.lottery, type = 1 })
- </section>
- <section class="wfgz-content-box">
- <section class="wfgz-content active">
- @(!string.IsNullOrWhiteSpace(Model.Gameplay)? Html.Raw(Model.Gameplay): Html.Raw("暂无此彩种玩法介绍"))
- </section>
- @if (!string.IsNullOrWhiteSpace(Model.LotteryTime))
- {
- <section class="wfgz-content">
- @Html.Raw(Model.LotteryTime)
- </section>
- }
- <section class="wfgz-content">
- @(!string.IsNullOrWhiteSpace(Model.Winning) ? Html.Raw(Model.Winning) : Html.Raw("暂无此彩种中奖规则"))
- </section>
- </section>
-
- </section>
- </section>
- </div>
- @Html.Action("footer", "Shared")
- <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
- <!--<script src="/js/libs/less.min.js" type="text/javascript" charset="utf-8"></script>-->
- <script src="~/Content/js/common/public.js" type="text/javascript" charset="utf-8"></script>
- <script src="~/Content/js/common.js" type="text/javascript" charset="utf-8"></script>
- </body>
- </html>
|