8b7471af592730324882249ef4d35c17709edd06.svn-base 1.8 KB
<div class="lg-nav">
  <label>根据地址类别查询</label>
  <div class="btn-group btn-group-sm btn-mgl-5">

        <button type="button" class="btn btn-default">默认分类</button>
        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
          <i class="caret"></i>
        </button>
        <ul class="dropdown-menu">
          <li><a href="#">默认分类</a></li>
          <li><a href="#">德国客户</a></li>
          <li><a href="#">欧洲客户</a></li>
          <li><a href="#">美国客户</a></li>
          <li><a href="#">非洲客户</a></li>
        </ul>
  </div>
</div>
<div class="lg-con" scroller-all="160">
  <div class="lg-wrap">

    <div class="list-wrap">
      <table class="table table-hover">
        <thead>
        <tr>
          <th><label allcheck="0" class="checkall"></label></th>
          <th>邮件主题</th>
          <th>创建时间</th>
          <th>投递量</th>
          <th>点击</th>
          <th>退订</th>
          <th>操作</th>
        </tr>
        </thead>
        <tbody>
        <tr ng-repeat="listitem in listitems">
          <td width="60"><label datafilecheck="0" class="lg-checkbox"></label></td>
          <td width="25%">
            {{listitem.title}}
          </td>
          <td>{{listitem.dtime}}</td>
          <td>14</td>
          <td>12</td>
          <td>1</td>
          <td width="160">
              <button class="btn btn-default btn-sm"><i class="fa fa-download"></i> 导出</button>
              <button class="btn btn-danger btn-sm"><i class="fa fa-trash-o"></i> 删除</button>
            <!--button class="btn btn-warning btn-sm"><i class="fa fa-envelope-o"></i> 再次发送</button-->
          </td>
        </tr>

        </tbody>
      </table>
    </div>

  </div>
</div>