vueweb端聊天(Vue实现聊天界面)
类别:编程学习 浏览量:444
时间:2021-10-22 07:57:51 vueweb端聊天
Vue实现聊天界面本文实例为大家分享了Vue实现聊天界面展示的具体代码,供大家参考,具体内容如下
1.功能需求
根据索引选择跟不同的人进行聊天
2.代码展示
mock.js:
import Mock from 'mockjs' Mock.mock("/chatchild",{ 'result':[ { id:"001", imgurl:"/static/image/10.jpg" alt="vueweb端聊天(Vue实现聊天界面)" border="0" />
userinfo.js:
let usermsg={ id:"122", imgurl:"/static/image/8.jpg" alt="vueweb端聊天(Vue实现聊天界面)" border="0" />
index.js:
import Vue from 'vue' import Router from 'vue-router' import Chat from '../components/Chat.vue' import ChatDetail from '../components/Pages/ChatDetail.vue' Vue.use(Router) export default new Router({ routes: [ { path: '/Chat ', component: Chat }, { path:'/ChatDetail', component:ChatDetail } ] }) // 解决路由报错的代码 const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err) }
Chat.vue:
<template> <li id="chat"> <Bottom /> <Header :name="msg" /> <li class="chat_alluser"> <li ref="chatuser" @click="checkChild(index)" class="chatuser" v-for="(item,index) in chat" :key="index"> <ChatChild :imgsrc="item.imgurl" :nickname="item.name" :time="item.date" :word="item.words" /> </li> </li> </li> </template> <script> import Bottom from "../components/Menu/Bottom"; import Header from "../components/Menu/Header"; import ChatChild from "../components/Pages/ChatChild"; export default { name: "Chat", components: { Bottom: Bottom, Header: Header, ChatChild: ChatChild }, data() { return { msg: "微信", chat: null, name: null }; }, mounted() { this.$axios.get("/chatchild").then(res => { this.chat = res.data.result; }); }, methods: { checkChild(index) { this.$refs.chatuser[index].style.backgroundColor = "rgb(240,240,240)"; // 动态dom元素渲染完成之后,跳转到另一个界面(ChatDetail) // 获取动态name let username = this.chat[index].name; this.$nextTick(() => { this.$router.push({ path: "/ChatDetail", query: { name: username } }); }); } } }; </script> <style lang="scss" scope> #chat { width: 100%; .chat_alluser { margin-bottom: 7.5rem; .chatuser { position: relative; top: 3.5rem; padding: 0.3rem 0; } } } </style>
父组件使用子组件里的属性和方法:
在父组件中的子组件上定义ref属性,通过 this.$ refs.name.属性或this.$refs.name.方法
ChatChild.vue:
<template> <li id="chatchild"> <li class="photo"> <img :src="imgsrc" alt /> </li> <li class="content"> <li> <span class="content_nickname">{{nickname}}</span> <span class="content_time">{{time}}</span> </li> <span class="content_word">{{word}}</span> </li> </li> </template> <script> export default { name: "ChatChild", props:{ 'imgsrc':String, 'nickname':String, 'time':String, 'word':String } }; </script> <style lang="scss" scope> #chatchild { width: 100%; height: 5rem; display: flex; flex-direction: row; box-sizing: border-box; .photo { flex: 1; height: 5rem; img{ object-fit: cover; width: 4rem; height: 4rem; border-radius: 5px; display: block; margin: 0 auto; margin-top: 0.5rem; margin-left: 1rem; } } .content { flex: 4; height: 5rem; border-bottom: 0.5px solid rgb(240, 240, 240); padding-left: 0.5rem; padding-top: 0.5rem; box-sizing: border-box; li{ .content_nickname{ display: inline-block; font-size: 1.1rem; margin-top: 0.3rem; } .content_time{ float: right; margin-right: 1rem; color: rgb(209, 206, 206); font-size: 0.8rem; } } .content_word{ color: rgb(209, 206, 206); font-size: 0.8rem; display: block; margin-top: 0.5rem; } } } </style>
ChatDetail.vue:
<template> <li id="chatdetail"> <li class="chattop"> <li @click="goback" class="chattop_back"> <icon-svg icon-class="houtui_shangyibu_zuojiantou_shangyiye" /> </li> <li class="chattop_name">{{name}}</li> <li class="chattop_more"> <icon-svg icon-class="gengduo" /> </li> </li> <li class="chatcontent"> <ChatMsg ref="chatmsg" /> </li> <li class="chatfooter"> <li @click="changeSound"> <icon-svg :icon-class="issound" /> </li> <li> <input ref="sendcontent" @keypress="sendmsg" :type="istype" :value="isvalue" /> </li> <li> <icon-svg icon-class="biaoqing" /> </li> <li> <icon-svg icon-class="del" /> </li> </li> </li> </template> <script> import ChatMsg from "./ChatMsg"; export default { name: "ChatDetail", data() { return { name: null, issound: "xiaoxitongzhi", istype: "text", isvalue: "", isshow: false, tomsg: "", msgchild: null }; }, components: { ChatMsg: ChatMsg }, mounted() { this.name = this.$route.query.name; this.msgchild = this.$refs.chatmsg; }, methods: { // 进行返回操作 goback() { this.$router.go(-1); }, // 切换input的类型 changeSound() { // 在data中定义一个变量isshow:false,利用this.isshow与!this.isshow进行切换 if (!this.isshow) { this.isshow = true; this.issound = "yuyin"; this.istype = "button"; this.isvalue = "按住 说话"; } else { this.isshow = false; this.issound = "xiaoxitongzhi"; this.istype = "text"; this.isvalue = ""; } }, // 发送消息 sendmsg(e) { // 1、用ref定义输入回复内容的input文本框,定义sendcontent变量接收其value值(输入的内容) let sendcontent = this.$refs.sendcontent.value; if (e.keyCode === 13 && sendcontent.split(" ").join("").length !== 0) { // 2、将ChatDetail(父)组件中的sendcontent(文本框输入的值)先用tomsg接收 this.tomsg = sendcontent; // 3、用ref定义ChatMsg(子)组件,并在mounted中使用$refs获取,即this.msgchild // 4、调子组件里的方法,并将tomsg传到ChatMsg(子)组件(具体的聊天内容)中 this.msgchild.saveMsg(this.tomsg); // 5、发送完一条信息之后,需清空文本框 this.$refs.sendcontent.value = ""; // 回车时,调用子组件的随机消息的方法 this.msgchild.randomMsg(); } } } }; </script> <style lang="scss" scope> #chatdetail { position: relative; background-color: rgb(238, 212, 238); .chattop { position: fixed; top: 0; left: 0; z-index: 10; width: 100%; height: 3.5rem; line-height: 3.5rem; background-color: rgb(240, 240, 240) !important; display: flex; flex-direction: row; .chattop_back { flex: 1; margin-left: 1rem; } .chattop_name { flex: 20; text-align: center; } .chattop_more { flex: 1; margin-right: 1rem; } } .chatcontent { width: 100%; height: 100%; } .chatfooter { position: fixed; left: 0; bottom: 0; z-index: 10; width: 100%; height: 3.5rem; line-height: 3.5rem; text-align: center; background-color: rgb(240, 240, 240) !important; display: flex; flex-direction: row; li:nth-child(1), li:nth-child(3), li:nth-child(4) { flex: 1; svg { font-size: 1.5rem; margin-top: 0.9rem; } } li:nth-child(2) { flex: 5; input { width: 100%; height: 2.5rem; outline: none; padding-left: 0.5rem; box-sizing: border-box; height: 2.5rem; margin-top: 0.5rem; border-style: none; font-size: 0.9rem; border-radius: 4px; background-color: #fff; color: #000; } } } } </style>
ChatMsg.vue:
<template> <li id="chatmsg" ref="msg"> <!-- 动态创建 --> <li v-for="(item,index) in lists" :key="index"> <li v-if="item.id==122" class="user"> <li v-scroll> <img :src="item.face" alt /> <li class="bubble"> <span>{{item.word}}</span> </li> </li> </li> <li v-if="item.id==1529" class="touser"> <li v-scroll> <img :src="item.face" alt /> <li class="tobubble"> <span>{{item.word}}</span> </li> </li> </li> </li> </li> </template> <script> import userinfo from "./userinfo"; export default { name: "ChatMsg", data() { return { userimg: "", lists: [] }; }, mounted() { this.userid = userinfo.id; this.userimg = userinfo.imgurl; }, // vue自动滚动到底部 directives: { scroll: { inserted(el) { el.scrollIntoView(); } } }, methods: { saveMsg(tomsg) { this.lists.push({ id: this.userid, face: this.userimg, word: tomsg }); }, randomMsg() { let touserdata = userinfo.data; this.lists.push({ id: touserdata.id, face: touserdata.imgurl, word: touserdata.words[Math.floor(Math.random() * touserdata.words.length)] .info }); } } }; </script> <style lang="scss" scope> #chatmsg { position: relative; top: 3.5rem; width: 100%; min-height: 44rem; background-color: rgb(238, 212, 238); margin-bottom: 3.5rem; overflow-x: hidden; overflow-y: auto; .user { position: relative; width: 100%; overflow: hidden; margin: 0.8rem 0; img { object-fit: cover; width: 3rem; height: 3rem; border-radius: 3px; float: right; margin-right: 1rem; } .bubble { position: relative; float: right; margin-right: 1rem; padding: 0.8rem; box-sizing: border-box; border-radius: 3px; max-width: 65%; background-color: rgb(116, 228, 116); span { height: 1.25rem; line-height: 1.25rem; } } .bubble::after { position: absolute; right: -1.3rem; top: 0.8rem; content: ""; width: 0; height: 0; border: 0.7rem solid; border-color: transparent transparent transparent rgb(116, 228, 116); } } .touser { position: relative; width: 100%; overflow: hidden; margin: 0.8rem 0; img { object-fit: cover; width: 3rem; height: 3rem; border-radius: 3px; float: left; margin-left: 1rem; } .tobubble { position: relative; float: left; margin-left: 1rem; padding: 0 0.7rem; box-sizing: border-box; border-radius: 3px; max-width: 65%; background-color: rgb(116, 228, 116); line-height: 3rem; } .tobubble::after { position: absolute; left: -1.3rem; top: 0.8rem; content: ""; width: 0; height: 0; border: 0.7rem solid; border-color: transparent rgb(116, 228, 116) transparent transparent; } } } </style>
3.目录结构
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
您可能感兴趣
- vue中router的具体用法(vue-router中hash模式与history模式的区别)
- vue中的指令及用法(详解Vue进阶构造属性)
- vuex原理及使用方法(Vuex状态机的快速了解与实例应用)
- vue 如何执行动态js(如何利用vue.js实现拖放功能)
- vue实现列表向上滚动更新(vue实现列表无缝滚动)
- vue自定义组件定义事件(基于Vue实现自定义组件的方式引入图标)
- vue项目上线教程(vue项目中使用骨架屏的方法)
- vue实现展开动画(Vue组件实现旋转木马动画)
- vue-websocket 组件教程(Vue+express+Socket实现聊天功能)
- vue手动清除keepalive缓存(vue中keep-alive组件的用法示例)
- vue中什么时候需要set属性(Vue.set和this.$set使用和区别)
- vue常用的指令和修饰符(Vue中 Vue.prototype使用详解)
- vue函数中的默认参数(Vue3中SetUp函数的参数props、context详解)
- vue引用js库报错(Vue插件报错:Vue.js is detected on this page.问题解决)
- vue 组件布局(Vue实现固定底部组件的示例)
- vuevlog制作软件(Vue实现Dialog封装)
- 中华第一楷 张瑞龄 86岁高龄,苦练楷书71年,一幅字卖593万(中华第一楷张瑞龄)
- 冯骥才 年意(冯骥才年意)
- ()
- 百事大吉蓝底 绿底手机高清壁纸(绿底手机高清壁纸)
- 蓝底证件照怎么制作 证件照换底色 换尺寸快速搞定(蓝底证件照怎么制作)
- 你喜欢足球吗 足球如何点亮世界的(足球如何点亮世界的)
热门推荐
- nodejs的广播机制(node.js如何自定义实现一个EventEmitter)
- mysql读写分离怎么做(MySQL读写分离,写完读不到问题如何解决)
- nginx查看请求协议(Nginx之Http模块系列之autoindex模块的具体使用)
- sqlserver查看创建的索引(浅述SQL Server的聚焦强制索引查询条件和Columnstore Index)
- js获取子表单所有数据(JavaScript实现异步提交表单数据)
- sqlserver常用数据结构图(Sql Server数据库常用Transact-SQL脚本推荐)
- css3伸缩布局及图解(利用CSS3实现自定义滚动条代码分享)
- Mysql官方性能测试工具mysqlslap的使用简介(Mysql官方性能测试工具mysqlslap的使用简介)
- vuephp后台开发框架(Vue+thinkphp5.1+axios实现文件上传)
- 如何使用sqlserver建立数据表(SqlServer编写数据库表的操作方式建库、建表、修改语句)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9