uinapp 写好的聊天基础页面,拿来就用非常方便

<template><view class="chat"><!-- <u-navbar :title="name" :placeholder='true' @leftClick="goback"></u-navbar> --><!-- 顶部标题 --><view class="topTabbar"><!-- 返回图标 --><u-icon class="icon" name="arrow-left" size="20px" color="#000" @click="goback()"></u-icon><!-- 标题 --><view class="text">匿名</view></view><view @tap="toDetail()" v-if='goodsInfo' class="goods_info"><view class="goods_title"><img class="goods_img" alt="" :src='goodsInfo.images'><view><view>{{goodsInfo.title}}</view><view class="price">¥{{goodsInfo.price}}</view><view style="font-size: 15px">{{goodsInfo.freight_money}}</view></view></view><view @tap.stop="toPublishFish(goodsInfo.id)" class="buy">立即购买</view></view><scroll-view :style="{height: `${windowHeight-inputHeight - j_weight}rpx`}" id="scrollview" scroll-y="true":scroll-top="scrollTop" @scrolltoupper="onScroll" class="scroll-view"><!-- 聊天主体 --><view id="msglistview" class="chat-body"><!-- 聊天记录 --><view v-for="(item,index) in chatList" :key="index"><!-- 右侧消息 --><view v-if='item.send_user_id==userId'><view class="chat_time" v-if='item.isShowTime'>{{item.createtime}}</view><view class="item self"><!-- 文字内容 --><view v-if='item.msg_type==1' class="content right">{{item.content}}</view><view v-if='item.msg_type==2' class="chat_img"><img class="chat_img_1" @click="previewImg(item.content)" :src="item.content"></view><!-- 头像 --><view><image class="avatar" :src="item.send_avatar"></image><view class="chat_time">{{item.is_read_text}}</view></view></view></view><!-- 左侧消息 --><view v-else><view class="chat_time"  v-if='item.isShowTime' >{{item.createtime}}</view><view class="item Ai"><!-- 头像 --><view><image class="avatar" :src="item.send_avatar"></image><!-- <view class="chat_time">{{item.createtime}}</view> --></view><!-- 文字内容 --><view v-if='item.msg_type==1' class="content left">{{item.content}}</view><view v-if='item.msg_type==2' class="chat_img"><img class="chat_img_1" @click="previewImg(item.content)" :src="item.content"></view></view></view></view></view></scroll-view><!-- 底部消息发送栏 --><!-- 用来占位,防止聊天消息被发送框遮挡 --><view class="chat-bottom" :style="{height: `${inputHeight}rpx`}"><view class="send-msg" :style="{bottom:`${keyboardHeight - 60}rpx`}"><view class="uni-textarea"><textarea v-model="chatMsg" maxlength="300" confirm-type="send" @confirm="handleSend"placeholder="快来咨询吧~" :show-confirm-bar="false" :adjust-position="false" auto-height></textarea></view><button @click="handleSend" class="send-btn">发送</button><view class="send-btn" style="background: #fff;"><u-icon @click="editShow=true" size="30" name="plus-circle"></u-icon></view></view></view><!-- //扩展应用功能位置 --><view v-if="editShow" style="position: fixed;bottom: 0;width: 100%;padding-left: 3%;display: flex;background: #fff;padding-top: 8px;justify-content: space-between;align-items: center;padding-bottom: 18px;"><view style="padding: 12px;display: flex;" class="tabs-wrap"><view class="tabs-item" style="text-align: center" @click="sendFile('choose','')"><view style="display: flex;justify-content: center;background: #efefef;    padding: 15px;border-radius: 20px;"><u-icon size="36" name="photo-fill"></u-icon></view><view style="font-size: 14px;">图片</view></view><view class="tabs-item" style="text-align: center;margin-left: 10px;" @click="sendFile('shoot','')"><view style="display: flex;justify-content: center;background: #efefef;    padding: 15px;border-radius: 20px;"><u-icon size="36" name="photo-fill"></u-icon></view><view style="font-size: 14px;">拍摄</view></view></view><view @click="editShow=false" style="position: absolute;top: 12px;right: 16px"><u-icon name="close-circle" size="30"></u-icon></view></view></view>
</template>
<script>export default {data() {return {editShow: false,//键盘高度keyboardHeight: 0,//底部消息发送高度bottomHeight: 0,//滚动距离scrollTop: 0,chatList: [],sessionId: '', //会话iduserId: uni.getStorageSync('userinfo').id,goodsInfo: '',page: 1,meet_user_id: 0,msg_type: 1,//发送的消息chatMsg: "",name: '匿名用户',is_top: true, //是否可以再次请求分页数据is_update: true, //是否做刷新固定底部j_weight: 300,}},updated() {//页面更新时调用聊天消息定位到最底部if (this.is_update) {this.scrollToBottom();}},computed: {windowHeight() {return this.rpxTopx(uni.getSystemInfoSync().windowHeight)},// 键盘弹起来的高度+发送框高度inputHeight() {return this.bottomHeight + this.keyboardHeight}},onLoad(options) {uni.onKeyboardHeightChange(res => {this.keyboardHeight = this.rpxTopx(res.height)if (this.keyboardHeight < 0) this.keyboardHeight = 0;})if (options.sid) {this.sessionId = options.sidthis.getChatList()}//从商品页进来if (options.info) {this.j_weight = 460;var objStr = decodeURIComponent(options.info);var obj = JSON.parse(objStr);switch (obj.freight_status) {case 2:obj.freight_money = '包邮'break;case 3:obj.freight_money = '自提'break;default:obj.freight_money = '运费 ' + obj.freight_moneybreak;}this.goodsInfo = objthis.getAddChat()}this.OnGetMessage()this.scrollToBottom();},onUnload() {// uni.offKeyboardHeightChange()// 移除监听事件uni.$off('getChatList');uni.$off('getChatSend');uni.$off('getAddChat');},methods: {//查看商品详情toDetail() {//跳商品详情},//点击购买toPublishFish(id) {//点击购买},//建立聊天室getAddChat() {let that = this;var data = {"send_user_id": that.userId,//当前登录人id"user_id": that.meet_user_id,//接收人id"msg_type": 1,"content": "","method": "add_chat"}//创建聊天室that.$ws.send(JSON.stringify(data));},//拉取聊天室最新列表getChatList() {let that = this;let page = that.pagelet data = {"user_id": that.userId,//当前登录人id'chat_id': that.sessionId,//聊天室id'page': that.page,"method": "chat_list",}//请求消息列表that.$ws.send(JSON.stringify(data));},//触顶加载聊天消息onScroll(e) {var that = thisif (that.is_top) {that.page++;that.is_update = falsethat.getChatList()}},//放大图片previewImg(imgurl) {uni.previewImage({current: imgurl,urls: [imgurl]});},goback() {//返回上一页},focus() {this.scrollToBottom()},blur() {this.scrollToBottom()},// px转换成rpxrpxTopx(px) {let deviceWidth = uni.getSystemInfoSync().windowWidthlet rpx = (750 / deviceWidth) * Number(px)return Math.floor(rpx)},// 监视聊天发送栏高度sendHeight() {setTimeout(() => {let query = uni.createSelectorQuery();query.select('.send-msg').boundingClientRect()query.exec(res => {this.bottomHeight = this.rpxTopx(res[0].height)})}, 10)},// 滚动至聊天底部scrollToBottom(e) {setTimeout(() => {let query = uni.createSelectorQuery().in(this);query.select('#scrollview').boundingClientRect();query.select('#msglistview').boundingClientRect();query.exec((res) => {if (res[1].height > res[0].height) {this.scrollTop = this.rpxTopx(res[1].height - res[0].height)}})}, 15)},// 发送消息handleSend() {let that = this;that.is_update = true//如果消息不为空if (!this.chatMsg || !/^\s+$/.test(this.chatMsg)) {//聊天内容var chatMsg = that.chatMsgif (chatMsg.trim() == '') {return uni.showToast({title: '请输入聊天内容',icon: 'error'})}let data = {'send_user_id': that.userId,'user_id': that.meet_user_id,'chat_id': that.sessionId,'msg_type': that.msg_type,'content': chatMsg,"method": "send",}//发送聊天内容that.$ws.send(JSON.stringify(data));that.chatMsg = '';that.scrollToBottom()} else {uni.showToast({title: '不能发送空白消息哦'})}},//监听接收消息OnGetMessage() {var that = thisuni.showLoading()uni.$on('getChatList', data => {if (that.page == 1) {that.chatList = data} else {if (data.length > 0) {data.forEach(function(item, index) {that.chatList.unshift(item);});} else {that.is_top = false}}uni.hideLoading()})uni.$on('getChatSend', data => {that.chatList.push(data)uni.hideLoading()})uni.$on('getAddChat', data => {that.sessionId = datathat.getChatList()uni.hideLoading()})},//发送文件sendFile(type, data) {var that = this;if (type == "choose") {uni.chooseMedia({count: 1,mediaType: ['image'],sourceType: ['album'],maxDuration: 30,success(res) {let type = 'img';if (res.tempFiles[0].fileType == 'image') {type = 'img'} else {type = 'video'}that.uploadFile(res.tempFiles[0].tempFilePath, type)}})} else if (type == "shoot") {uni.chooseMedia({count: 1,mediaType: ['image'],sourceType: ['camera'],maxDuration: 30,success(res) {let type = 'img';if (res.tempFiles[0].fileType == 'image') {type = 'img'} else {type = 'video'}that.uploadFile(res.tempFiles[0].tempFilePath, type)}})}},uploadFile(path, type) {var that = this;uni.uploadFile({url: ‘’图片上传地址’ // 仅为示例,非真实的接口地址filePath: path,name: 'file',formData: {},header: {token: uni.getStorageSync('token')},success: (res) => {let data = JSON.parse(res.data);that.handleSendImg(data.data.url)}});},// 发送图片消息handleSendImg(urlImg) {let that = this;that.is_update = true//聊天内容var chatMsg = urlImglet data = {'send_user_id': that.userId,'user_id': that.meet_user_id,'chat_id': that.sessionId,'msg_type': 2,'content': chatMsg,"method": "send",}//发送聊天内容that.$ws.send(JSON.stringify(data));that.editShow = falsethat.scrollToBottom()},},}
</script>
<style lang="scss" scoped>$chatContentbgc: #C2DCFF;$sendBtnbgc: #4F7DF5;view,button,text,input,textarea {margin: 0;padding: 0;box-sizing: border-box;}/* 聊天消息 */.chat {.topTabbar {width: 100%;height: 90rpx;line-height: 90rpx;display: flex;margin-top: 80rpx;justify-content: space-between;.icon {margin-left: 20rpx;}.text {margin: auto;font-size: 16px;font-weight: 700;}.button {width: 10%;margin: auto 20rpx auto 0rpx;}}.scroll-view {::-webkit-scrollbar {display: none;width: 0 !important;height: 0 !important;-webkit-appearance: none;background: transparent;color: transparent;}// background-color: orange;background-color: #F6F6F6;.chat-body {display: flex;flex-direction: column;padding-top: 23rpx;// background-color:skyblue;.self {justify-content: flex-end;}.item {display: flex;padding: 23rpx 30rpx;// background-color: greenyellow;.right {background-color: $chatContentbgc;}.left {background-color: #FFFFFF;}// 聊天消息的三角形.right::after {position: absolute;display: inline-block;content: '';width: 0;height: 0;left: 100%;top: 10px;border: 12rpx solid transparent;border-left: 12rpx solid $chatContentbgc;}.left::after {position: absolute;display: inline-block;content: '';width: 0;height: 0;top: 10px;right: 100%;border: 12rpx solid transparent;border-right: 12rpx solid #FFFFFF;}.content {position: relative;max-width: 486rpx;border-radius: 8rpx;word-wrap: break-word;padding: 24rpx 24rpx;margin: 0 24rpx;border-radius: 5px;font-size: 32rpx;font-family: PingFang SC;font-weight: 500;color: #333333;line-height: 42rpx;}.avatar {display: flex;justify-content: center;width: 78rpx;height: 78rpx;background: $sendBtnbgc;border-radius: 50rpx;overflow: hidden;image {align-self: center;}}}}}/* 底部聊天发送栏 */.chat-bottom {width: 100%;height: 100rpx;background: #F4F5F7;transition: all 0.1s ease;.send-msg {display: flex;align-items: flex-end;padding: 16rpx 30rpx;width: 100%;min-height: 177rpx;position: fixed;bottom: 0;background: #fff;transition: all 0.1s ease;}.uni-textarea {padding-bottom: 70rpx;textarea {width: 450rpx;min-height: 75rpx;max-height: 500rpx;background: #f1f1f1;border-radius: 40rpx;font-size: 32rpx;font-family: PingFang SC;color: #333333;line-height: 74rpx;padding: 5rpx 8rpx;text-indent: 30rpx;}}.send-btn {display: flex;align-items: center;justify-content: center;margin-bottom: 76rpx;margin-left: 25rpx;width: 120rpx;height: 75rpx;background: #ed5a65;border-radius: 15rpx;font-size: 28rpx;font-family: PingFang SC;font-weight: 500;color: #FFFFFF;line-height: 28rpx;}}}.chat_time {font-size: 20rpx;text-align: center;color: darkgray;}.chat_img {display: flex;align-items: center;margin: 8px 16px 8px 8px;max-width: 150px;}.chat_img_1 {border-radius: 12px;max-height: 150px;}//商品弹窗.goods_info {background: #ffffff;border-bottom: 1px solid #efefef;padding: 10px;align-items: flex-end;display: flex;justify-content: space-between}.buy {background: #ff592a;border-radius: 15px;padding: 6px 12px;color: #fff;font-size: 14px;height: 30px;}.price {color: red;font-weight: 600;font-size: 14px}.goods_title {display: flex;align-items: center;}.goods_img {width: 55px;height: 55px;border-radius: 8px;margin-right: 8px;}
</style>

感谢这位大佬的分享,使用他的基础增加了些内容上去

感谢这位大佬,uiapp最基础的封装聊天代码

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/16740.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux 中的进程优先级管理

在 Linux 系统中&#xff0c;理解和管理进程优先级是维护系统性能的关键因素。本文将详细介绍进程优先级&#xff08;priority&#xff09;的基本概念、如何查看和调整进程优先级&#xff0c;以及 nice 值对优先级的影响。 基本概念 在多任务操作系统中&#xff0c;CPU 资源的…

Power BI 使用Filter()函数完成类似子查询的筛选

1. 假如我们有两张表&#xff0c;如下图&#xff0c;以及它们的关联方式&#xff1a; tb_bursary.student_id tb_student.id 2. 我们想要实现这个逻辑&#xff0c;先找出tb_student里&#xff0c;sno最大的学生id&#xff0c;再根据查找出的学生id&#xff0c;找到tb_bursary…

TS 进阶类型

联合类型 | 当 TS 不确定一个联合类型的变量到底是哪个类型的时候,可以定义多种类型&#xff0c;例如&#xff0c;一个变量既支持 number 类型&#xff0c;又支持 string 类型. let num: 类型1 | 类型2 | 类型3 .... 初始值 let num:number | string 1 // 可以写多个类型 /…

C++笔试强训day34

目录 1.ISBN号码 2.kotori和迷宫 3.矩阵最长递增路径 1.ISBN号码 链接https://www.nowcoder.com/practice/95712f695f27434b9703394c98b78ee5?tpId290&tqId39864&ru/exam/oj 提取题意&#xff0c;模拟一下即可。 #include <iostream> using namespace std; …

学习笔记:C语言的32个关键字

一、标准C语言的32个关键字 1、基本数据类型&#xff1a; signed unsigned char int float double short long void 2、构造数据类型&#xff1a; struct union enum 3、数据存储类别&#xff1a; auto static extern register 4、数据优化&#xff1a; const volatile 5、9条…

Java(其十二)--集合·初级

ArrayList集合 集合有很多种&#xff0c;ArrayList 是最常用的一种&#xff0c;集合的作用相当于C中的STL 最显著的特点就是&#xff1a;自动扩容。 一般定义式 ArrayList list new ArrayList(); //该 list 是可以储存各种类型的数据的&#xff0c;要想约束储存的数据&#x…

买车是小米su7还是model3?这个AI在我这里“干掉了”百万车评人

作者 | 曾响铃 文 | 响铃说 43天交付1万辆新车&#xff01;雷军的微博一发&#xff0c;又把小米汽车推上了热搜。 自小米su7问世以来&#xff0c;天天刷屏。说不心动&#xff0c;那是假的&#xff0c;身边好几个朋友都按捺不住要下订一台了。 但真要买&#xff0c;还是忍不住…

[回溯法]子集和数问题

没有任何优化&#xff0c;纯深搜做法&#xff1a; #include<iostream> #include<vector> using namespace std;const int N 100010; int nums[N],selected[N]; int n,M,sum; bool ansfalse;void Out() {for (int i 0; i < n - 1; i)printf("%d", …

Gateway+Oauth2授权码登录

在Oauth服务中配置 @Override protected void configure(HttpSecurity http) throws Exception {http.csrf().disable().formLogin().permitAll().and()//主要配置好.formLogin().authorizeRequests().requestMatchers(EndpointRequest.toAnyEndpoint()).permitAll().antMatche…

强大的医院绩效考核管理系统源码,支持行业内所有绩效方案,且每步核算都可自主进行方案的新建、调整。

医院绩效考核管理系统是采用B/S架构模式设计、使用JAVA语言开发、后台使用MySql数据库进行管理的一整套计算机应用软件源码。 系统和his系统进行对接&#xff0c;按照设定周期&#xff0c;从his系统获取医院科室和医生、护士、其他人员工作量&#xff0c;对没有录入信息化系统…

YOLOv10:全面的效率-准确性驱动模型设计

YOLOv10&#xff1a;全面的效率-准确性驱动模型设计 提出背景精细拆分解法双重标签分配一致的匹配度量以效率为导向的模型设计 YOLO v10 总结1. 双重标签分配策略2. 一致匹配度量策略 论文&#xff1a;https://arxiv.org/pdf/2405.14458 代码&#xff1a;https://github.com/T…

今日选题。

诱导读者点开文章的9引真经&#xff08;一&#xff09; 标题重要么&#xff1f;新媒体、博客文通常在手机上阅读。首先所有的内容不同于纸媒&#xff0c;手机只展现标题&#xff0c;而内容都是折叠。其次读者能像看内容一样看4、5条或者7、8条标题&#xff08;区别于不同的主流…

微信小程序实现计算当前位置到目的地的距离

实现方式&#xff1a;使用腾讯位置服务 微信小程序JavaScript SDK | 腾讯位置服务 1.进腾讯位置服务申请key 2.下载sdk 微信小程序JavaScript SDK | 腾讯位置服务 3.微信公众平台添加授权域名 4.代码实现计算 const qqmap require("../../utils/qqmap-wx-jssdk.min.js…

一键部署Ollama和粘土模型?快来看看吧!

厚德云新上两款AI软件&#xff01;无需部署一键生成&#xff01; 前言 上新Ollama与粘土模型 就在5月23日&#xff0c;厚德云官方上新了Ollama开源大语言模型与粘土画风模型。它们都可以在平台上实施一键部署&#xff0c;那么这两款AI应用究竟有什么样的魅力呢&#xff1f;我们…

Agent 如何更有用

先看这篇会更连贯 Agent的记忆能力 学习来源 LLM的基础能力 1、复杂任务的规划和分解 2、遵循复杂指令 3、自主使用工具 4、减少幻觉 一两个人就能开发的有用AI AI的优势&#xff1a;长文本的阅读理解能力、广阔的知识面。 1、导游&#xff1a;GPT-4知道很多著名景点&…

2024年4k激光投影仪购买指南:618推荐家用4K激光投影当贝X5 Pro

2024年的618已经悄然开始热度也在持续攀升&#xff0c;每年的大促节点是投影仪优惠力度最大的时候&#xff0c;很多消费者都会选择在这个时候去购买心仪的投影仪&#xff0c;想要投影放在客厅使用替代电视机的&#xff0c;一般都会去选择4K激光投影&#xff0c;如何挑选一款极具…

推荐3款好用的AI智能写作工具

AI智能写作如今已经很成熟了&#xff0c;不仅有很多AI综合大模型可以实现AI写作&#xff0c;还有很多专门针对AI写作场景专门研发的垂直领域工具。 如果你在工作学习中也想提高写作效率&#xff0c;不妨试试下面3个国内可直接登录使用的AI写作工具&#xff0c;其中不乏有简单易…

CentOS7 部署单机版 ElasticSearch + Logstash + Kibana

一、部署ElasticSearh 参考下面文章&#xff1a; CentOS7 部署单机版 ElasticSearch Logstash-CSDN博客文章浏览阅读83次&#xff0c;点赞2次&#xff0c;收藏2次。通过logstash收集信息&#xff0c;发送给elasticsearch处理。https://blog.csdn.net/weixin_44295677/articl…

linux下使用doxygen和grapviz生成函数调用关系图

1&#xff0c;参考链接 https://jasoncc.github.io/doc_tools/doxygen.html 2&#xff0c;操作流程 以ubuntu为例&#xff0c;执行如下命令来生成doxygen $ sudo apt-get install doxygen $ sudo apt-get install graphviz $ mkdir /tmp/doxygen && cd /tmp/doxygen…

详解PHP弱类型安全问题

弱类型的语言对变量的数据类型没有限制&#xff0c;你可以在任何地时候将变量赋值给任意的其他类型的变量&#xff0c;同时变量也可以转换成任意地其他类型的数据。这时候在类型转化、不同类型比较、不合理地传参&#xff0c;会造成意外执行结果和绕过防御。 一. 类型转换 …