44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
|
// pages/mine/mine.js
|
|||
|
const app = getApp()
|
|||
|
const systemInfo = wx.getWindowInfo();
|
|||
|
const statusBarHeight = systemInfo.statusBarHeight; // 状态栏高度
|
|||
|
const navBarHeight = 44; // 导航栏高度(iOS 为 44px,Android 为 48px)
|
|||
|
const windowHeight = systemInfo.windowHeight - navBarHeight - statusBarHeight; //可用内容高度
|
|||
|
Page({
|
|||
|
|
|||
|
/**
|
|||
|
* 页面的初始数据
|
|||
|
*/
|
|||
|
data: {
|
|||
|
statusBarHeight: statusBarHeight,
|
|||
|
navBarHeight: navBarHeight,
|
|||
|
totalHeight: navBarHeight, // 导航栏总高度
|
|||
|
contentHeight: windowHeight,
|
|||
|
menuList: [{
|
|||
|
"icon": "https://img.icons8.com/?size=100&id=OZzk5umGngVd&format=png&color=000000",
|
|||
|
"title": "个人信息"
|
|||
|
}, {
|
|||
|
"icon": "https://img.icons8.com/?size=100&id=OZzk5umGngVd&format=png&color=000000",
|
|||
|
"title": "修改密码"
|
|||
|
}, {
|
|||
|
"icon": "https://img.icons8.com/?size=100&id=OZzk5umGngVd&format=png&color=000000",
|
|||
|
"title": "我的订单"
|
|||
|
}, {
|
|||
|
"icon": "https://img.icons8.com/?size=100&id=OZzk5umGngVd&format=png&color=000000",
|
|||
|
"title": "发票管理"
|
|||
|
}, {
|
|||
|
"icon": "https://img.icons8.com/?size=100&id=OZzk5umGngVd&format=png&color=000000",
|
|||
|
"title": "产权所属人"
|
|||
|
}, {
|
|||
|
"icon": "https://img.icons8.com/?size=100&id=OZzk5umGngVd&format=png&color=000000",
|
|||
|
"title": "产权联系人"
|
|||
|
}]
|
|||
|
},
|
|||
|
|
|||
|
/**
|
|||
|
* 生命周期函数--监听页面加载
|
|||
|
*/
|
|||
|
onLoad(options) {
|
|||
|
|
|||
|
},
|
|||
|
})
|