zoukankan      html  css  js  c++  java
  • glyphicon图标的使用举例

    <a href="" ng-click="DialTelephone.html"
    title="拨打" style="text-decoration: none">
    <span class="glyphicon glyphicon-earphone" style="color:red" aria-hidden="true">
    </span></a>


    <tbody>
    <tr ng-repeat="customer in customerList">
    <td class="text-center">{{customer.type|T_}}</td>
    <td class="text-center" ><a href="detail.html?cid={{customer.cid}}" title="查看" target="_blank" style="text-decoration: underline;" ng-bind="customer.cid"></a></t-bind="customer.cname">
    <a href="relieveBlack.html" title="解除黑名单" data-toggle="modal" data-target="#mergeModal" ng-click="relieve(customer.cid, customer.black)" ng-cl><span style="color:red;font-weight:bold;display:{{customer.black|black_}};" id="RELIEVE">!</span></a>
    <!--<a href="#" class="btn" data-toggle="popover" data-html="true" data-placement="right" title="电话:customer.tel " data-content="手机:<a href='#'>13691226585</a>">
    <span class="glyphicon glyphicon-earphone text-green "> </span>
    </a>-->
    </td>
    <td class="text-center" ng-bind="customer.cname"></td>
    <td class="text-center">{{customer.assessment}}</td>
    <td class="text-center" nowrap="nowrap" ng-bind="customer.city">
    <a href="#" style="text-decoration: underline;" data-toggle="modal" data-target="#person"></a>
    </td>
    <td class="text-center" ng-bind="customer.userid"></td>
    <td class="text-center">{{customer.register|date:'yyyy-MM-dd'}}</td>
    <td class="text-center">{{customer.updatedt|date:'yyyy-MM-dd'}}</td>
    <td class="text-center">5</td>

    <td class="text-center table-option"><a href="../../cresource/view/add.html?cid={{customer.cid}}" title="添加客源" target="_blank"> <span class="icon-plus text-green" aria-hidden="true"></span>
    </a><a href="blacklist.html" title="拉黑" ng-click="black(customer.cid, customer.black);" data-toggle="modal" data-target="#mergeModal"> <span class="icon-ban-circle text-red" aria-hidden="true"></span></a>
    <a ui-sref="callphone" data-toggle="modal" data-target="#cainmergeModal" title="拨打" style="text-decoration: none" ng-click="op($index)">
    <span class="glyphicon glyphicon-earphone" style="color:red" aria-hidden="true">
    </span></a>
    </td>
    </tr>
    </tbody>
    </table>
    <div class="panel-footer">
    <nav class="pull-right">
    <pagination num-pages="pages" curr-page="page" on-select-page="selectPage(page)"></pagination>
    </nav>
    </div>
    </div>
    </div>

    </div>
    </div>

  • 相关阅读:
    并发编程学习笔记(15)----Executor框架的使用
    并发编程学习笔记(14)----ThreadPoolExecutor(线程池)的使用及原理
    并发编程学习笔记(13)----ConcurrentLinkedQueue(非阻塞队列)和BlockingQueue(阻塞队列)原理
    并发编程学习笔记(12)----Fork/Join框架
    并发编程学习笔记(11)----FutureTask的使用及实现
    并发编程学习笔记(10)----并发工具类CyclicBarrier、Semaphore和Exchanger类的使用和原理
    设计模式:代理模式
    设计模式:装饰模式
    设计模式:几大原则
    设计模式:策略模式(Strategy)
  • 原文地址:https://www.cnblogs.com/shunzdd/p/5585972.html
Copyright © 2011-2022 走看看