MainIndex - 复制.cshtml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. 
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>苏州园区交易市场监管系统</title>
  6. @*<%--
  7. <link href="~/easyui/themes/metro/easyui.css" rel="stylesheet" type="text/css" />--%>*@
  8. <link rel="stylesheet" type="text/css" href="~/easyui/themes/bootstrap/easyui.css" />
  9. <link rel="stylesheet" type="text/css" href="~/easyui/themes/icon.css" />
  10. <link href="~/Content/css/bootstrap.min.css" rel="stylesheet" />
  11. <link href="~/Content/js/plugins/layer/skin/layer.css" rel="stylesheet" />
  12. <script src="~/easyui/jquery.min.js" type="text/javascript"></script>
  13. <script src="~/Content/js/bootstrap.min.js"></script>
  14. <script src="~/easyui/jquery.easyui.min.js" type="text/javascript"></script>
  15. <script src="~/easyui/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
  16. <script src="~/js/publish/MainIndex.js" type="text/javascript"></script>
  17. <script src="~/Content/js/plugins/layer/layer.min.js"></script>
  18. <script src="~/js/Utils.js" type="text/javascript"></script>
  19. <link href="~/Content/publish/MainIndex.css" rel="stylesheet" type="text/css" />
  20. <script>
  21. </script>
  22. <style>
  23. .tree-folder {
  24. /*background: url('') no-repeat -224px 0;*/
  25. background: url('/Content/img/MainIndex/ftv2folderclosed.png');
  26. }
  27. .tree-folder-open {
  28. /*background: url('images/tree_icons.png') no-repeat -224px 0;*/
  29. background: url('/Content/img/MainIndex/ftv2folderopen.png');
  30. }
  31. .tree-file {
  32. /*background: url('images/tree_icons.png') no-repeat -240px 0;*/
  33. background: url('/Content/img/MainIndex/ftv2doc.png');
  34. }
  35. </style>
  36. </head>
  37. <body class="easyui-layout">
  38. <div region="north" border="true" class="cs-north">
  39. <div class="cs-north-bg"></div>
  40. </div>
  41. <div region="west" border="true" split="true" title="菜单" class="cs-west">
  42. <div class="easyui-panel" style="margin-top: 3px; position: relative; padding: 10px; float: left; display: inline; width: 210px; height: 98%">
  43. <ul id="tt" class="easyui-tree" data-options="url: '@Url.Action("GetFunctionTrees", "Main")',
  44. method: 'post' ,
  45. animate: true,
  46. lines: true,
  47. loadFilter: function (rows) {
  48. return convert(rows);
  49. },
  50. onLoadSuccess: function (node, data) {
  51. initTreeSelect(node, data);
  52. },
  53. onClick: function (node) {
  54. loadTarget();
  55. }"></ul>
  56. </div>
  57. </div>
  58. <div id="mainPanle" region="center" border="true" border="false">
  59. <div id="tabs" class="easyui-tabs" fit="true" border="false">
  60. <div title="首页" style="background-color: #F5F2F2;">
  61. @*<div class="cs-home-remark">
  62. <h1>jQuery EasyUI 1.3.4 API</h1> <br>
  63. 制作:purediy <br>
  64. 博客:<a href="http://www.cnblogs.com/purediy" target="_blank">http://www.cnblogs.com/purediy</a><br>
  65. 说明:jQuery EasyUI 1.3.4 API离线文档,与官网API文档完全一致。
  66. </div>*@
  67. @*<asp:Image ID="Image1" ImageUrl="~/Images/logo2.png" Height="393px" Width="570px" />*@
  68. <div class="">
  69. <img src="~/Content/img/MainIndex/welcomegs.gif" style="margin: 50px 0 0 50px;" />
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. <div region="south" border="false" id="south" style="text-align: center;">
  75. 登录IP:<span id="IpAddress">@ViewBag.LoginIp</span>
  76. </div>
  77. <script>
  78. </script>
  79. </body>
  80. </html>