| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <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">
-
- <div class="panel-heading">
- {:build_heading(null,FALSE)}
- <ul class="nav nav-tabs" data-field="status">
- <li class="{:$Think.get.status === null ? 'active' : ''}"><a href="#t-all" data-value="" data-toggle="tab">{:__('All')}</a></li>
- {foreach name="statusList" item="vo"}
- <li class="{:$Think.get.status === (string)$key ? 'active' : ''}"><a href="#t-{$key|htmlentities}" data-value="{$key|htmlentities}" data-toggle="tab">{$vo|htmlentities}</a></li>
- {/foreach}
- </ul>
- </div>
- <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/shop/goods/edit')}"
- data-operate-del="{:$auth->check('service/shop/goods/del')}"
- width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|