SSDetail.cshtml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @using Models.Entity.LottomatBaseDB
  2. @model Base_Tools
  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/common/common.css?v=@(DateTime.Now.Millisecond)" rel="stylesheet" />
  12. <link href="~/Content/miniCss/common/header1.css?v=@(DateTime.Now.Millisecond)" rel="stylesheet" />
  13. </head>
  14. <body>
  15. <div style="width:100%;position:fixed;top:0;bottom:60px;z-index:999;background-color:#fff">
  16. <div style="z-index:999;top:0;left:0;position:fixed;background-color:#fff;width:100%;">
  17. @Html.Partial("header2", Model.Title)
  18. </div>
  19. <div style="width:100%;top:-4px;bottom:60px;position:fixed;z-index:0;">
  20. <iframe style="width:100%;height:100%;" frameborder=0 name="showHere" scrolling=auto src="@Model.ToolsUrl"></iframe>
  21. </div>
  22. @Html.Partial("_footer", "SS")
  23. </div>
  24. <script src="~/Content/lib/less.min.js"></script>
  25. <script src="~/Content/lib/jquery-3.2.1.min.js"></script>
  26. <script type="text/javascript">
  27. $(function () {
  28. $(".back").click(function () {
  29. if (window.history.back) {
  30. window.history.back();
  31. }
  32. else {
  33. var origin = window.location.origin;
  34. if (window.location.href.indexOf("SS") > -1) {
  35. window.location.href = origin + "/ss/index.html";
  36. }
  37. }
  38. })
  39. })
  40. </script>
  41. </body>
  42. </html>