| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8"/>
- <title>供应商列表</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
- <meta name="Keywords" content=""/>
- <meta name="Description" content=""/>
- <link rel="stylesheet" href="static/css/add.css "/>
- </head>
- <body>
- <style>
- .wrap-content table{
- background-color: #fff;
- }
- .wrap-content table .table-hover {
- border: 1px red solid;
- }
- #customer-tab .header th,#customer-tab tbody tr.header,#customer-tab tbody tr.header th{
- height: 38px;
- text-align: center;
- padding: 0;
- line-height: 38px;
- border-bottom-width: 0;
- background: #f5f5f5;
- border: none;
- font-size: 12px;
- }
- #customer-tab tbody tr.header:hover{
- border: none;
- }
- .pane-header{
- /*border-radius: 0px 0 0px 0px;
- box-shadow: 0 0 3px #ccc;
- background: linear-gradient(to top, #e7e7e7 0%,#ffffff 100%);*/
- height: 40px;
- font-size: 14px;
- line-height: 40px;}
- #customer-tab .pane-header th{
- border-bottom: none;
- }
- .table>tbody+tbody{
- border-top: none;
- }
- #customer-tab tbody td{
- border: none;
- }
- #customer-tab .pane-body{
- padding: 0;
- }
- #customer-tab tbody tr{
- background: none;
- height: 100px;
- border-top: #e8e8e8 1px solid;
- line-height: 100px;
- }
- #customer-tab tbody tr td{
- text-align: center;
- line-height: 20px;
- vertical-align: inherit;
- font-size: 14px;
- }
- #customer-tab tbody tr:hover{
- border: #3f84f6 2px solid;
- }
- #customer-tab .com_title{
- margin-bottom: 10px;
- }
- #customer-tab tbody tr td a{
- color: #5078cb;
- }
- #customer-tab tbody tr td a:hover{
- color: #d32526 !important;
- text-decoration: underline !important;
- }
- #customer-tab table tr td a.color32{
- color: #323232;
- }
- </style>
- <link rel="stylesheet" href="static/css/public.css">
- <div class="pub-com_head">
- <span>供应商资料</span>
- <div class="p-right">
- </div>
- </div>
- <div id="public">
- <div class="condition block" style="padding: 10px 15px;">
- <div class="search-bg condition block" style="padding: 10px 15px;">
- <div class="row">
- <div id="topSearch" style="float: left">
- <span class="text-muted f16"><i class="fa fa-search fa-lg"></i> 搜索"{{tip}}",为您找到结果:</span>
- 单据{{total}}条
- </div>
- <div class="col-xs-6">
- <div class="search">
- <div class="form-group form-group-sm has-feedback" dropdown auto-close="outsideClick" on-toggle="searchAdvance=open">
- <input type="search" class="form-control input-sm" ng-model="keyword" ng-search="onSearch(keyword)" placeholder="输入企业名称、营业执照号、申请人或审核人" style="width: 100%"/>
- <a class="btn input-group-addon" ng-click="onSearch(keyword)">搜索</a>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="wrap-content" id="customer-tab">
- <div>
- <!--供应商列表-->
- <table class="table table-hover"
- ng-table="customerParams">
- <thead>
- <tr class="pane-header">
- <th width="80" class="text-center">UU</th>
- <th width="180" class="text-center">供应商名称</th>
- <th width="120" class="text-center">简称</th>
- <th width="200" class="text-center">地址</th>
- <th width="100" class="text-center">联系人</th>
- <th width="80" class="text-center">联系电话</th>
- <th width="170" class="text-center">操作</th>
- </tr>
- </thead>
- <tbody ng-if="$data.length === 0">
- <tr>
- <td colspan="7">
- <div id="empty">
- <div class="left_img">
- <a href="http://www.ubtob.com/" target="_blank" title="优软云首页"><img src="static/img/empty/uas_empty.png"></a>
- <a href="#/index" title="B2B商务首页">B2B 商务</a>
- </div>
- <div class="right_link">
- <p>暂无对应的供应商信息</p>
- </div>
- </div>
- </td>
- </tr>
- </tbody>
- <tbody>
- <tr ng-repeat="vendor in $data">
- <td ng-bind="::vendor.vendorEnterprise.uu"></td>
- <td class="text-center"><a href="#/purc/vendor/{{vendor.id}}" ng-bind="::vendor.vendorEnterprise.enName" title="查看供应商资料" class="color32 order-detail"></a></td>
- <td class="text-center" ng-bind="::vendor.vendorEnterprise.enShortname"></td>
- <td class="text-center" ng-bind="::vendor.vendorEnterprise.enAddress"></td>
- <td class="text-center" ng-bind="::vendor.vendorUser.userName"></td>
- <td class="text-center" ng-bind="::vendor.vendorUser.userTel"></td>
- <td class="text-center">
- <a ng-click="purcByEn(vendor.vendorEnterprise.enBussinessCode)">下采购单</a>
- <a href="#/purc/purcinquiry/{{vendor.vendorEnterprise.enBussinessCode}}">立即询价</a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|