uniapp笔记-自定义分类组件

思路

uniapp就是基于vue的开发,构造自定义组件就和vue的自定义一样。如下例子。

例子

在pages/index/components下建立category.vue组件,如下图所示:

javascript 复制代码
<template>
	<view class="category-top">
		分类组件
	</view>
</template>

<script>
</script>

<style>
	.category-top{
		margin-top: 100rpx;
	}
</style>

在index.vue中进行注册,完整代码如下:

javascript 复制代码
<template>
	<view class="index-box">
		<bannerVue></bannerVue>
		<categoryBox></categoryBox>
	</view>
</template>

<script>
	import bannerVue from '../../components/common/banner.vue'
	import categoryBox from './components/category.vue'
	export default {
		components: {bannerVue, categoryBox},
		data() {
			return {
				title: 'Hello'
			}
		},
		onLoad() {

		},
		methods: {

		}
	}
</script>

运行效果如下:

下面完善下category.vue相关的代码。

javascript 复制代码
<template>
	<view class="category-top">
		<view class="category-box">
			<view v-for="(item, index) in categoryList" :key="index">
				 {{item.name}}
			</view>
		</view>
	</view>
</template>

<script>
	export default{
		props:{
			categoryList: {
				type: Array,
				default: () => [
					{
						id: 1,
						name: 'java'
					},
					{
						id: 2,
						name: 'C++'
					},
					{
						id: 3,
						name: 'PHP'
					},
					{
						id: 4,
						name: 'Python'
					},
					{
						id: 5,
						name: 'JavaScript'
					}
				]
			}
		}
	}
</script>

<style>
	.category-top{
		margin-top: 100rpx;
	}
</style>

运行截图如下:

下面美化,设置一些css。

完整代码如下:

javascript 复制代码
<template>
	<view class="category-top">
		<view class="category-box">
			<view v-for="(item, index) in categoryList" :key="index">
				 {{item.name}}
			</view>
		</view>
	</view>
</template>

<script>
	export default{
		props:{
			categoryList: {
				type: Array,
				default: () => [
					{
						id: 1,
						name: 'java'
					},
					{
						id: 2,
						name: 'C++'
					},
					{
						id: 3,
						name: 'PHP'
					},
					{
						id: 4,
						name: 'Python'
					},
					{
						id: 5,
						name: 'JavaScript'
					},
					{
						id: 6,
						name: 'HTML'
					},
					{
						id: 7,
						name: 'Web'
					},
					{
						id: 8,
						name: 'ALL'
					}
				]
			}
		}
	}
</script>

<style lang="scss">
	.category-top{
		margin-top: 50rpx;
	}
	.category-box{
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		padding: 20rpx 30rpx 0 30rpx;
		>view{
			width: 160rpx;
			height: 70rpx;
			background: #C0C0C0;
			text-align: center;
			line-height: 70rpx;
			font-size: 26rpx;
			border-radius: 20rpx;
			overflow: hidden;
			margin-top: 15rpx;
		}
	}
</style>

运行截图如下:

再次调整,只需要一行分类,categoryList.slice(0, 4)

完整代码如下:

javascript 复制代码
<template>
	<view class="category-top">
		<view class="category-box">
			<view v-for="(item, index) in categoryList.slice(0, 4)" :key="index">
				 {{item.name}}
			</view>
		</view>
	</view>
</template>

<script>
	export default{
		props:{
			categoryList: {
				type: Array,
				default: () => [
					{
						id: 1,
						name: 'java'
					},
					{
						id: 2,
						name: 'C++'
					},
					{
						id: 3,
						name: 'PHP'
					},
					{
						id: 4,
						name: 'Python'
					},
					{
						id: 5,
						name: 'JavaScript'
					},
					{
						id: 6,
						name: 'HTML'
					},
					{
						id: 7,
						name: 'Web'
					},
					{
						id: 8,
						name: 'ALL'
					}
				]
			}
		}
	}
</script>

<style lang="scss">
	.category-top{
		margin-top: 50rpx;
	}
	.category-box{
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		padding: 20rpx 30rpx 0 30rpx;
		>view{
			width: 160rpx;
			height: 70rpx;
			background: #C0C0C0;
			text-align: center;
			line-height: 70rpx;
			font-size: 26rpx;
			border-radius: 20rpx;
			overflow: hidden;
			margin-top: 15rpx;
		}
	}
</style>
相关推荐
一涯4 分钟前
页面出现空白区域
前端
CHB24 分钟前
uni-ai:让你的App快速接入AI
uni-app·deepseek
spmcor29 分钟前
MinIO本地对象存储部署指南
前端
少年纪33 分钟前
前端用 pdf.js 将 PDF 渲染到 Canvas 再转图片,文字消失的坑
前端
RoyLin34 分钟前
TypeScript设计模式:复合模式
前端·后端·typescript
我是天龙_绍37 分钟前
CSS/JS/图片全挂了,部署后页面白屏/资源加载失败?这两个配置项坑了多少人!
前端
我的小月月38 分钟前
SQLFE:网页版数据库(VUE3+Node.js)
前端·后端
小高00739 分钟前
🌐ES6 这 8 个隐藏外挂,知道 3 个算我输!
前端·javascript·面试
汤姆Tom39 分钟前
Node.js 版本管理、NPM 命令、与 NVM 完全指南
前端·npm·node.js
Alan5215941 分钟前
Java 后端实现基于 JWT 的用户认证和权限校验(含代码讲解)
前端·后端