营销:适配商城装修组件【列表导航】

This commit is contained in:
owen
2023-11-09 09:21:45 +08:00
parent 4af42e2949
commit b050edae8d
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -11,25 +11,25 @@
<template v-slot:header>
<view class="ss-flex ss-col-center">
<image
v-if="item.src"
v-if="item.iconUrl"
class="list-icon"
:src="sheep.$url.cdn(item.src)"
:src="sheep.$url.cdn(item.iconUrl)"
mode="aspectFit"
></image>
<view
class="title-text ss-flex ss-row-center ss-col-center ss-m-l-20"
:style="[{ color: item.title.color }]"
:style="[{ color: item.titleColor }]"
>
{{ item.title.text }}
{{ item.title }}
</view>
</view>
</template>
<template v-slot:footer>
<view
class="notice-text ss-flex ss-row-center ss-col-center"
:style="[{ color: item.tip.color }]"
:style="[{ color: item.subtitleColor }]"
>
{{ item.tip.text }}
{{ item.subtitle }}
</view>
</template>
</uni-list-item>