index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <style type="text/css" media="all">
  2. #table .btn{
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. height: 36px;
  7. border-radius: 18px;
  8. margin-bottom: 10px;
  9. width: 100px;
  10. color: #fff;
  11. }
  12. #table .btn-detail{
  13. background: #62CB81;
  14. }
  15. #table .btn-change{
  16. background: #1677FF;
  17. }
  18. #table .btn-status{
  19. background: #FFA600;
  20. }
  21. #table .btn-cancel{
  22. background: #F7F7F7;
  23. color: #666666;
  24. }
  25. #table .btn-down{
  26. background: #7B65FB;
  27. }
  28. </style>
  29. <div class="panel panel-default panel-intro">
  30. {:build_heading()}
  31. <div class="panel-body">
  32. <div id="myTabContent" class="tab-content">
  33. <div class="tab-pane fade active in" id="one">
  34. <div class="widget-body no-padding">
  35. <div id="toolbar" class="toolbar">
  36. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
  37. </div>
  38. <table id="table" class="table table-bordered table-hover table-nowrap"
  39. data-operate-edit="{:$auth->check('service/order/complaint/edit')}"
  40. data-operate-del="{:$auth->check('service/order/complaint/del')}"
  41. width="100%">
  42. </table>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>