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>
相关推荐
我不吃饼干2 小时前
在 React 中实现倒计时功能会有什么坑
前端·react.js
小小小小宇2 小时前
前端PerformanceObserver
前端
王者鳜錸2 小时前
PYTHON从入门到实践-18Django从零开始构建Web应用
前端·python·sqlite
拾光拾趣录2 小时前
ES6到HTTPS全链路连环拷问,99%人第3题就翻车?
前端·面试
haaaaaaarry3 小时前
Element Plus常见基础组件(二)
开发语言·前端·javascript
Hello_Embed3 小时前
嵌入式 C 语言入门:循环结构学习笔记 —— 从语法到实用技巧
c语言·笔记·stm32·学习
xyphf_和派孔明3 小时前
关于echarts的性能优化考虑
前端·性能优化·echarts
PyHaVolask4 小时前
HTML 表单进阶:用户体验优化与实战应用
前端·javascript·html·用户体验
A了LONE4 小时前
cv弹窗,退款确认弹窗
java·服务器·前端
AntBlack4 小时前
闲谈 :AI 生成视频哪家强 ,掘友们有没有推荐的工具?
前端·后端·aigc