Index.cshtml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @using WMS.BZWeb;
  2. @{
  3. ViewBag.Title = "缓存管理";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <style>
  7. .lr-scroll-horizontal {
  8. height: 12px;
  9. display: block;
  10. z-index: 100;
  11. }
  12. .lr-scroll-vertical {
  13. width: 12px;
  14. display: block;
  15. z-index: 100;
  16. }
  17. .jfgrid-sub .jfgrid-body {
  18. overflow-y: scroll
  19. }
  20. </style>
  21. <div class="lr-layout">
  22. <div class="lr-layout-center">
  23. <div class="lr-layout-wrap lr-layout-wrap-notitle">
  24. <div class="lr-layout-tool">
  25. <div class="lr-layout-tool-left">
  26. </div>
  27. <div class="lr-layout-tool-right">
  28. <div class=" btn-group btn-group-sm">
  29. <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i>&nbsp;<span class="lrlg">刷新</span></a>
  30. </div>
  31. <div class=" btn-group btn-group-sm" wms-authorize="yes">
  32. <a id="lr_edit" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;编辑</a>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="lr-layout-body" id="gridtable"></div>
  37. </div>
  38. </div>
  39. </div>
  40. @Html.AppendJsFile("/Areas/KLHCManager/Views/BaseRBCI/Index.js")