
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
15 lines
711 B
Plaintext
15 lines
711 B
Plaintext
<view class="container">
|
|
<scroll-view class="topic-list" scroll-y="true" scroll-top="{{scrollTop}}">
|
|
<navigator class="item" wx:for="{{topicList}}" wx:key="id" url="../topicDetail/topicDetail?id={{item.id}}">
|
|
<image class="img" src="{{item.picUrl}}"></image>
|
|
<view class="info">
|
|
<text class="title">{{item.title}}</text>
|
|
<text class="desc">{{item.subtitle}}</text>
|
|
</view>
|
|
</navigator>
|
|
<view class="page" wx:if="{{showPage}}">
|
|
<view class="prev {{ page <= 1 ? 'disabled' : ''}}" bindtap="prevPage">上一页</view>
|
|
<view class="next {{ (count / size) < page ? 'disabled' : ''}}" bindtap="nextPage">下一页</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view> |