| @@ -10,7 +10,7 @@ | |||
| v-if="item.productDescription" | |||
| :title="item.productDescription" | |||
| >{{ item.productDescription }}</div> | |||
| <div class="item-price">¥{{ item.showPrice }}</div> | |||
| <div class="item-price"><span v-if="item.showPrice !== '面议'">¥</span>{{ item.showPrice }}</div> | |||
| </div> | |||
| <br clear="all" /> | |||
| </div> | |||
| @@ -12,7 +12,7 @@ | |||
| >{{ productDetail.productName }}</div> | |||
| <div class="main-price"> | |||
| <span class="price-label">价格:</span> | |||
| <span class="price-value">¥{{ productDetail.showPrice }}</span> | |||
| <span class="price-value"><span v-if="productDetail.showPrice !== '面议'">¥</span>{{ productDetail.showPrice }}</span> | |||
| </div> | |||
| <div class="mian-detail" :title="productDetail.productDescription"> | |||
| <span class="mian-detail-span">详情:</span> | |||