国产成人精品18p,天天干成人网,无码专区狠狠躁天天躁,美女脱精光隐私扒开免费观看

小程序開(kāi)發(fā)中怎么實(shí)現九宮格界面的導航

發(fā)布時(shí)間:2021-07-06 14:08 來(lái)源:億速云 閱讀:0 作者:小新 欄目: web開(kāi)發(fā)

這篇文章將為大家詳細講解有關(guān)小程序開(kāi)發(fā)中怎么實(shí)現九宮格界面的導航,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

首先來(lái)考慮九宮格數據的生成,每一個(gè)格子需要有一個(gè)圖標、一個(gè)標題、一個(gè)便于跳轉的路由,那天現在我們有九個(gè)頁(yè)面,所以定義一個(gè)一維數組即可。為了更好的進(jìn)行后續的配置,我們將這個(gè)數組獨立到一個(gè)文件中routes.js,然后將其在index.js頁(yè)面中引用,routes放到index的目錄下。

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頁(yè)面中我們引用routes.js,然后得到數據PageItems,但PageItems是一維數組,而我們前面思考是要用一行三列為一個(gè)組的,所以需要將這一維數組進(jìn)行重新組合,最直接的方法就是生成一個(gè)數組,每個(gè)數組的元素又包含了一個(gè)只有三個(gè)元素的一維數組,代碼如下

//index.js 
//獲取應用實(shí)例 
var app = getApp() 
var routes = require('routes'); 
Page({ 
 data: { 
  userInfo: {}, 
  cellHeight: '120px', 
  pageItems: [] 
 }, 
 //事件處理函數 
 onLoad: function () { 
  var that = this 
  console.log(app); 
  //調用應用實(shí)例的方法獲取全局數據 
  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 
     }) 
    } 
   }) 
  }) 
 } 
})

在index.wxml中,我們來(lái)布局界面,由于每一個(gè)格子都是一樣的,只是數據不一樣,所以想到用模板來(lái)呈現。為此,我們先做一個(gè)單元格的模板面cell.wxml.

<template name="cell"> 
 <navigator url="{{route}}" class="pages-item" > 
  <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>

這里看到兩個(gè)大括號內套的是從外面傳入的數據,然后在里面可以進(jìn)行簡(jiǎn)單的邏輯判斷,以便于更好的呈現。比如text==null的時(shí)候,我們希望呈現的是一個(gè)空背景的格子,在有數據的時(shí)候我們希望呈現一個(gè)含背景的格子,所以

復制代碼 代碼如下:


"{{text==null||text.length==0?'pages-icon-wrapper-no-bg':'pages-icon-wrapper'}}".

另外一點(diǎn),由于我們是將該界面文件作為模板的,所以必須要用template標記來(lái)包住,同時(shí)命一個(gè)名字name,這樣在引用模板的地方才可以識別調用。 現在我們在index.wxml中引用這個(gè)模板

<!--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>

模板的引用使用import來(lái)引用,在調用的地方使用template和is,其中is指定的是cell.wxml中的name。item[0]、item[1]、item[2]是循環(huán)傳入的數據,cellHeight是在index.js的data中存放的數據。在將數據傳入到模板內部時(shí),框架會(huì )將其展開(kāi)在字段的形式,即key-value對,所以再看cell.wxml文件,就會(huì )發(fā)現內部是直接使用key來(lái)作為數據的。 將數據呈現到界面之后,我們需要相當的樣式來(lái)配合,index.wxss代碼如下。

/**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; 
}

效果如下圖

我們模板中使用navigator元素來(lái)呈現格子,所以每個(gè)格子自然就可以導航了。

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng )、來(lái)自互聯(lián)網(wǎng)轉載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權請聯(lián)系站長(cháng)郵箱:ts@56dr.com進(jìn)行舉報,并提供相關(guān)證據,一經(jīng)查實(shí),將立刻刪除涉嫌侵權內容。

激情97综合亚洲色婷婷五| 国产成人高清精品免费| 欧美俄罗斯40老熟妇| 无码AV免费精品一区二区三区| 午夜福利理论片在线观看| 亚洲国产成人AV网站|