|
@@ -490,9 +490,15 @@ export default defineComponent({
|
|
|
<div class={styles.priceGroup}>
|
|
|
团购价:
|
|
|
<p>
|
|
|
- <del>
|
|
|
- <span>¥</span> {moneyFormat(state.goodsInfo.groupPrice)}
|
|
|
- </del>
|
|
|
+ {state.goodsInfo.currentPrice <= 0 ? (
|
|
|
+ <del>
|
|
|
+ <span>¥</span> {moneyFormat(state.goodsInfo.groupPrice)}
|
|
|
+ </del>
|
|
|
+ ) : (
|
|
|
+ <>
|
|
|
+ <span>¥</span> {moneyFormat(state.goodsInfo.currentPrice)}
|
|
|
+ </>
|
|
|
+ )}
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|