faq.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!-- 常见问题 -->
  2. <template>
  3. <view class="faq-box u-p-30">
  4. <u-collapse event-type="close" :arrow="true" :accordion="true" arrowColor="#333" :headStyle="headStyle" :itemStyle="itemStyle">
  5. <u-collapse-item :title="index + 1 + '、' + item.title" v-for="(item, index) in faqList" :key="index">{{ item.content }}</u-collapse-item>
  6. </u-collapse>
  7. <!-- 更多 -->
  8. <u-loadmore v-if="faqList.length" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. components: {},
  14. data() {
  15. return {
  16. headStyle: {
  17. color: '#a8700d'
  18. },
  19. itemStyle: {
  20. borderBottom: '1rpx solid #eee',
  21. padding: '20rpx 0'
  22. },
  23. faqList: [],
  24. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  25. currentPage: 1,
  26. lastPage: 1
  27. };
  28. },
  29. computed: {},
  30. onLoad() {
  31. this.getFaqList();
  32. // 触底监听
  33. uni.$on('uOnReachBottom', () => {
  34. if (this.currentPage < this.lastPage) {
  35. this.currentPage += 1;
  36. this.getFaqList();
  37. }
  38. });
  39. },
  40. methods: {
  41. // 常见问题列表、
  42. getFaqList() {
  43. let that = this;
  44. that.loadStatus = 'loading';
  45. that.$http('other.faqList', {
  46. page: that.currentPage
  47. }).then(res => {
  48. if (res.code === 1) {
  49. that.faqList = [...that.faqList, ...res.data.data];
  50. that.lastPage = res.data.last_page;
  51. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  52. }
  53. });
  54. }
  55. }
  56. };
  57. </script>
  58. <style lang="scss">
  59. .faq-box{
  60. background-color: #fff;
  61. }
  62. </style>