| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <!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 table{
- background-color: #fff;
- }
- .wrap 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: #d32526 1px solid;
- }
- #customer-tab .com_title{
- margin-bottom: 10px;
- }
- #customer-tab tbody tr td a{
- color: #3578ba;
- }
- #customer-tab tbody tr td a:hover{
- color: #d32526;
- }
- </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>
- 单据{{tableParams.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()" placeholder="输入企业名称、简称或申请人搜索" style="width: 100%"/>
- <a class="btn input-group-addon" ng-click="onSearch()">搜索</a>
- </div>
- </div>
- </div>
- <div class="fr toggle">
- <a ng-click="condition.$open=!condition.$open" class="text-simple"><span ng-bind="condition.$open ? '简化筛选条件' : '更多筛选条件'"></span><i class="fa fa-fw" ng-class="{'fa-angle-up': condition.$open, 'fa-angle-down': !condition.$open}"></i></a>
- </div>
- </div>
- <div class="more" ng-class="{'open': condition.$open}">
- <form class="form-inline">
- <div class="form-group ">
- <label>日期:</label>
- <div class="btn-group btn-menu" dropdown is-open="condition.$dateZoneOpen">
- <button type="button" dropdown-toggle style="width: 85px;" class="btn btn-default btn-xs dropdown-toggle">
- {{dateZoneText}}<i class="fa fa-fw fa-angle-down icon-right"></i></span>
- </button>
- <ul class="dropdown-menu">
- <li><a ng-click="changeDateZone(1)">一个月内</a></li>
- <li><a ng-click="changeDateZone(6)">半年内</a></li>
- <li><a ng-click="changeDateZone()">半年前</a></li>
- </ul>
- </div>
- <div class="form-group input-group input-group-xs input-trigger">
- <input type="text" ng-model="condition.dateFrom"
- class="form-control" placeholder="从"
- datepicker-popup="yyyy-MM-dd" is-open="condition.$fromOpened"
- ng-required="true"
- current-text="今天" clear-text="清除" close-text="关闭"
- datepicker-options="{formatDayTitle: 'yyyy年M月', formatMonth: 'M月', showWeeks: false}"
- ng-focus="openDatePicker($event, condition, '$fromOpened')">
- <span class="input-group-btn">
- <button type="button" class="btn btn-default"
- ng-click="openDatePicker($event, condition, '$fromOpened')">
- <i class="fa fa-calendar"></i>
- </button>
- </span>
- </div>
- <div class="form-group input-group input-group-xs input-trigger">
- <input type="text" ng-model="condition.dateTo"
- class="form-control" placeholder="到"
- datepicker-popup="yyyy-MM-dd" is-open="condition.$toOpened"
- ng-required="true"
- current-text="今天" clear-text="清除" close-text="关闭"
- datepicker-options="{formatDayTitle: 'yyyy年M月', formatMonth: 'M月', showWeeks: false}"
- ng-focus="openDatePicker($event, condition, '$toOpened')">
- <span class="input-group-btn">
- <button type="button" class="btn btn-default"
- ng-click="openDatePicker($event, condition, '$toOpened')">
- <i class="fa fa-calendar"></i>
- </button>
- </span>
- </div>
- </div>
- <div class="form-group">
- <label>采纳结果:</label>
- <div class="btn-group btn-menu" dropdown is-open="condition.$agreedOpen">
- <button type="button" dropdown-toggle style="width: 70px;" class="btn btn-default btn-xs dropdown-toggle">
- {{agreedText}}<i class="fa fa-fw fa-angle-down icon-right"></i></span>
- </button>
- <ul class="dropdown-menu">
- <li><a ng-click="changeAgreed()">全部</a></li>
- <li><a ng-click="changeAgreed(1)">已采纳</a></li>
- <li><a ng-click="changeAgreed(0)">未采纳</a></li>
- </ul>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- <div class="wrap" id="customer-tab">
- <div class="content">
- <!--供应商列表-->
- <table class="table table-hover"
- ng-table="customerParams">
- <thead>
- <tr class="pane-header">
- <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="80" class="text-center">联系方式</th>
- <th width="170" class="text-center">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="vendor in $data">
- <td class="text-center" ng-bind="::vendor.vendorEnterprise.enName"></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 ng-bind="::vendor.vendorUser.position"></td>
- <td class="text-center" ng-bind="::vendor.vendorUser.userTel"></td>
- <td class="text-center">
- <a href="#/purc/vendor/{{vendor.id}}">查看详情</a>
- <a ng-click="purcByEn(vendor.vendorEnterprise.enBussinessCode)">下达采购单</a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|