fireflysg-wxapp/pages/my/achievement.wxml

38 lines
1.3 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--pages/my/jiu.wxml-->
<!-- <view class="list-wrap">
<view class="list-item" wx:for="{{listInfo}}" wx:key="index">
<view class="list-title">{{item.titleName}}</view>
<view class="list-con flex-row">
<view class="list-img">
<image src="{{item.photo}}"></image>
</view>
<view class="list-intro">
{{item.intro}}
</view>
</view>
</view>
</view> -->
<view class="jifen-list">
<view class="flex-row jf-list" wx:for="{{listInfo}}" wx:key="index" bindtap="detail" data-item="{{item}}">
<view class="flex-col">
<view class="flex-row">
<view>
<image src="{{item.photo}}" class="icon-tt"></image>
</view>
<view class="flex-col" style="margin-left:15rpx">
<view class="day-sign">{{item.titleName}}
{{item.currCount}}/{{item.taskCount}}
<image src="../../images/group.png" class="grpup"></image>
<text>+{{item.points}}</text></view>
<view class="group-con">
{{item.intro}}
</view>
</view>
</view>
</view>
<!-- <view>
<button class="sign-btn" wx:if="{{item.currCount<item.taskCount}}" data-category="{{item.categoryId}}" data-achv="{{item.achvTitleId}}" bindtap="Mtask">去完成</button>
</view> -->
</view>
</view>
<empty wx:if="{{listInfo.length===0}}" />