38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
<!--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}}" /> |