|
@@ -121,7 +121,15 @@
|
|
|
<div class="module-det flex-center-between">
|
|
<div class="module-det flex-center-between">
|
|
|
<div
|
|
<div
|
|
|
class="app-color-3"
|
|
class="app-color-3"
|
|
|
- >{{ data.discountType == 0 ? '使用优惠券' : data.discountType == 1 ? '会员打折' : '随机优惠' }}</div>
|
|
|
|
|
|
|
+ >
|
|
|
|
|
+
|
|
|
|
|
+ <template v-if="data.discountType == 0">未知</template>
|
|
|
|
|
+ <template v-else-if="data.discountType == 1">优惠券</template>
|
|
|
|
|
+ <template v-else-if="data.discountType == 2">会员优惠</template>
|
|
|
|
|
+ <template v-else-if="data.discountType == 3">随机优惠</template>
|
|
|
|
|
+ <template v-else>未知</template>
|
|
|
|
|
+
|
|
|
|
|
+ </div>
|
|
|
<div class="app-price">-¥{{ data.discountAmount }}</div>
|
|
<div class="app-price">-¥{{ data.discountAmount }}</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -134,7 +142,7 @@
|
|
|
<span v-else>已付款</span>
|
|
<span v-else>已付款</span>
|
|
|
<span class="app-price">
|
|
<span class="app-price">
|
|
|
<span>¥</span>
|
|
<span>¥</span>
|
|
|
- <span class="app-size-40">{{ data.prePrice }}</span>
|
|
|
|
|
|
|
+ <span class="app-size-40">{{ data.actPrice }}</span>
|
|
|
</span>
|
|
</span>
|
|
|
</div>
|
|
</div>
|
|
|
<template>
|
|
<template>
|