123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <script setup>
- import { computed, onMounted, onUnmounted, watch, ref } from "vue";
- import { useRouter } from 'vue-router';
- const router = useRouter();
- </script>
- <template>
- <div class="Index">
-
- <div class="note">市政管网智能检测与维护</div>
- <div class="note">后台管理平台</div>
- </div>
- </template>
- <style lang="scss" scoped>
- @use './css/commonsScrollbar.scss';
- .Index * {
- // -moz-user-select: none;
- // -webkit-user-select: none;
- // -ms-user-select: none;
- // -khtml-user-select: none;
- // user-select: none;
- box-sizing:border-box;
- -moz-box-sizing:border-box; /* Firefox */
- -webkit-box-sizing:border-box; /* Safari */
- }
- .Index {
- position: relative;
- z-index: 0;
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- background-color: #ffffff;
- .note {
- width: 100%;
- font-size: 2rem;
- text-align: center;
- color: #5c5c5c;
- margin: 0.5rem 0px 0.5rem 0px;
- }
-
- }
- </style>
|