持续集成分支

This commit is contained in:
aixianling
2024-10-10 16:04:11 +08:00
parent f35c272a19
commit 00b2dbb4a4
38 changed files with 2222 additions and 111 deletions

31
src/views/building.vue Normal file
View File

@@ -0,0 +1,31 @@
<template>
<section class="building">
<div class="title">功能开发中,敬请期待...</div>
</section>
</template>
<script>
export default {
name: "building"
}
</script>
<style lang="scss" scoped>
.building {
position: relative;
height: 100%;
background-image: url("../assets/building.png");
background-size: 400px 300px;
background-repeat: no-repeat;
background-position: center, center;
.title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: 150px;
font-weight: bold;
}
}
</style>