var PageItems =
[
{
text: '格子1',
icon: '../../images/c1.png',
route: '../c1/c1',
},
{
text: '格子2',
icon: '../../images/c2.png',
route: '../c2/c2',
},
{
text: '格子3',
icon: '../../images/c3.png',
route: '../c3/c3',
},
{
text: '格子4',
icon: '../../images/c4.png',
route: '../c4/c4',
},
{
text: '格子5',
icon: '../../images/c5',
route: '../c5/c5',
},
{
text: '格子6',
icon: '../../images/c6.png',
route: '../c6/c6',
},
{
text: '格子7',
icon: '../../images/c7.png',
route: '../c7/c7',
},
{
text: '格子8',
icon: '../../images/c8',
route: '../c8/c8',
},
{
text: '格子9',
icon: '../../images/c9.png',
route: '../c9/c9',
}
];
module.exports = {
PageItems: PageItems
}
//index.js
//获取应用实例
var app = getApp()
var routes = require('routes');
Page({
data: {
userInfo: {},
cellHeight: '120px',
pageItems: []
},
//事件处理函数
onLoad: function () {
var that = this
console.log(app);
//调用应用实例的方法获取全局数据
app.getUserInfo(function (userInfo) {
wx.setNavigationBarTitle({
title: '全新测试追踪系统-' + userInfo.nickName,
success: function (res) {
// success
}
})
that.setData({
userInfo: userInfo
})
var pageItems = [];
var row = [];
var len = routes.PageItems.length;//重组PageItems
len = Math.floor((len + 2) / 3) * 3;
for (var i = 0; i < len; i++) {
if ((i + 1) % 3 == 0) {
row.push(indexs.PageItems[i]);
pageItems.push(row);
row = [];
continue;
}
else {
row.push(indexs.PageItems[i]);
}
}
wx.getSystemInfo({
success: function (res) {
var windowWidth = res.windowWidth;
that.setData({
cellHeight: (windowWidth / 3) + 'px'
})
},
complete: function () {
that.setData({
pageItems: pageItems
})
}
})
})
}
})
<template name="cell">
<navigator url="{{route}}" class="pages-item" style="height:{{cellHeight}}">
<view class="{{text==null||text.length==0?'pages-icon-wrapper-no-bg':'pages-icon-wrapper'}}" >
<image src="{{icon}}" class="pages-icon"></image>
</view>
<view class="pages-text-wrapper">
<text class="pages-text">{{text}}</text>
</view>
</navigator>
</template>
<!--index.wxml-->
<import src="cell.wxml" />
<view class="pages-container">
<scroll-view scroll-y="true" class="pages-wrapper">
<view wx:for="{{pageItems}}" wx:key="{{text}}">
<view class="pages-row">
<template is="cell" data="{{...item[0],cellHeight}}" />
<template is="cell" data="{{...item[1],cellHeight}}" />
<template is="cell" data="{{...item[2],cellHeight}}" />
</view>
</view>
</scroll-view>
</view>
/**index.wxss**/
.pages-container {
height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
padding-top: 10rpx;
padding-bottom: 10rpx;
}
.pages-title-bg {
width: 100%;
}
.pages-wrapper {
}
.pages-row {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.pages-item {
position: relative;
padding: 10rpx;
width: 33%;
background-color: #fff;
border: #ddd solid 1px;
}
.pages-icon-wrapper {
display: flex;
justify-content: space-around;
align-items: center;
margin: 10rpx;
border-radius: 30%;
height: 75%;
background:#00CD0D;
}
.pages-icon-wrapper-no-bg {
display: flex;
justify-content: space-around;
align-items: center;
margin: 10rpx;
height: 75%;
}
.pages-icon {
width: 100rpx;
height: 100rpx;
}
.pages-text-wrapper {
text-align: center;
}
.pages-text {
font-weight: bolder;
}
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有