You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
622 B
29 lines
622 B
<template>
|
|
<view>
|
|
<page-standby ></page-standby>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, onMounted ,getCurrentInstance } from 'vue';
|
|
import { onLoad,onReady } from '@dcloudio/uni-app';
|
|
import pageStandby from '@/components/index/page_standby.vue';//待机页
|
|
import util from "@/utils/util.js"
|
|
|
|
// const screenHeight = ref(1200);
|
|
|
|
onMounted(async () => {
|
|
// screenHeight.value = await util.getPageHeight()
|
|
// console.log(`page-standby onMounted` + screenHeight.value)
|
|
});
|
|
|
|
|
|
const toIndex = ()=>{
|
|
util.routeTo(`/pages/index/index`, 'nT');
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|