fix
This commit is contained in:
parent
b351c8ecf5
commit
2cf18cc8b5
@ -25,9 +25,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, useSlots } from "vue";
|
import { computed, useSlots, onMounted } from "vue";
|
||||||
const slots = useSlots();
|
|
||||||
console.log(slots);
|
|
||||||
const isShowLeft = computed(() => {
|
const isShowLeft = computed(() => {
|
||||||
const pages = getCurrentPages();
|
const pages = getCurrentPages();
|
||||||
return pages.length === 1 ? false : true;
|
return pages.length === 1 ? false : true;
|
||||||
@ -40,7 +38,11 @@ const backhandle = () => {
|
|||||||
const root = document.documentElement;
|
const root = document.documentElement;
|
||||||
root.style.setProperty(
|
root.style.setProperty(
|
||||||
"--statusBarHeight",
|
"--statusBarHeight",
|
||||||
`${plus.navigator.getStatusbarHeight()}px`
|
`${
|
||||||
|
plus.storage.getItem("RunTime") === "app"
|
||||||
|
? plus.navigator.getStatusbarHeight()
|
||||||
|
: 0
|
||||||
|
}px`
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user