This commit is contained in:
2024-08-19 00:00:29 +08:00
commit d926b338a2
23 changed files with 1136 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
// components/index-nav-bar/index-nav-bar.js
const app = getApp()
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
navBarHeight: app.globalData.navBarHeight+20,
menuRight: app.globalData.menuRight,
menuTop: app.globalData.menuTop,
menuHeight: app.globalData.menuHeight,
},
/**
* 组件的方法列表
*/
methods: {
}
})