|
@@ -1,6 +1,13 @@
|
|
<template>
|
|
<template>
|
|
- <div class="">
|
|
|
|
- 桌面应用登陆
|
|
|
|
|
|
+ <div class="loginExe">
|
|
|
|
+
|
|
|
|
+ <div class="main" >
|
|
|
|
+
|
|
|
|
+ <div class="title" >排水管道智能检测评估</div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
@@ -119,4 +126,59 @@ onMounted(() => {
|
|
</script>
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
+$proportion : 0.8;
|
|
|
|
+
|
|
|
|
+.loginExe {
|
|
|
|
+
|
|
|
|
+ box-sizing:border-box;
|
|
|
|
+ -moz-box-sizing:border-box; /* Firefox */
|
|
|
|
+ -webkit-box-sizing:border-box; /* Safari */
|
|
|
|
+
|
|
|
|
+ -moz-user-select: none;
|
|
|
|
+ -webkit-user-select: none;
|
|
|
|
+ -ms-user-select: none;
|
|
|
|
+ -khtml-user-select: none;
|
|
|
|
+ user-select: none;
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.loginExe {
|
|
|
|
+
|
|
|
|
+ position: fixed;
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ top: 0px;
|
|
|
|
+ left: 0px;
|
|
|
|
+ background-color: #092661;
|
|
|
|
+
|
|
|
|
+ .main {
|
|
|
|
+ position: fixed;
|
|
|
|
+ width: 137.14rem;
|
|
|
|
+ height: 81.14rem;
|
|
|
|
+ top: 50%;
|
|
|
|
+ left: 50%;
|
|
|
|
+ margin: -40.57rem 0px 0px -68.57rem;
|
|
|
|
+
|
|
|
|
+ background-image: url("../assets/exeLogin/bg.webp");
|
|
|
|
+ -webkit-background-size: 100% 100%;
|
|
|
|
+ -moz-background-size: 100% 100%;
|
|
|
|
+ -o-background-size: 100% 100%;
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
+ background-position: center center;
|
|
|
|
+
|
|
|
|
+ .title {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 2.25rem;
|
|
|
|
+ left: 0px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: 4rem;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ color: #f0fffe;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
</style>
|
|
</style>
|