uniapp-vue3-wechat:基于uniapp+vue3仿微信app聊天实例(H5+小程序+App端)

uni-vue3-wchat:基于uni-app+vue3+pinia2高仿微信app聊天模板。

原创基于最新跨端技术uni-app+vue3.x+pinia2+vite4+uv-ui构建三端仿微信app界面聊天实例。实现编辑框多行消息/emoj混合、长按触摸式仿微信语音面板、图片/视频预览、红包/朋友圈等功能。支持编译到H5+小程序端+App端

在这里插入图片描述
整个项目采用vue3 setup语法编码,支持编译到h5+小程序端+APP端。

在这里插入图片描述

使用技术

  • 编辑器:HbuilderX 4.0.8
  • 框架技术:Uniapp+Vue3+Pinia2+Vite4.x
  • 组件库:uni-ui+uv-ui
  • 弹窗组件:uv3-popup(uniapp+vue3多端自定义弹框组件)
  • 导航栏+菜单栏:uv3-navbar+uv3-tabbar组件
  • 本地缓存:pinia-plugin-unistorage
  • 编译支持:H5+小程序+APP端

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
uniapp+vue3实现类似微信朋友圈功能。

在这里插入图片描述

项目结构

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

入口main.js配置

/*** 入口文件 main.js
*/import { createSSRApp } from 'vue'
import App from './App'// 引入pinia状态管理
import pinia from '@/pinia'export function createApp() {const app = createSSRApp(App)app.use(pinia)return {app,pinia}
}

在这里插入图片描述

App.vue配置

采用 vue3 setup 语法开发。

<script setup>import { provide } from 'vue'import { onLaunch, onShow, onHide, onPageNotFound } from '@dcloudio/uni-app'onLaunch(() => {console.log('App Launch')uni.hideTabBar()loadSystemInfo()})onShow(() => {console.log('App Show')})onHide(() => {console.log('App Hide')})onPageNotFound((e) => {console.warn('Route Error:', `${e.path}`)})// 获取系统设备信息const loadSystemInfo = () => {uni.getSystemInfo({success: (e) => {// 获取手机状态栏高度let statusBar = e.statusBarHeightlet customBar// #ifndef MPcustomBar = statusBar + (e.platform == 'android' ? 50 : 45)// #endif// #ifdef MP-WEIXIN// 获取胶囊按钮的布局位置信息let menu = wx.getMenuButtonBoundingClientRect()// 导航栏高度 = 胶囊下距离 + 胶囊上距离 - 状态栏高度customBar = menu.bottom + menu.top - statusBar// #endif// #ifdef MP-ALIPAYcustomBar = statusBar + e.titleBarHeight// #endif// 由于globalData在vue3 setup存在兼容性问题,改为provide/inject替代方案provide('globalData', {statusBarH: statusBar,customBarH: customBar,screenWidth: e.screenWidth,screenHeight: e.screenHeight,platform: e.platform})}})}
</script><style>/* #ifndef APP-NVUE */@import 'static/fonts/iconfont.css';/* #endif */
</style>
<style lang="scss">@import 'styles/reset.scss';@import 'styles/layout.scss';
</style>

在这里插入图片描述

uniapp+vue3自定义navbar+tabbar组件

在这里插入图片描述
在这里插入图片描述

<uv3-navbar :back="true" title="标题内容" bgcolor="#07c160" color="#fff" fixed zIndex="1010" /><uv3-navbar custom bgcolor="linear-gradient(to right, #07c160, #0000ff)" color="#fff" center transparent zIndex="2024"><template #back><uni-icons type="close" /></template><template #backText><text>首页</text></template><template #title><image src="/static/logo.jpg" style="height:20px;width:20px;" /> Admin</template><template #right><view class="ml-20" @click="handleAdd"><text class="iconfont icon-tianjia"></text></view><view class="ml-20"><text class="iconfont icon-msg"></text></view></template>
</uv3-navbar>

公共布局模板

整体项目结构采用顶部导航区域+主体内容区+底部区域

在这里插入图片描述
在这里插入图片描述

<!-- 公共布局模板 --><!-- #ifdef MP-WEIXIN -->
<script>export default {/*** 解决小程序class、id透传问题* manifest.json中配置mergeVirtualHostAttributes: true, 在微信小程序平台不生效,组件外部传入的class没有挂到组件根节点上,在组件中增加options: { virtualHost: true }* https://github.com/dcloudio/uni-ui/issues/753*/options: { virtualHost: true }}
</script>
<!-- #endif --><script setup>const props = defineProps({// 是否显示自定义tabbarshowTabBar: { type: [Boolean, String], default: false },})
</script><template><view class="uv3__container flexbox flex-col flex1"><!-- 顶部插槽 --><slot name="header" /><!-- 内容区 --><view class="uv3__scrollview flex1"><slot /></view><!-- 底部插槽 --><slot name="footer" /><!-- tabbar栏 --><uv3-tabbar v-if="showTabBar" hideTabBar fixed /></view>
</template>

uni-app+vue3微信九宫格图像组

在这里插入图片描述
在这里插入图片描述

<script setup>import { onMounted, ref, computed, watch, getCurrentInstance } from 'vue'const props = defineProps({// 图像组avatar: { type: Array, default: null },})const instance = getCurrentInstance()const uuid = computed(() => Math.floor(Math.random() * 10000))const avatarPainterId = ref('canvasid' + uuid.value)const createAvatar = () => {const ctx = uni.createCanvasContext(avatarPainterId.value, instance)// 计算图像在画布上的坐标const avatarSize = 12const gap = 2for(let i = 0, len = props.avatar.length; i < len; i++) {const row = Math.floor(i / 3)const col = i % 3const x = col * (avatarSize + gap)const y = row * (avatarSize + gap)ctx.drawImage(props.avatar[i], x, y, avatarSize, avatarSize)}ctx.draw(false, () => {// 输出临时图片/* uni.canvasToTempFilePath({canvasId: avatarPainterId.value,success: (res) => {console.log(res.tempFilePath)}}) */})}onMounted(() => {createAvatar()})watch(() => props.avatar, () => {createAvatar()})
</script><template><template v-if="avatar.length > 1"><view class="uv3__avatarPainter"><canvas :canvas-id="avatarPainterId" class="uv3__avatarPainter-canvas"></canvas></view></template><template v-else><image class="uv3__avatarOne" :src="avatar[0]" /></template>
</template><style lang="scss" scoped>.uv3__avatarPainter {background-color: #eee; border-radius: 5px; overflow: hidden; padding: 2px; height: 44px; width: 44px;}.uv3__avatarPainter-canvas {height: 100%; width: 100%;}.uv3__avatarOne {border-radius: 5px; height: 44px; width: 44px;}
</style>

uni-app+vue3自定义弹出框组件

在这里插入图片描述
在这里插入图片描述

v-model        当前组件是否显示
title          标题(支持富文本div标签、自定义插槽内容)
content        内容(支持富文本div标签、自定义插槽内容)
type           弹窗类型(toast | footer | actionsheet | actionsheetPicker | android/ios)
customStyle    自定义弹窗样式
icon           toast图标(loading | success | fail | warn | info)
shade          是否显示遮罩层
shadeClose     是否点击遮罩时关闭弹窗
opacity        遮罩层透明度
round          是否显示圆角
xclose         是否显示关闭图标
xposition      关闭图标位置(left | right | top | bottom)
xcolor         关闭图标颜色
anim           弹窗动画(scaleIn | fadeIn | footer | fadeInUp | fadeInDown)
position       弹出位置(top | right | bottom | left)
follow         长按/右键弹窗(坐标点)
time           弹窗自动关闭秒数(123)
zIndex         弹窗层叠(默认202107)
btns           弹窗按钮(参数:text|style|disabled|click)
------------------------------------------
## slot [插槽]
<template #title></template>
<template #content></template>
------------------------------------------
## emit
open        打开弹出层时触发(@open="xxx")
close       关闭弹出层时触发(@close="xxx"

uv3-popup支持函数式+组件式两种调用方式。

<script setup>import { onMounted, ref, computed, watch, nextTick, getCurrentInstance } from 'vue'const props = defineProps({...})const emit = defineEmits(['update:modelValue','open','close'])const instance = getCurrentInstance()const opts = ref({...props})const visible = ref(false)const closeAnim = ref(false)const stopTimer = ref(null)const oIndex = ref(props.zIndex)const uuid = computed(() => Math.floor(Math.random() * 10000))const positionStyle = ref({ position: 'absolute', left: '-999px', top: '-999px' })const toastIcon = {...}// 打开弹框const open = (options) => {if(visible.value) returnopts.value = Object.assign({}, props, options)// console.log('-=-=混入参数:', opts.value)visible.value = true// nvue 的各组件在安卓端默认是透明的,如果不设置background-color,可能会导致出现重影的问题// #ifdef APP-NVUEif(opts.value.customStyle && !opts.value.customStyle['background'] && !opts.value.customStyle['background-color']) {opts.value.customStyle['background'] = '#fff'}// #endiflet _index = ++indexoIndex.value = _index + parseInt(opts.value.zIndex)emit('open')typeof opts.value.onOpen === 'function' && opts.value.onOpen()// 长按处理if(opts.value.follow) {nextTick(() => {let winW = uni.getSystemInfoSync().windowWidthlet winH = uni.getSystemInfoSync().windowHeight// console.log('坐标点信息:', opts.value.follow)getDom(uuid.value).then(res => {// console.log('Dom尺寸信息:', res)if(!res) returnlet pos = getPos(opts.value.follow[0], opts.value.follow[1], res.width+15, res.height+15, winW, winH)positionStyle.value.left = pos[0] + 'px'positionStyle.value.top = pos[1] + 'px'})})}if(opts.value.time) {if(stopTimer.value) clearTimeout(stopTimer.value)stopTimer.value = setTimeout(() => {close()}, parseInt(opts.value.time) * 1000)}}// 关闭弹框const close = () => {if(!visible.value) returncloseAnim.value = truesetTimeout(() => {visible.value = falsecloseAnim.value = falseemit('update:modelValue', false)emit('close')typeof opts.value.onClose === 'function' && opts.value.onClose()positionStyle.value.left = '-999px'positionStyle.value.top = '-999px'stopTimer.value && clearTimeout(stopTimer.value)}, 200)}// 点击遮罩层const handleShadeClick = () => {if(JSON.parse(opts.value.shadeClose)) {close()}}// 按钮事件const handleBtnClick = (e, index) => {let btn = opts.value.btns[index]if(!btn?.disabled) {console.log('按钮事件类型:', typeof btn.click)typeof btn.click === 'function' && btn.click(e)}}// 获取dom宽高const getDom = (id) => {return new Promise((resolve, inject) => {// uniapp vue3中 uni.createSelectorQuery().in(this) 会报错__route__未定义  https://ask.dcloud.net.cn/question/140192uni.createSelectorQuery().in(instance).select('#uapopup-' + id).fields({size: true,}, data => {resolve(data)}).exec()})}// 自适应坐标点const getPos = (x, y, ow, oh, winW, winH) => {let l = (x + ow) > winW ? x - ow : xlet t = (y + oh) > winH ? y - oh : yreturn [l, t]}onMounted(() => {if(props.modelValue) {open()}})watch(() => props.modelValue, (val) => {// console.log(val)if(val) {open()}else {close()}})defineExpose({open,close})
</script>

uni-app+vue3聊天功能

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
目前该插件已经免费发布到插件市场,欢迎去下载使用。
在这里插入图片描述
https://ext.dcloud.net.cn/plugin?id=13275

在这里插入图片描述

<!-- 语音操作面板 -->
<view v-if="voicePanelEnable" class="uv3__voicepanel-popup"><view class="uv3__voicepanel-body flexbox flex-col"><!-- 取消发送+语音转文字 --><view v-if="!voiceToTransfer" class="uv3__voicepanel-transfer"><!-- 提示动效 --><view class="animtips flexbox" :class="voiceType == 2 ? 'left' : voiceType == 3 ? 'right' : null"><Waves :lines="[2, 3].includes(voiceType) ? 10 : 20" /></view><!-- 操作项 --><view class="icobtns flexbox"><view class="vbtn cancel flexbox flex-col" :class="{'hover': voiceType == 2}" @click="handleVoiceCancel"><text class="vicon uv3-icon uv3-icon-close"></text></view><view class="vbtn word flexbox flex-col" :class="{'hover': voiceType == 3}"><text class="vicon uv3-icon uv3-icon-word"></text></view></view></view><!-- 语音转文字(识别结果状态) --><view v-if="voiceToTransfer" class="uv3__voicepanel-transfer result fail"><!-- 提示动效 --><view class="animtips flexbox"><uni-icons type="info-filled" color="#fff" size="20"></uni-icons><text class="c-fff">未识别到文字</text></view><!-- 操作项 --><view class="icobtns flexbox"><view class="vbtn cancel flexbox flex-col" @click="handleVoiceCancel"><text class="vicon uv3-icon uv3-icon-chexiao"></text>取消</view><view class="vbtn word flexbox flex-col"><text class="vicon uv3-icon uv3-icon-audio"></text>发送原语音</view><view class="vbtn check flexbox flex-col"><text class="vicon uv3-icon uv3-icon-duigou"></text></view></view></view><!-- 背景语音图 --><view class="uv3__voicepanel-cover"><image v-if="!voiceToTransfer" src="/static/voice_bg.webp" :webp="true" mode="widthFix" style="width: 100%;" /></view><!-- // 提示文字(操作状态) --><view v-if="!voiceToTransfer" class="uv3__voicepanel-tooltip">{{voiceTypeMap[voiceType]}}</view><!-- 背景小图标 --><view v-if="!voiceToTransfer" class="uv3__voicepanel-fixico"><text class="uv3-icon uv3-icon-audio fs-50"></text></view></view>
</view>

目前该项目已经同步到工房,如果有需要,欢迎自行去拍哈~

https://gf.bilibili.com/item/detail/1105801011

好了,综上就是uniapp+vue3跨端聊天实例的一些分享,希望大家能喜欢!

最后附上几个最新实战项目

  • flutter3-winchat基于flutter3.x+bitsdojo_window桌面端仿微信
    https://blog.csdn.net/yanxinyun1990/article/details/136410049

  • flutter3_douyin基于flutter3.19仿抖音短视频/直播
    https://blog.csdn.net/yanxinyun1990/article/details/136996521

  • flutter3_macos基于flutter3.x+window_manager桌面端仿macOS系统
    https://blog.csdn.net/yanxinyun1990/article/details/137697164

在这里插入图片描述

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

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

相关文章

数据结构与算法-抽象数据类型ADT系列

以前在学习数据结构的时候做实验&#xff0c;老师要求用ADT抽象数据类型来写这些实现代码。后面也要复习数据结构&#xff0c;在这里就先放下链接。不过以前学习的时候使用的编程语言是C&#xff0c;里面会用到很多指针。现在编代码过程大多数时候都是用Java。不过思路应该还是…

keytool,openssl的使用

写在前面 在生成公钥私钥&#xff0c;配置https时经常需要用到keytool&#xff0c;openssl工具&#xff0c;本文就一起看下其是如何使用的。 keytool是jdk自带的工具&#xff0c;不需要额外下载&#xff0c;但openssl需要额外下载 。 1&#xff1a;使用keytool生成jks私钥文件…

WEB攻防-IIS中间件PUT漏洞

IIS6.0 server在web服务扩展中开启了WebDAV&#xff08;Web-based Distributed Authoring and Versioning&#xff09;。WebDAV是一种HTTP1.1的扩展协议。它扩展了HTTP 1.1&#xff0c;在GET、POST、HEAD等几个HTTP标准方法以外添加了一些新的方法&#xff0c;如PUT&#xff0c…

自动驾驶横向控制算法

本文内容来源是B站——忠厚老实的老王&#xff0c;侵删。 三个坐标系和一些有关的物理量 使用 frenet坐标系可以实现将车辆纵向控制和横向控制解耦&#xff0c;将其分开控制。使用右手系来进行学习。 一些有关物理量的基本概念&#xff1a; 运动学方程 建立微分方程 主要是弄…

Linux进程——进程的概念(PCB的理解)

前言&#xff1a;在了解完冯诺依曼体系结构和操作系统之后&#xff0c;我们进入了Linux的下一篇章Linux进程&#xff0c;但在学习Linux进程之前&#xff0c;一定要阅读理解上一篇内容&#xff0c;理解“先描述&#xff0c;再组织”才能更好的理解进程的含义。 Linux进程学习基…

Hadoop3:集群搭建及常用命令与shell脚本整理(入门篇,从零开始搭建)

一、集群环境说明 1、用VMware安装3台Centos7.9虚拟机 2、虚拟机配置&#xff1a;2C&#xff0c;2G内存&#xff0c;50G存储 3、集群架构 从表格中&#xff0c;可以看出&#xff0c;Hadoop集群&#xff0c;主要有2部分&#xff0c;一个是HDFS服务&#xff0c;一个是YARN服务 …

记一次内网渗透

环境搭建&#xff1a; 排错&#xff1a; 在搭建过程中发现报错&#xff0c;删除这部分内容就成功解决。 信息收集 端口扫描 使用namp -sn 探测存活IP 接着去查看服务 web服务 然后发现80端口。访问 发现有管理员接口&#xff0c;并泄露了默认用户名和密码。 弱口令登录 …

vue中配置 测试、准生产、生产环境

在package.json,scripts中配置 "dev": "vue-cli-service serve --open --mode dev",在项目根目录下配置 新建 .env.dev 和.env.development文件 //类似于title NODE_ENV "serve" //各环境API数据接口请求地址 VUE_APP_BASE_API "http:…

软件测试笔记_习题_面经

软件测试------按测试阶段划分有几个阶段? 单元测试、集成测试、系统测试、验收测试 软件测试------按是否查看源代码划分有几种测试方法? 黑盒、白盒、灰盒 软件测试------按是否运行划分有几种测试方法? 静态测试、动态测试 软件测试------按是否自动化划分有几种测试方…

在远程服务器上安装anaconda以及配置pytorch虚拟环境

目录 第一步&#xff1a;官网或者清华源下载Anaconda。 第二步&#xff1a;创建虚拟环境。 第三步&#xff1a;在服务器终端输入nvidia-smi查看服务器信息。 第四步&#xff1a;在pytorch官网找到对应版本cuda的命令。 第一步&#xff1a;官网或者清华源下载Anaconda。 官网…

智慧安防边缘计算硬件AI智能分析网关V4算法启停的操作步骤

TSINGSEE青犀视频智能分析网关V4内置了近40种AI算法模型&#xff0c;支持对接入的视频图像进行人、车、物、行为等实时检测分析&#xff0c;上报识别结果&#xff0c;并能进行语音告警播放。硬件管理平台支持RTSP、GB28181协议、以及厂家私有协议接入&#xff0c;可兼容市面上常…

02 - 步骤 Kafka consumer

简介 Kafka consumer 步骤&#xff0c;用于连接和消费 Apache Kafka 中的数据,它可以作为数据管道的一部分&#xff0c;将 Kafka 中的数据提取到 Kettle 中进行进一步处理、转换和加载&#xff0c;或者将其直接传输到目标系统中。 使用 场景 我需要订阅一个Kafka的数据&…

MyBatis(环境配置+基本CRUD)

文章目录 1.基本介绍1.为什么需要MyBatis&#xff1f;2.MyBatis介绍3.MyBatis工作示意图4.MyBatis的优势 2.快速入门文件目录1.需求分析2.数据库表设计3.父子模块环境配置1.创建maven父项目2.删除父项目的src目录3.pom.xml文件文件解释 4.创建子模块1.新建一个Module2.创建一个…

MySQL Binlog 闪回与分析

文章目录 前言1. 修改 event 实现闪回1.1 binlog 结构1.2 闪回案例1.3 方法总结 2. 解析文本闪回2.1 mysqlbinlog2.2 闪回案例2.3 方法总结 3. 在线订阅闪回3.1 mysql-replication3.2 binlog2sql3.3 方法总结 4. Binlog 分析方法4.1 分析场景4.2 辅助定位事务4.3 方法总结 5. 平…

【C/C++笔试练习】OSI分层模型、源端口和目的端口、网段地址、SNMP、状态码、tcp报文、域名解析、HTTP协议、计算机网络、美国节日、分解因数

文章目录 C/C笔试练习选择部分&#xff08;1&#xff09;OSI分层模型&#xff08;2&#xff09;源端口和目的端口&#xff08;3&#xff09;网段地址&#xff08;4&#xff09;SNMP&#xff08;5&#xff09;状态码&#xff08;6&#xff09;tcp报文&#xff08;7&#xff09;域…

美国站群服务器上常见的操作系统选择指南

美国站群服务器上常见的操作系统选择指南 美国站群服务器的选择操作系统对于服务器的性能和功能至关重要。本文将为您介绍在美国站群服务器上常见的操作系统选择指南&#xff0c;以帮助您做出明智的决策。 在选择美国站群服务器时&#xff0c;选择合适的操作系统是至关重要的…

鸿蒙OpenHarmony【标准系统 烧录】(基于RK3568开发板)

烧录 烧录是指将编译后的程序文件下载到芯片开发板上的动作&#xff0c;为后续的程序调试提供基础。DevEco Device Tool提供一键烧录功能&#xff0c;操作简单&#xff0c;能快捷、高效的完成程序烧录&#xff0c;提升烧录的效率。 RK3568的镜像烧录通过Windows环境进行烧录&…

pytorch库 01 安装Anaconda、Jupyter,Anaconda虚拟环境连接pycharm

文章目录 一、安装Anaconda1、卸载Anaconda&#xff08;可选&#xff09;2、下载并安装Anaconda3、配置环境变量4、桌面快捷方式 二、安装 PyTorch&#xff08;GPU 版&#xff09;库1、创建虚拟环境&#xff0c;并安装一些常用包2、GPU 基础3、检查驱动4、安装CUDA&#xff08;…

Spring Boot | Spring Security ( SpringBoot安全管理 )、Spring Security中 的 “自定义用户认证“

目录 : Spring Boot 安全管理 &#xff1a;一、Spring Security 介绍二、Spring Security 快速入门2.1 基础环境搭建 :① 创建Spring Boot 项目② 创建 html资源文件③ 编写Web控制层 2.2 开启安全管理效果测试 :④ 添加 spring-boot-starter-security 启动器⑤ 项目启动测试 三…

YOLOv5模型使用云服务器autoDL训练

本篇内容讲述如何租用autoDL云服务器&#xff0c;以及使用vscode的ssh远程连接服务器和文件上传方法 目录 一、进入autoDL二、VSCode连接三、文件上传 一、进入autoDL 地址&#xff1a;https://www.autodl.com/home 第一步&#xff1a;进入autoDL地址后&#xff0c;首先进行…