index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. .icon{
  26. width: 18px;
  27. height: 18px;
  28. margin-right: 10px;
  29. }
  30. .notice{
  31. display: flex;
  32. align-items: center;
  33. background: #CEEBD8;
  34. padding: 0 18px;
  35. color: #4C9A63;
  36. height: 68px;
  37. border-radius: 10px;
  38. margin-bottom: 10px;
  39. }
  40. </style>
  41. <div class="notice">
  42. <img src="__CDN__/assets/addons/service/image/notice.png" alt="" class="icon" />
  43. 温馨提示:第一次申请,请在申请列表审核,申请通过后,在商家管理查看,后续修改资料,在完善资料审核。
  44. </div>
  45. <div class="panel panel-default panel-intro">
  46. {:build_heading()}
  47. <div class="panel-body">
  48. <div id="myTabContent" class="tab-content">
  49. <div class="tab-pane fade active in" id="one">
  50. <div class="widget-body no-padding">
  51. <div id="toolbar" class="toolbar">
  52. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
  53. </div>
  54. <table id="table" class="table table-hover table-nowrap"
  55. data-operate-edit="{:$auth->check('service/shop/applyshop/edit')}"
  56. width="100%">
  57. </table>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>