31 lines
759 B
JavaScript
31 lines
759 B
JavaScript
// Pages/my/my.js
|
||
const app = getApp()
|
||
Page({
|
||
|
||
/**
|
||
* 页面的初始数据
|
||
*/
|
||
data: {
|
||
navbarData: {
|
||
showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
|
||
title: '个人中心', //导航栏 中间的标题
|
||
},
|
||
|
||
// 此页面 页面内容距最顶部的距离
|
||
height: app.globalData.height,
|
||
},
|
||
onLoad() {
|
||
console.log(this.data.height)
|
||
},
|
||
|
||
/**
|
||
* 生命周期函数--监听页面显示
|
||
*/
|
||
onShow() {
|
||
if (typeof this.getTabBar === 'function' && this.getTabBar()) {
|
||
this.getTabBar().setData({
|
||
currentTab: 1 //数字是当前页面在tabbar的索引,如我的查询页索引是2,因此这边为2,同理首页就为0,审批页面为1
|
||
})
|
||
}
|
||
}
|
||
}) |