uni-app 4.6开发聊天列表组件

Posted 2019ab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uni-app 4.6开发聊天列表组件相关的知识,希望对你有一定的参考价值。

index.nvue 页面内容

<template>
	<view class="">
		<free-nav-bar :title="'微信(100)'" :fixed='true'>
			<template v-slot="title"></template>
		</free-nav-bar>
		
		<!-- 列表 -->
		<block v-for="(item,index) in list" :key="index">
			<view class="flex align-center">
				<view class="flex align-center justify-center" style="width: 145rpx;">
					<image :src="item.avatar" mode="widthFix" style="width: 92rpx;height: 92rpx;" class="rounded"></image>
				</view>
				<view class="flex flex-column border-bottom flex-1 py-3 pr-3 border-light-secondary">
					<view class="flex align-center justify-between mb-1">
						<text class="font-md">{{item.nickname}}</text>
						<text class="font-sm text-light-muted">{{item.update_time|formateTime}}</text>
					</view>
					<text class="font text-ellipsis text-light-muted">{{item.data}}</text>
				</view>
			</view>
		</block>
	</view>
</template>

<script>
	import freeNavBar from '@/components/free-ui/free-nav-bar.vue';
	import $Time from "@/common/free-lib/time.js";
	export default {
		components: {
			freeNavBar
		},
		data() {
			return {
				list:[
					{
						avatar:"/static/images/demo/demo6.jpg",
						nickname:"昵称",
						update_time:1628069958,
						data:"你好啊,哈哈哈"
					},
					{
						avatar:"/static/images/demo/demo6.jpg",
						nickname:"昵称",
						update_time:1628069958,
						data:"你好啊,哈哈哈"
					},
					{
						avatar:"/static/images/demo/demo6.jpg",
						nickname:"昵称",
						update_time:1628069958,
						data:"你好啊,哈哈哈"
					},
					{
						avatar:"/static/images/demo/demo6.jpg",
						nickname:"昵称",
						update_time:1628069958,
						data:"你好啊,哈哈哈"
					}
				]
			}
		},
		filters:{
			formateTime(value){
				return $Time.gettime(value);
			}
		},
		onLoad() {
			
		},
		methods: {

		}
	}
</script>

<style>

</style>

这是做好的样式

其中有一个格式化时间的js文件,接下来我会专门用一篇文章来叙述。今天就到这里了,谢谢观看

以上是关于uni-app 4.6开发聊天列表组件的主要内容,如果未能解决你的问题,请参考以下文章

uni-app 4.10封装聊天列表组件

uni-app全栈仿微信开源项目系列

uni-app 使用腾讯云im开发app聊天室

uni-app开发一个小视频应用(二)

uni-app 75聊天类封装-更新会话列表

uni-app 76聊天类封装-更新会话列表