🦀️ fix: 修复bug
This commit is contained in:
parent
1d04914a1f
commit
7be3552d72
|
@ -120,11 +120,12 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<template v-if="goodInfo.entity.notice">
|
<template v-if="goodInfo.entity.hasOwnProperty('notice')">
|
||||||
<h3>使用须知</h3>
|
<h3>使用须知</h3>
|
||||||
<p v-html="goodInfo.entity.notice"></p>
|
<p v-html="goodInfo.entity.notice"></p>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="goodInfo.entity.create_time<='2024-04-23 16:00:00'&&!goodInfo.entity.notice">
|
<template
|
||||||
|
v-else-if="goodInfo.entity.create_time<='2024-04-23 16:00:00'&&!goodInfo.entity.hasOwnProperty('notice')">
|
||||||
<h3>使用须知</h3>
|
<h3>使用须知</h3>
|
||||||
<p>
|
<p>
|
||||||
1、在{{reduceInfo.channel==1?'支付宝H5':'微信APP内打开链接'}},点击【一键领取】完成领取{{reduceInfo.channel==1?'支付宝':'微信'}}立减金<br />
|
1、在{{reduceInfo.channel==1?'支付宝H5':'微信APP内打开链接'}},点击【一键领取】完成领取{{reduceInfo.channel==1?'支付宝':'微信'}}立减金<br />
|
||||||
|
|
|
@ -126,11 +126,11 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<template v-if='goodInfo.entity.notice'>
|
<template v-if='goodInfo.entity.hasOwnProperty("notice")'>
|
||||||
<h3>使用须知</h3>
|
<h3>使用须知</h3>
|
||||||
<p v-html="goodInfo.entity.notice"></p>
|
<p v-html="goodInfo.entity.notice"></p>
|
||||||
</template>
|
</template>
|
||||||
<template v-if='goodInfo.entity.create_time<="2024-04-23 16:00:00"&&!goodInfo.entity.notice'>
|
<template v-if='goodInfo.entity.create_time<="2024-04-23 16:00:00"&&!goodInfo.entity.hasOwnProperty("notice")'>
|
||||||
<h3>使用须知</h3>
|
<h3>使用须知</h3>
|
||||||
<p>
|
<p>
|
||||||
1、在{{reduceInfo.channel==1?'支付宝H5':'微信APP内打开链接'}},点击【一键领取】完成领取{{reduceInfo.channel==1?'支付宝':'微信'}}立减金<br />
|
1、在{{reduceInfo.channel==1?'支付宝H5':'微信APP内打开链接'}},点击【一键领取】完成领取{{reduceInfo.channel==1?'支付宝':'微信'}}立减金<br />
|
||||||
|
|
Loading…
Reference in New Issue