12345678910111213141516171819202122232425262728293031 |
- <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 class="btn {if $sub_is_auth } btn-danger {else/} btn-danger {/if} {:$auth->check('subscription/add')?'':'hide'}" href="{if $sub_is_auth } {$platform['url']}{else/}javascript:; {/if}" data-params="status=normal">新增订阅号</a>
- {if $is_vip }
- <a class="btn btn-danger layer-open {:$auth->check('subscription/sync')?'':'hide'}" title="同步订阅号" data-params="status=normal">同步订阅号</a><br/><br/>
- {/if}
- <span class="{:$auth->check('subscription/add')?'':'hide'}" style="color:red;">最多只能新增{$sys_auth_num ?? '0'}个订阅号,如需增加订阅号数量,请联系商务,谢谢~</span>
- </div>
- <table id="table" style="white-space: nowrap;" class="table table-striped table-bordered table-hover"
- data-operate-edit="false"
- data-operate-del="false"
- width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <style type="text/css">
- .fixed-table-body{
- /*overflow: visible;*/
- height: auto;
- }
- </style>
|