Files
quinn-wx/pages/anniversary/index.wxml
2022-12-01 17:21:12 +08:00

28 lines
1.1 KiB
Plaintext

<!--pages/message/index.wxml-->
<view class="contentView">
<view wx:for="{{anniversaryList}}" wx:key="index" class="anniversary">
<image wx:if="{{ item.type == 'birthday' }}" src="/images/birthday.jpg"/>
<image wx:elif="{{ item.type == 'love' }}" src="/images/love.png"/>
<image wx:elif="{{ item.type == 'baby' }}" src="/images/baby.png"/>
<image wx:else src="/images/life.jpg"></image>
<view class="title">
{{item.title}}
</view>
<view class="remark">
<view class="countdown">
<text>距离{{item.repeat}}周年</text>
<t-countdown time="{{item.nextDate}}" showDay="{{true}}" />
</view>
<view class="countdown">
<text>今天{{item.repeat}}周年啦!</text>
</view>
</view>
<t-divider content="✿✿✿---■Quinn■---✿✿✿" />
</view>
</view>
<t-empty wx:if="{{dataEmpty}}" t-class="empty-cls" icon="info-circle-filled" description="暂无纪念日" />
<t-fab icon="add" bind:click="handleClick"></t-fab>
<view>
<foot-tab iconList="{{aIconList}}"/>
</view>