vue——47-评论的公共路由模板组件 放入 路由组件

1.评论的公共路由模板组件

comments.vue

<template>
  <div class="cmt-container">
    <h3>发表评论</h3>
    <hr>
    <textarea placeholder="请输入评论内容(最多120字)" maxlength="120"></textarea>

    <mt-button type="primary" size="large">发表评论</mt-button>

    <div class="cmt-list">
      <div class="cmt-item" v-for="(item, i) in comments" :key="item.add_time">
        <div class="cmt-title">
          第{{ i+1 }}楼&nbsp;&nbsp;用户:{{ item.user_name }}&nbsp;&nbsp;发表时间:{{ item.add_time | dateFormat }}
        </div>
        <div class="cmt-body">
          {{ item.content === 'undefined' ? '此用户什么都没说': item.content }}
        </div>
      </div>

    </div>

    <mt-button type="danger" size="large" plain @click="getMore">加载更多</mt-button>
  </div>
</template>

script

<script>
    import {Toast} from "mint-ui";

    export default {
        data() {
            return {
                pageIndex: 1, // 默认展示第一页数据
                comments: [], // 所有的评论数据
                msg: "" // 评论输入的内容
            };
        },
        created() {
            this.getComments();
        },
        methods: {
            getComments() {
                // 获取评论
                this.$http
                    .get("api/getcomments/" + this.id + "?pageindex=" + this.pageIndex)
                    .then(result => {
                        if (result.body.status === 0) {
                            // this.comments = result.body.message;
                            // 每当获取新评论数据的时候,不要把老数据清空覆盖,而是应该以老数据,拼接上新数据
                            this.comments = this.comments.concat(result.body.message);
                        } else {
                            Toast("获取评论失败!");
                        }
                    });
            },
            getMore() {
                // 加载更多
                this.pageIndex++;
                this.getComments();
            },
            postComment() {
                // 校验是否为空内容
                if (this.msg.trim().length === 0) {
                    return Toast("评论内容不能为空!");
                }

                // 发表评论
                // 参数1: 请求的URL地址
                // 参数2: 提交给服务器的数据对象 { content: this.msg }
                // 参数3: 定义提交时候,表单中数据的格式  { emulateJSON:true }
                this.$http
                    .post("api/postcomment/" + this.$route.params.id, {
                        content: this.msg.trim()
                    })
                    .then(function (result) {
                        if (result.body.status === 0) {
                            // 1. 拼接出一个评论对象
                            var cmt = {
                                user_name: "匿名用户",
                                add_time: Date.now(),
                                content: this.msg.trim()
                            };
                            this.comments.unshift(cmt);
                            this.msg = "";
                        }
                    });
            }
        },
        props: ["id"]
    };
</script>

scss

<style lang="scss" scoped>
.cmt-container {
  h3 {
    font-size: 18px;
  }
  textarea {
    font-size: 14px;
    height: 85px;
    margin: 0;
  }

  .cmt-list {
    margin: 5px 0;
    .cmt-item {
      font-size: 13px;
      .cmt-title {
        line-height: 30px;
        background-color: #ccc;
      }
      .cmt-body {
        line-height: 35px;
        text-indent: 2em;
      }
    }
  }
}
</style>

2.路由组件

template

<template>
  <div>
	<!-- 放置评论组件 -->
    <comment-box></comment-box>
  </div>
</template>

script

	<script>
	// 导入评论子组件
    import comment from '../subcomponents/comments.vue';
    export default {
        components: {
            // 用来注册子组件的节点
            'comment-box': comment
        }
    }
    </script>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值