29 lines
1.2 KiB
Plaintext
29 lines
1.2 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">距离[{{item.dateType}}{{item.date}}]已经过{{item.totalDay}}天了</view>
|
|
<view wx:if="{{item.today}}" class="countdown">
|
|
<text>距离{{item.repeat}}周年</text>
|
|
<t-countdown time="{{item.nextDate}}" showDay="{{true}}" />
|
|
</view>
|
|
<view wx:else class="countdown">
|
|
<text>今天{{item.repeat}}周年啦!</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="block-position"></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>
|