12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
-
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>苏州园区交易市场监管系统</title>
- @*<%--
- <link href="~/easyui/themes/metro/easyui.css" rel="stylesheet" type="text/css" />--%>*@
- <link rel="stylesheet" type="text/css" href="~/easyui/themes/bootstrap/easyui.css" />
- <link rel="stylesheet" type="text/css" href="~/easyui/themes/icon.css" />
- <link href="~/Content/css/bootstrap.min.css" rel="stylesheet" />
- <link href="~/Content/js/plugins/layer/skin/layer.css" rel="stylesheet" />
- <script src="~/easyui/jquery.min.js" type="text/javascript"></script>
- <script src="~/Content/js/bootstrap.min.js"></script>
- <script src="~/easyui/jquery.easyui.min.js" type="text/javascript"></script>
- <script src="~/easyui/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
- <script src="~/js/publish/MainIndex.js" type="text/javascript"></script>
- <script src="~/Content/js/plugins/layer/layer.min.js"></script>
- <script src="~/js/Utils.js" type="text/javascript"></script>
- <link href="~/Content/publish/MainIndex.css" rel="stylesheet" type="text/css" />
- <script>
-
- </script>
- <style>
- .tree-folder {
- /*background: url('') no-repeat -224px 0;*/
- background: url('/Content/img/MainIndex/ftv2folderclosed.png');
- }
- .tree-folder-open {
- /*background: url('images/tree_icons.png') no-repeat -224px 0;*/
- background: url('/Content/img/MainIndex/ftv2folderopen.png');
- }
- .tree-file {
- /*background: url('images/tree_icons.png') no-repeat -240px 0;*/
- background: url('/Content/img/MainIndex/ftv2doc.png');
- }
- </style>
- </head>
- <body class="easyui-layout">
- <div region="north" border="true" class="cs-north">
- <div class="cs-north-bg"></div>
- </div>
- <div region="west" border="true" split="true" title="菜单" class="cs-west">
- <div class="easyui-panel" style="margin-top: 3px; position: relative; padding: 10px; float: left; display: inline; width: 210px; height: 98%">
- <ul id="tt" class="easyui-tree" data-options="url: '@Url.Action("GetFunctionTrees", "Main")',
- method: 'post' ,
- animate: true,
- lines: true,
- loadFilter: function (rows) {
- return convert(rows);
- },
- onLoadSuccess: function (node, data) {
- initTreeSelect(node, data);
- },
- onClick: function (node) {
- loadTarget();
- }"></ul>
- </div>
- </div>
- <div id="mainPanle" region="center" border="true" border="false">
- <div id="tabs" class="easyui-tabs" fit="true" border="false">
- <div title="首页" style="background-color: #F5F2F2;">
- @*<div class="cs-home-remark">
- <h1>jQuery EasyUI 1.3.4 API</h1> <br>
- 制作:purediy <br>
- 博客:<a href="http://www.cnblogs.com/purediy" target="_blank">http://www.cnblogs.com/purediy</a><br>
- 说明:jQuery EasyUI 1.3.4 API离线文档,与官网API文档完全一致。
- </div>*@
- @*<asp:Image ID="Image1" ImageUrl="~/Images/logo2.png" Height="393px" Width="570px" />*@
- <div class="">
- <img src="~/Content/img/MainIndex/welcomegs.gif" style="margin: 50px 0 0 50px;" />
- </div>
- </div>
- </div>
- </div>
- <div region="south" border="false" id="south" style="text-align: center;">
- 登录IP:<span id="IpAddress">@ViewBag.LoginIp</span>
- </div>
- <script>
-
- </script>
- </body>
- </html>
|