1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- let app = getApp();
- export default {
- props: {
- themeModuleVoList: {
- type: Array,
- default: () => []
- },
- themeVo: {
- type: Object,
- default: () => {}
- },
- },
- data() {
- return {
- // defaultScrollTop: 0,
- // pageHeight: 0,
- // nav_status_Height: 0, // 头部栏高度 (状态栏高度 - 标题高度)
- };
- },
- beforeCreate() {},
- created() {
- // const {
- // statusBarHeight,
- // screenHeight,
- // viewHeight,
- // navHeight
- // } = app.globalData;
- // this.nav_status_Height = statusBarHeight + navHeight;
- // const h = uni.upx2px(this.topFixedHeight || 0);
- // this.defaultScrollTop = statusBarHeight + navHeight + h; // 头部综合高度(态栏高度 - 标题高度 - 搜索栏高度)
- // // 屏幕高度 - 头部综合高度
- // this.pageHeight = screenHeight - this.defaultScrollTop - 80;
- },
- onload() {
- },
- methods: {
- openKongKim(item) {
- this.$openPage(item)
- },
- },
- }
|