|
@@ -40,7 +40,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="detailBox" th:object="${product}">
|
|
<div class="detailBox" th:object="${product}">
|
|
<div class="crumbs">
|
|
<div class="crumbs">
|
|
- <span>所属分类:{{ productTypeName }}</span>
|
|
|
|
|
|
+ <span v-text="'所属分类:'+productTypeName"></span>
|
|
</div>
|
|
</div>
|
|
<div class="Beautyfair">
|
|
<div class="Beautyfair">
|
|
<span class="tag" v-if="beautyActFlag==1">美博会</span>
|
|
<span class="tag" v-if="beautyActFlag==1">美博会</span>
|
|
@@ -72,7 +72,7 @@
|
|
</div>
|
|
</div>
|
|
<template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0 && priceObj.normalPrice>0 && ((priceObj.priceFlag==0 && priceObj.userIdentity!=3) || (priceObj.priceFlag==2 && priceObj.userIdentity==2) || (priceObj.userIdentity==3 && priceObj.shopId==GLOBAL_SHOP_ID))">
|
|
<template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0 && priceObj.normalPrice>0 && ((priceObj.priceFlag==0 && priceObj.userIdentity!=3) || (priceObj.priceFlag==2 && priceObj.userIdentity==2) || (priceObj.userIdentity==3 && priceObj.shopId==GLOBAL_SHOP_ID))">
|
|
<div class="row"> <span class="l">市场价</span><i>:</i>
|
|
<div class="row"> <span class="l">市场价</span><i>:</i>
|
|
- <em><del>¥{{priceObj.normalPrice.toFixed(2)}}</del></em>
|
|
|
|
|
|
+ <em><del v-text="'¥'+priceObj.normalPrice.toFixed(2)"></del></em>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<div class="row actStatus" v-if="priceObj.actStatus==1||priceObj.ladderPriceFlag==1" ><span class="l">促销</span><i>:</i>
|
|
<div class="row actStatus" v-if="priceObj.actStatus==1||priceObj.ladderPriceFlag==1" ><span class="l">促销</span><i>:</i>
|