user_comment.vue 622 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="goods-comment-list">
  3. <tabs :current="active" :is-scroll="false" @change="changeActive">
  4. <tab name="待评价">
  5. <comment-list type="1" :i="0" :index="active"></comment-list>
  6. </tab>
  7. <tab name="已评价">
  8. <comment-list type="2" :i="1" :index="active"></comment-list>
  9. </tab>
  10. </tabs>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. active: -1
  18. };
  19. },
  20. onLoad() {
  21. this.type = this.$Route.query.type || 0;
  22. this.active = parseInt(this.type)
  23. },
  24. methods: {
  25. changeActive(e) {
  26. this.active = e
  27. }
  28. }
  29. };
  30. </script>
  31. <style>
  32. </style>