ts_aimz/pages/mine/mine.js
itgaojian163 cbf7c00399 页面
2025-03-24 18:05:54 +08:00

51 lines
1.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// pages/mine/mine.js
const app = getApp()
const deviceInfo = wx.getDeviceInfo()
const screenInfo = wx.getWindowInfo();
const statusBarHeight = screenInfo.statusBarHeight; // 状态栏高度
const navBarHeight = deviceInfo.platform == 'IOS' ? 48 : 50; // 导航栏高度iOS 为 44pxAndroid 为 48px
const windowHeight = screenInfo.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) {
},
//跳转充值页面
doPay() {
wx.navigateTo({
url: '/pages/copyright/payment/payment',
})
}
})