|
|
@@ -3,7 +3,12 @@
|
|
|
#buyer_cart a {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
-
|
|
|
+ #buyer_cart a.unstand{
|
|
|
+ cursor: default ;
|
|
|
+ }
|
|
|
+ #buyer_cart a.unstand:hover{
|
|
|
+ color: #666 !important ;
|
|
|
+ }
|
|
|
#buyer_cart a:hover {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
@@ -618,9 +623,11 @@
|
|
|
<a href="store/{{store.arr[0].storeUuid}}/{{::cart.batchCode}}" target="_blank">
|
|
|
<img ng-src="{{cart.img || 'static/img/store/common/default.png'}}" width="60" height="60"/></a>
|
|
|
<div class="car_pro_xq">
|
|
|
- <i class="text-hidden">类目:<a href="product/kind/{{cart.goods.kindUuid}}" target="_blank" ng-bind="::cart.kiName || '-'" title="{{::cart.kiName}}"></a></i>
|
|
|
- <i class="text-hidden">型号:<a href="store/{{store.arr[0].storeUuid}}/{{::cart.batchCode}}" target="_blank" ng-bind="::cart.code" title="{{::cart.code}}"></a></i>
|
|
|
- <i class="text-hidden">品牌:<a href="product/brand/{{::cart.goods.branduuid}}/" target="_blank" ng-bind="::cart.goods.brandNameEn" title="{{::cart.goods.brandNameEn}}"></a></i>
|
|
|
+ <i class="text-hidden" ng-if="!cart.uuid">类目:<a ng-bind="::cart.kiName || '-'" title="{{::cart.kiName}}" class="unstand"></a></i>
|
|
|
+ <i class="text-hidden" ng-if="cart.uuid">类目:<a href="product/kind/{{cart.goods.kindUuid}}" target="_blank" ng-bind="::cart.kiName" title="{{::cart.kiName}}"></a></i>
|
|
|
+ <i class="text-hidden">型号:<a href="store/{{store.arr[0].storeUuid}}/{{::cart.batchCode}}" target="_blank" ng-bind="::cart.code || '-'" title="{{::cart.code}}"></a></i>
|
|
|
+ <i class="text-hidden" ng-if="!cart.uuid">品牌:<a ng-bind="::cart.goods.brandNameEn || '-'" title="{{::cart.goods.brandNameEn}}" class="unstand"></a></i>
|
|
|
+ <i class="text-hidden" ng-if="cart.uuid">品牌:<a href="product/brand/{{::cart.goods.branduuid}}/" target="_blank" ng-bind="::cart.goods.brandNameEn" title="{{::cart.goods.brandNameEn}}"></a></i>
|
|
|
</div>
|
|
|
</div>
|
|
|
</span>
|
|
|
@@ -682,7 +689,7 @@
|
|
|
<div class="deal_btn" ng-class="{'top': cart.similarCount!=0}">
|
|
|
<!--<a ng-click="">申请样品</a>-->
|
|
|
<!--<a ng-if="!cart.isActive" style="color: red;">该批次已下架</a>-->
|
|
|
- <a ng-click="collect(cart.uuid, cart.id)" title="移入收藏">移入收藏</a>
|
|
|
+ <!--<a ng-click="collect(cart.uuid, cart.id)" title="移入收藏">移入收藏</a>-->
|
|
|
<a ng-click="deleteById(cart.id)" title="删除">删除</a>
|
|
|
<a ng-click="similarOpen(cart)" title="相似产品" style="color: #5078cb !important;" ng-class="{'active': cart.similarShow}" ng-if="cart.similarCount!=0">相似产品<i class="fa fa-angle-down"></i></a>
|
|
|
</div>
|