|
@@ -10,7 +10,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <Dialog :visible="showDetail" titleClass="text-h6" :footer="point > detailItem?.point" :widthType="3" title="详情说明" @submit="handleSubmit" @close="showDetail = false">
|
|
|
|
|
|
+ <Dialog :visible="showDetail" titleClass="text-h6" :footer="point >= detailItem?.point" :widthType="3" title="详情说明" @submit="handleSubmit" @close="showDetail = false">
|
|
<div class="color-primary font-size-20">{{ detailItem.name }}</div>
|
|
<div class="color-primary font-size-20">{{ detailItem.name }}</div>
|
|
<div class="tips">
|
|
<div class="tips">
|
|
<div>使用说明:积分一经兑换概不退回,敬请谅解。</div>
|
|
<div>使用说明:积分一经兑换概不退回,敬请谅解。</div>
|
|
@@ -19,7 +19,7 @@
|
|
<div class="mr-1">消耗积分</div>
|
|
<div class="mr-1">消耗积分</div>
|
|
<div class="color-primary">{{ detailItem.point }}</div>
|
|
<div class="color-primary">{{ detailItem.point }}</div>
|
|
</div>
|
|
</div>
|
|
- <div v-if="point > detailItem.point">
|
|
|
|
|
|
+ <div v-if="point >= detailItem.point">
|
|
<div class="color-666 mb-5 mt-10">{{ detailItem?.type ? '收货人信息填写' : '联系电话填写' }}</div>
|
|
<div class="color-666 mb-5 mt-10">{{ detailItem?.type ? '收货人信息填写' : '联系电话填写' }}</div>
|
|
<CtForm ref="CtFormRef" :items="formItems"></CtForm>
|
|
<CtForm ref="CtFormRef" :items="formItems"></CtForm>
|
|
</div>
|
|
</div>
|