人生啊人生 3 hafta önce
ebeveyn
işleme
7c9016ab75
1 değiştirilmiş dosya ile 64 ekleme ve 2 silme
  1. 64 2
      user_web/src/view/LogInExe.vue

+ 64 - 2
user_web/src/view/LogInExe.vue

@@ -1,6 +1,13 @@
 <template>
-    <div class="">
-        桌面应用登陆
+    <div class="loginExe">
+        
+        <div class="main" >
+
+            <div class="title" >排水管道智能检测评估</div>
+
+
+        </div>
+
     </div>
 </template>
 <script setup lang="ts">
@@ -119,4 +126,59 @@ onMounted(() => {
 </script>
 <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>