123456789101112131415161718192021222324252627282930 |
- <template>
- <app-layout>
- <view v-if="goodsId">
- <app-comments show-type="all" :goods-id="goodsId" :reach-bottom="onReachBottom"></app-comments>
- </view>
- </app-layout>
- </template>
- <script>
- import appComments from '../../components/page-component/app-comments/app-comments.vue';
- export default {
- name: "comments",
- components: {
- 'app-comments': appComments,
- },
- data() {
- return {
- goodsId: null,
- onReachBottom: 0
- };
- },
- onLoad(options) {
- this.goodsId = options.goods_id;
- },
- onReachBottom() {
- this.onReachBottom = Math.random();
- }
- }
- </script>
|