|
@@ -144,6 +144,31 @@
|
|
|
font-weight: inherit;
|
|
font-weight: inherit;
|
|
|
top: -2px;
|
|
top: -2px;
|
|
|
}
|
|
}
|
|
|
|
|
+ .order-table .product div.text-over {
|
|
|
|
|
+ width: 340px;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ }
|
|
|
|
|
+ .order-table .product div.text-flow b{
|
|
|
|
|
+ float: left;
|
|
|
|
|
+ }
|
|
|
|
|
+ .order-table .product div.text-flow span{
|
|
|
|
|
+ float: left;
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ width: 290px;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ }
|
|
|
|
|
+ .order-table .product div.text-overflow span{
|
|
|
|
|
+ float: left;
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ width: 340px;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ }
|
|
|
</style>
|
|
</style>
|
|
|
<link rel="stylesheet" href="static/css/public.css">
|
|
<link rel="stylesheet" href="static/css/public.css">
|
|
|
<div class="block" id="public">
|
|
<div class="block" id="public">
|
|
@@ -425,17 +450,18 @@
|
|
|
ng-if="!order.$collapsed ">
|
|
ng-if="!order.$collapsed ">
|
|
|
<td class="product">
|
|
<td class="product">
|
|
|
<div class="text-num order-number" ng-class="{'key': item.key&&order.$showAll}" title="第{{::item.number}}行">{{::item.number}}</div>
|
|
<div class="text-num order-number" ng-class="{'key': item.key&&order.$showAll}" title="第{{::item.number}}行">{{::item.number}}</div>
|
|
|
- <div class="text-num text-bold">
|
|
|
|
|
|
|
+ <div class="text-num text-bold text-overflow" title="{{::item.product.code}}">
|
|
|
<span ng-bind="::item.product.code"></span>
|
|
<span ng-bind="::item.product.code"></span>
|
|
|
</div>
|
|
</div>
|
|
|
- <div>
|
|
|
|
|
|
|
+ <div class="text-overflow" title="{{::item.product.title}}">
|
|
|
<span ng-bind="::item.product.title"></span>
|
|
<span ng-bind="::item.product.title"></span>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="text-muted"
|
|
|
|
|
|
|
+ <div class="text-muted text-over"
|
|
|
|
|
+ title="{{::item.product.spec}}"
|
|
|
ng-bind="::item.product.spec"></div>
|
|
ng-bind="::item.product.spec"></div>
|
|
|
- <div class="text-muted text-bold" ng-if="item.vendspec"><span ng-bind="::item.vendspec"></span></div>
|
|
|
|
|
- <div class="text-bold text-inverse" ng-if="item.factory">送货工厂:<span ng-bind="::item.factory"></span></div>
|
|
|
|
|
- <div class="text-bold text-inverse" ng-if="item.remark">备注:<span ng-bind="::item.remark"></span></div>
|
|
|
|
|
|
|
+ <div class="text-muted text-bold text-overflow" ng-if="item.vendspec" title="{{item.vendspec}}"><span ng-bind="::item.vendspec"></span></div>
|
|
|
|
|
+ <div class="text-bold text-inverse text-flow" ng-if="item.factory" title="{{item.factory}}"><b>送货工厂:</b><span ng-bind="::item.factory"></span></div>
|
|
|
|
|
+ <div class="text-bold text-inverse text-flow" ng-if="item.remark" title="{{item.remark}}"><b>备注:</b><span ng-bind="::item.remark"></span></div>
|
|
|
</td>
|
|
</td>
|
|
|
<td class="text-center">
|
|
<td class="text-center">
|
|
|
<div ng-if="!isUser" class="text-num" ng-bind="::item.price | number:6"></div>
|
|
<div ng-if="!isUser" class="text-num" ng-bind="::item.price | number:6"></div>
|