2025-03-24 17:32:57 +08:00
|
|
|
<template>
|
|
|
|
<div class="plant-gs-warp">
|
|
|
|
<div class="plant-gs-content" :style="{ 'background-image': 'url(' + getAssetsFile('images/plant/bg1.png') + ')' }"></div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import { isEmpty, getAssetsFile } from '@/utils';
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.plant-gs-warp {
|
|
|
|
height: 100%;
|
|
|
|
padding: 10px 0;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
.plant-gs-content {
|
2025-03-25 17:32:34 +08:00
|
|
|
background-size: 100% 100%;
|
2025-03-24 17:32:57 +08:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|