解决楼层装修 移动端发现的小问题

master
学习很差啦 2022-08-10 19:06:19 +08:00
parent dd67687d3a
commit b77b4c0ef8
1 changed files with 3 additions and 2 deletions

View File

@ -333,6 +333,7 @@
<span v-if="item.url.___type == 'other'">
{{ item.url.title }}</span
>
<!-- 当选择完活动之后的其他回调 -->
<span v-if="item.url.___type == 'marketing'">
<span v-if="item.url.___promotion == 'SECKILL'"> </span>
@ -362,7 +363,7 @@
<!-- 链接地址-->
<div
class="decorate-view"
v-if="item.url.url && item.url.___type == 'other'"
v-if="item.url?.url && item.url.___type == 'other'"
>
<div class="decorate-view-title">外部链接</div>
<div>
@ -370,7 +371,7 @@
</div>
</div>
<p v-if="item.url.url && item.url.___type == 'other'">
<p v-if="item.url?.url && item.url.___type == 'other'">
(如非同域名下则在小程序与公众号中无效)
</p>
</div>