zoukankan      html  css  js  c++  java
  • 预约系统(六) 管理页面首页

    首页Basepage显示easyui一个月历,还有摘要提示

    (Basepage在Manage控制器中)

     1 @{
     2     Layout = null;
     3 }
     4 
     5 <!DOCTYPE html>
     6 
     7 <html>
     8 <head>
     9     <meta name="viewport" content="width=device-width" />
    10     <title>首页</title>
    11 
    12     <script src="~/Scripts/jquery-1.8.2.min.js"></script>
    13     @*<script src="~/Scripts/jquery.min.js"></script>*@
    14     @*<script src="~/Scripts/easyui-lang-zh_CN.js"></script>*@
    15     
    16     <script src="~/Scripts/jquery.easyui.min.js"></script>
    17 
    18     <link href="~/Content/DarkBlue/easyui.css" rel="stylesheet" />
    19     <link href="~/Content/DarkBlue/icon.css" rel="stylesheet" />
    20     <script src="~/Scripts/easyui-lang-zh_CN.js"></script>
    21 
    22     <style type="text/css">
    23         .tb_dia{ width:400px; margin:0px auto; font-size:15px;}
    24         .tb_dia td{ height:30px; line-height:30px;}
    25         .tb_lable{ width:80px; text-align:right;}
    26     </style>
    27 </head>
    28 <body style="padding: 30px;">
    29     <div data-options="region:'center'" style="overflow: hidden;">
    30 
    31         <!--top-->
    32         <div id="top" style=" height: auto; margin: 0px auto; padding-left:30px;">
    33             <div id="cc" class="easyui-calendar" style="250px;height:300px; float:left; margin-right:30px;"></div> 
    34 
    35             <div id="p" class="easyui-panel" title="摘要"
    36                  style="800px;height:300px;padding:10px;background:#fafafa;  "
    37                  data-options="iconCls:'icon-man',collapsible:true">
    38                 <p>panel content.</p>
    39                 <p>panel content.</p>
    40             </div> 
    41         </div>
    42 
    43         <!--bottom-->
    44 
    45     </div>
    46 </body>
    47 </html>
  • 相关阅读:
    OpenGL使用笔记-数学函数
    OpenGL--windows<vs2019>配置
    CTF学习记录--Wireshark抓包工具使用说明
    最小公倍数(LCM)
    CTF学习记录--抓包工具BurpSuite
    CTF学习记录--Robots协议
    ubuntu安装过程中的一些问题
    hadoop优化之拙见
    hadoop map-red的执行过程
    namenode需要升级
  • 原文地址:https://www.cnblogs.com/youguess/p/7170032.html
Copyright © 2011-2022 走看看