
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
20 lines
603 B
Plaintext
20 lines
603 B
Plaintext
<view class="container">
|
|
|
|
<view class="common-problem">
|
|
<view class="item" wx:for="{{issueList}}" wx:key="id">
|
|
<view class="question-box">
|
|
<text class="spot"></text>
|
|
<text class="question">{{item.question}}</text>
|
|
</view>
|
|
<view class="answer">
|
|
{{item.answer}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="page" wx:if="{{showPage}}">
|
|
<view class="prev {{ page <= 1 ? 'disabled' : ''}}" bindtap="prevPage">上一页</view>
|
|
<view class="next {{ (count / limit) < page ? 'disabled' : ''}}" bindtap="nextPage">下一页</view>
|
|
</view>
|
|
|
|
</view> |