榆山
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
731 B

<view class="page">
<view class="toptabs">
<wux-tabs controlled scroll current="{{ key }}" bindchange="onTabsChange">
<wux-tab key="tab1" title="随手记"></wux-tab>
<wux-tab key="tab2" title="周报告"></wux-tab>
<wux-tab key="tab3" title="月总结"></wux-tab>
</wux-tabs>
</view>
</view>
<view class="swiper-item-con">
<block wx:if="{{dailyRecordList.length > 0}}">
<view wx:key="index" wx:for-index="index" wx:for="{{dailyRecordList}}">
<list-item contentObj="{{item}}" key="{{key}}"></list-item>
</view>
</block>
<block wx:else>
<no-data isShow="{{isShow}}"></no-data>
</block>
</view>
<load-more loadType="{{loadType}}" loadVisible="{{loadVisible}}">
</load-more>