zhangjq
2026-03-02 5ef74bc2d65776e1ef1933d30b8a59b8cd18a8c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
  <div class="agent-welcome">
    <div class="welcome-content">
      <h1 class="welcome-title">您好,欢迎访问</h1>
      <h2 class="welcome-system-name">仁软GEO业务管理系统</h2>
    </div>
  </div>
</template>
 
<script lang="ts" setup>
</script>
 
<style lang="less" scoped>
.agent-welcome {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f2f5;
}
 
.welcome-content {
  text-align: center;
  padding: 40px;
}
 
.welcome-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
 
.welcome-system-name {
  font-size: 40px;
  color: #1890ff;
  font-weight: bold;
}
</style>