首页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>