57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
<view class="custom-navbar">
|
|
<t-navbar title="我们的记录">
|
|
<view slot="left" class="more" bind:tap="toggleMoreMenu">
|
|
<t-icon name="view-list" size="24px" />
|
|
<view wx:if="{{isShowMoreMenu}}" class="more-menu">
|
|
<t-cell-group class="content" theme="card">
|
|
<t-cell title="新纪录" leftIcon="add" bind:tap="toCreater" />
|
|
<t-cell title="按列表查找" leftIcon="view-list" bind:tap="toSearch" />
|
|
<t-cell title="按日期查找" leftIcon="calendar-1" bind:tap="openDateFilter" />
|
|
<t-cell title="按地图查找" leftIcon="location" />
|
|
</t-cell-group>
|
|
</view>
|
|
</view>
|
|
</t-navbar>
|
|
</view>
|
|
<t-calendar
|
|
class="calendar"
|
|
type="multiple"
|
|
min-date="{{dateFilterMin}}"
|
|
max-date="{{dateFilterMax}}"
|
|
value="{{dateFilterAllows}}"
|
|
visible="{{dateFilterVisible}}"
|
|
switch-mode="year-month"
|
|
confirm-btn="{{null}}"
|
|
bind:tap="tapCalendar"
|
|
/>
|
|
<t-indexes
|
|
class="journal-list"
|
|
bind:scroll="onScroll"
|
|
sticky-offset="{{stickyOffset}}"
|
|
>
|
|
<view class="content" wx:for="{{list}}" wx:for-item="journal" wx:for-index="journalIndex" wx:key="index">
|
|
<t-indexes-anchor class="date" index="{{journal.date}}" />
|
|
<view wx:if="{{journal.idea || journal.location}}" class="text">
|
|
<text class="idea">{{journal.idea}}</text>
|
|
<view
|
|
wx:if="{{journal.location}}"
|
|
class="location"
|
|
bind:tap="openLocation"
|
|
data-journal-index="{{journalIndex}}"
|
|
>📍 {{journal.location}}</view>
|
|
</view>
|
|
<view wx:if="{{journal.items}}" class="items">
|
|
<block wx:for="{{journal.items}}" wx:for-item="item" wx:for-index="itemIndex" wx:key="date">
|
|
<image
|
|
class="item thumbnail {{item.type === 0 ? 'image' : 'video'}}"
|
|
src="{{item.thumbUrl}}"
|
|
mode="widthFix"
|
|
bindtap="preview"
|
|
data-item-index="{{itemIndex}}"
|
|
data-journal-index="{{journalIndex}}"
|
|
></image>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{isFinished}}" class="start">已回到最初的起点</view>
|
|
</t-indexes> |