yglt-uniapp/pages/index/index.vue

33 lines
443 B
Vue
Raw Normal View History

2025-01-02 01:52:16 +00:00
<template>
<view class="content">
2025-01-13 11:42:02 +00:00
<div class="top">
</div>
<div class="bottom">
<Menu :type="0"/>
</div>
2025-01-02 01:52:16 +00:00
</view>
</template>
2025-01-13 11:42:02 +00:00
<script setup>
import Menu from '../../components/Menu.vue'
2025-01-02 01:52:16 +00:00
</script>
2025-01-13 11:42:02 +00:00
<style scoped>
2025-01-02 01:52:16 +00:00
.content {
display: flex;
flex-direction: column;
2025-01-13 11:42:02 +00:00
height: 100%;
background: url('~@/static/home.jpg') no-repeat;
background-size: 100% 100%;
2025-01-02 01:52:16 +00:00
}
2025-01-13 11:42:02 +00:00
.top {
flex: 12;
2025-01-02 01:52:16 +00:00
}
2025-01-13 11:42:02 +00:00
.bottom {
flex: 1;
2025-01-02 01:52:16 +00:00
}
2025-01-08 03:10:04 +00:00
</style>