写在前面:
从2016年张小龙发布微信小程序这种新的形态,到2017年小程序的不温不火,再到今年小程序的大爆发,从一度刷爆朋友圈的‘头脑王者’,再到春节聚会坐在一起的火爆小游戏“跳一跳",都预示着张小龙以及团队当初的布局是成功的,让用户在原生APP和网页之外又有一种新形式的选择,随着微信自家的推广以及得益于小程序本身的”短小精悍,用完即走“的特性,同时再加上各家公司的努力跟进,小程序的未来不可限量,博主从小程序发布到现在的每次微信公开课都在关注,着实感觉到小程序的功能的日益强大,再加上最近博主最近负责的项目有这方面的需求,所以近期会更新一些关于小程序的我知道的和一些我刚学的知识,大家一起进步。
今天先聊一聊在购物或者大家在外卖时候经常见到的商品列表左右联动的实现:
博主现在写的项目菜单栏为汉字,所以需要改变数据格式,进而需要改变 wxml 中的循环嵌套和获取。以下为成型后效果,
实现该功能的思路:通过点击左侧滑栏的某一项,获取到该元素携带的 id ,然后动态传给右侧滑栏的 scroll-into-view ,从而实现右侧滑栏对应的该元素运动置顶。
以下为完整数据
数据格式:
var list = {
"List": [
{
'A': [
{ name: '白酒' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'B': [
{ name: '白酒1' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'C': [
{ name: '白酒2' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'D': [
{ name: '白酒3' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'E': [
{ name: '白酒4' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'F': [
{ name: '白酒5' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'G': [
{ name: '白酒6' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'H': [
{ name: '白酒7' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'I': [
{ name: '白酒8' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'J': [
{ name: '白酒9' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'K': [
{ name: '白酒10' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'L': [
{ name: '白酒11' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
],
'M': [
{ name: '白酒12' },
{ 'picture': '../../img/55ac9689Ncc876cf1.jpg', 'desc': '葡萄酒' },
{ 'picture': '../../img/56668c04N5cb325b7.jpg', 'desc': '洋酒' },
{ 'picture': '../../img/586e055eNf678fd52.png', 'desc': '汾酒' },
{ 'picture': '../../img/596d6f4eNb62c24c1.jpg', 'desc': '汾酒' }
]
}
],
}
module.exports = list;
wxml内容:
<view class="container">
js内容:
wxss代码 (样式可能会不全,需要引入weui.wxss文件)
请发表评论