| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <style type="text/css" media="all">
- #table .btn{
- display: flex;
- align-items: center;
- justify-content: center;
- height: 36px;
- border-radius: 18px;
- margin-bottom: 10px;
- width: 100px;
- color: #fff;
- }
- #table .btn-detail{
- background: #62CB81;
- }
- #table .btn-change{
- background: #1677FF;
- }
- #table .btn-status{
- background: #FFA600;
- }
- #table .btn-cancel{
- background: #F7F7F7;
- color: #666666;
- }
- #table .btn-down{
- background: #7B65FB;
- }
- </style>
- <div class="panel panel-default panel-intro">
- {:build_heading()}
- <div class="panel-body">
- <div id="myTabContent" class="tab-content">
- <div class="tab-pane fade active in" id="one">
- <div class="widget-body no-padding">
- <div id="toolbar" class="toolbar">
- <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
-
-
-
-
- </div>
- <table id="table" class="table table-bordered table-hover table-nowrap"
- data-operate-edit="{:$auth->check('service/order/complaint/edit')}"
- data-operate-del="{:$auth->check('service/order/complaint/del')}"
- width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|