|
|
@@ -77,6 +77,11 @@
|
|
|
color: #5078cb;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+ .invoice-com tbody>tr>td{
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
/*无记录与记录条数*/
|
|
|
.table>tbody>tr.record-num td{
|
|
|
padding: 0;
|
|
|
@@ -402,44 +407,44 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="vendor-invoice-content">
|
|
|
- <table class="invoice-com-tab table" ng-table="billRecordTableParam">
|
|
|
+ <table class="invoice-com-tab table invoice-com" ng-table="billRecordTableParam" style="table-layout: fixed;">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="70">申请时间</th>
|
|
|
- <th width="90">订单号</th>
|
|
|
- <th width="90">开票金额(¥)</th>
|
|
|
- <th width="55" class="select-line">
|
|
|
+ <th width="90">申请时间</th>
|
|
|
+ <th width="185">订单号</th>
|
|
|
+ <th width="110">开票金额(¥)</th>
|
|
|
+ <th width="60" class="select-line">
|
|
|
<select class="select-adder form-control" style="position: relative;left: 6px;" ng-change="billTypeSearch(billType)" ng-model="billType">
|
|
|
<option value="1">类型</option>
|
|
|
<option value="2">普票</option>
|
|
|
<option value="3">专票</option>
|
|
|
</select>
|
|
|
</th>
|
|
|
- <th width="120">发票抬头</th>
|
|
|
- <th width="50">收票人</th>
|
|
|
- <th width="160">收票地址</th>
|
|
|
- <th width="50">联系电话</th>
|
|
|
+ <th width="145">发票抬头</th>
|
|
|
+ <th width="70">收票人</th>
|
|
|
+ <th width="205">收票地址</th>
|
|
|
+ <th width="125">联系电话</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
<tr ng-repeat="item in billData track by $index">
|
|
|
- <td ng-bind="item.createTime | date : 'yyyy-MM-dd'"></td>
|
|
|
+ <td ng-bind="item.createTime | date : 'yyyy-MM-dd'" title="{{item.createTime | date : 'yyyy-MM-dd'}}"></td>
|
|
|
<td>
|
|
|
<span ng-repeat="(col, orderid) in item.orderids.split(',')">
|
|
|
- <a ng-href="vendor#/purchase/detail/{{item.purchaseids.split(',')[col] | EncryptionFilter}}" ng-bind="orderid" target="_blank" class="link-order"></a>
|
|
|
+ <a ng-href="vendor#/purchase/detail/{{item.purchaseids.split(',')[col] | EncryptionFilter}}" ng-bind="orderid" title="{{orderid}}" target="_blank" class="link-order"></a>
|
|
|
</span>
|
|
|
</td>
|
|
|
- <td ng-bind="item.price"></td>
|
|
|
+ <td ng-bind="item.price" title="{{item.price}}"></td>
|
|
|
<td style="padding: 0;">
|
|
|
<span ng-bind="item.invoicetype==1206?'普票':'专票'"></span>
|
|
|
<b ng-click="lookInvoiceInfo(item)" class="invoice-info">开票信息</b></td>
|
|
|
- <td ng-bind="item.invoicetitle"></td>
|
|
|
- <td ng-bind="item.receiverName"></td>
|
|
|
+ <td ng-bind="item.invoicetitle" title="{{item.invoicetitle}}"></td>
|
|
|
+ <td ng-bind="item.receiverName" title="{{item.receiverName}}"></td>
|
|
|
<td class="address" title="{{item.area+' '+item.detailAddr}}">
|
|
|
<p ng-bind="item.area"></p>
|
|
|
<p ng-bind="item.detailAddr"></p>
|
|
|
</td>
|
|
|
- <td ng-bind="item.recTel">13135015772</td>
|
|
|
+ <td ng-bind="item.recTel" title="{{item.recTel}}">13135015772</td>
|
|
|
</tr>
|
|
|
<tr class="record-num" ng-if="billData && billData.length>0">
|
|
|
<td colspan="9">
|