_detail.cshtml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @using System.Web.Mvc.Html
  2. @model Tuple<string,string,string>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta name="viewport" content="width=device-width" />
  7. <title>彩吧助手 - 专业的彩票工具|彩票走势图|彩票遗漏统计</title>
  8. <meta name="keywords" content="彩吧助手,3D在线缩水,P3在线缩水,3D走势图,P3走势图,P5走势图,双色球走势图,大乐透走势图,22选5走势图,七乐彩走势图,3D遗漏分析,P3遗漏分析,双色球遗漏分析">
  9. <meta name="description" content="中国彩吧的专业彩票工具|彩票走势图站点|彩票遗漏统计 - 彩吧助手">
  10. @*<link rel="stylesheet/less" type="text/css" href="~/Content/css/ss.less" />*@
  11. <link href="~/Content/miniCss/ss.css?v=@(DateTime.Now.Millisecond)" rel="stylesheet" />
  12. </head>
  13. <body>
  14. <div style="width:100%;position:fixed;top:0;bottom:60px;z-index:999;background-color:#fff">
  15. <div style="z-index:999;top:0;left:0;position:fixed;background-color:#fff;width:100%;">
  16. @Html.Partial("header2", Model.Item1)
  17. </div>
  18. <div style="width:100%;top:-4px;bottom:60px;position:fixed;z-index:0;">
  19. <iframe style="width:100%;height:100%;" frameborder=0 name="showHere" scrolling=auto src="@Model.Item3"></iframe>
  20. </div>
  21. @Html.Partial("_footer", Model.Item2)
  22. </div>
  23. <script src="~/Content/lib/less.min.js"></script>
  24. <script src="~/Content/lib/jquery-3.2.1.min.js"></script>
  25. <script type="text/javascript">
  26. $(function () {
  27. $(".back").click(function () {
  28. if (window.history.back) {
  29. window.history.back();
  30. }
  31. else {
  32. var origin = window.location.origin;
  33. if (window.location.href.indexOf("ZS") > -1) {
  34. window.location.href = origin + "/ZS";
  35. }
  36. if (window.location.href.indexOf("SS") > -1) {
  37. window.location.href = origin + "/SS";
  38. }
  39. }
  40. })
  41. })
  42. </script>
  43. </body>
  44. </html>