20 lines
472 B
Vue
Raw Normal View History

2025-06-19 13:32:56 +08:00
<template>
2025-06-24 10:35:37 +08:00
<div class="custom-page" :style="`background-image: url(${getAssetsFile('images/input/inputman.png')})`">
2025-06-24 09:20:56 +08:00
<!-- <h1>统计数据</h1>
<div class="content"></div> -->
</div>
2025-06-19 13:32:56 +08:00
</template>
<script setup>
import { ref, watch, onMounted, computed } from 'vue';
2025-06-24 09:20:56 +08:00
import { getAssetsFile } from '@/utils';
2025-06-19 13:32:56 +08:00
</script>
2025-06-24 09:20:56 +08:00
<style scoped lang="scss">
.custom-page {
height: calc(100vh - 150px);
background-size: cover;
background-repeat: no-repeat;
}
</style>