小程序实现分类页
微信(小程序)  /  管理员 发布于 4年前   414
分类界页面中,左边是一级目录,右边是一级目录对应的二级目录,根据这个需求,我们数据设计的结构是数组嵌套数组,第一个数组包含一级目录数据,嵌套的数组包含的是二级目录的数据。
主要知识:
1.定义本地json文件
2.本地文件引入
3.小程序列表渲染实现
4.解析本地json
定义本地的json数据源
该文件在page下面的data文件下面的categroryData.js中
//模拟json数据 var categoryJson=[ { id: 'guowei', name: '果味', isChild: true, children: [ { child_id: 1, name: "果味" } ] }, { id: 'shucai', name: '蔬菜', isChild: true, children: [ { child_id: 1, name: "蔬菜" } ] }, { id: 'chaohuo', name: '炒货', isChild: true, children: [ { child_id: 1, name: "炒货" } ] }, { id: 'dianxin', name: '点心', isChild: true, children: [ { child_id: 1, name: "点心" } ] }, { id: 'ganguo', name: '干果', isChild: false, children: [] }, { id: 'clothes', name: '衣服', isChild: false, children: [] }, { id: 'bag', name: '包包', isChild: false, children: [] }, { id: 'woman', name: '女鞋', isChild: false, children: [] }, { id: 'mansport', name: '男鞋', isChild: false, children: [] }, { id: 'sports', name: '运动鞋', isChild: false, children: [] }, { id: 'hzp', name: '化妆品', isChild: false, children: [] }, { id: 'life', name: '日常用品', isChild: false, children: [] }, { id: 'computer', name: '电脑', isChild: false, children: [] }, { id: 'phone', name: '手机', isChild: false, children: [] } ] //导出数据 module.exports={ dataList:categoryJson }
显示列表的页面――categroy.wxml文件
{{item.name}} {{item.name}} 该分类暂无数据
说明:
curIndex === index?'active':'' ,根据是否和一级目录index相同,来判断是否选中文字。相同执行.cate-list.active样式,不相同则执行.cate-list样式。
将本地数据引入到列表中――categroy.js文件
//引入本地的json数据var jsonData=require("../../data/categroryData.js")Page({ data: { curIndex: 0, toView: 'guowei' }, onLoad(){ this.setData({ //jsonData.dataList获取data文件中categoryData.js中定义的Json数据,并赋值给category category: jsonData.dataList }) }, switchTab(e){ //将获取到的item的id和数组的下表值设为当前的id和下标 this.setData({ toView: e.target.dataset.id, curIndex: e.target.dataset.index }) } })
列表样式――category.wxss文件
.main{ width:100%; height: 100%; } .categroy-left{ float: left; width: 150rpx; height: 100%; overflow-y: auto; border-right: 1px solid #ddd; box-sizing: border-box; } .categroy-left .cate-list{ height: 90rpx; line-height: 90rpx; text-align: center; border-left: 3px solid #fff; } .categroy-left .cate-list.active{ color: #AB956D; border-color: #AB956D; } .categroy-right{ float: right; width: 600rpx; height: 100%; } .cate-box{ height: 100%; padding:40rpx; box-sizing: border-box; } .cate-title{ position: relative; height: 30rpx; line-height: 30rpx; padding:30rpx 0 55rpx; text-align: center; color: #AB956D; font-size: 28rpx; } .cate-title::before{ position: absolute; left: 130rpx; top: 43rpx; content: ''; width: 70rpx; height: 4rpx; background: #AB956D; } .cate-title::after{ position: absolute; right: 130rpx; top: 43rpx; content: ''; width: 70rpx; height: 4rpx; background: #AB956D; } .nodata{ font-size: 14px; text-align: center; color: #AB956D; margin-top: 100px; }
效果图
好啦,大功告成!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号