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.
18 lines
872 B
18 lines
872 B
<view class="handle-progress">
|
|
<view class="title">处理进展</view>
|
|
<view class="progress-content">
|
|
<view class="progress-list" style="height: {{ handleProgressList.length > 3 ? loadMoreStatus == 'more' ? '500rpx' : 'auto' : 'auto'}}; padding-bottom: {{handleProgressList.length > 3 ? '50rpx' : '0'}}">
|
|
<handle-progress-item
|
|
wx:for="{{handleProgressList}}"
|
|
wx:for-item="item"
|
|
wx:for-index="index"
|
|
wx:key="{{item.id}}"
|
|
handleProgressItemObj="{{item}}">
|
|
</handle-progress-item>
|
|
</view>
|
|
<view class="up-or-down" bindtap="changeMoreOrLess" wx:if="{{handleProgressList.length > 3}}">
|
|
<view class="tip">{{loadMoreStatus == 'more' ? '更多' : '收起'}}</view>
|
|
<image class="sword {{loadMoreStatus == 'more' ? 'more' : 'less'}}" src="../../../../images/down.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|