1 Star 0 Fork 7

yeeeeeeeser/yunxiaohui

forked from 蛋白熙/yunxiaohui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 910 Bytes
一键复制 编辑 原始数据 按行查看 历史
蛋白熙 提交于 2023-06-04 10:24 . feat:新增自定义导航栏
import localConfigs from './config'
App({
onLaunch() {
wx.getSystemInfo({
success: e => {
this.globalData.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
this.globalData.Custom = custom;
this.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
}
})
},
globalData: {},
// 获取配置
getConfig(key = "") {
// 不指定key,返回全部
if (key === "") {
return localConfigs
}
// 不存在配置
if (!localConfigs[key]) {
console.warn(`${key} config is no exist`)
return undefined
}
// 配置是否区分环境
if (typeof localConfigs[key] === "object" && typeof localConfigs[key] !== null) {
// 获取当前环境类型
const env = this.getConfig("env")
return localConfigs[key][env]
}
return localConfigs[key]
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/get654/yunxiaohui.git
[email protected]:get654/yunxiaohui.git
get654
yunxiaohui
yunxiaohui
main

搜索帮助