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
| <template>
| <div class="content">
| <div class="header">
| <div class="headimg">
| <img width="167px" height="44px" src="@/assets/home/logo.png" alt="" />
| </div>
| </div>
| <div class="center w-[70%] h-[584px] bg-white mx-auto mt-25">
| <el-button type="primary">马上登录</el-button>
| </div>
| </div>
| </template>
| <script setup>
| defineOptions({
| name: "RegisterSucess"
| });
| </script>
| <style lang="scss" scoped>
| .content {
| background-color: #f8f8f8;
| width: 100%;
| height: 100%;
| .header {
| display: flex;
| align-items: center;
| height: 80px;
| width: 100%;
| margin: 0 auto;
| background-color: #fff;
| .headimg {
| width: 1200px;
| margin: 0 auto;
| }
| }
| }
| </style>
|
|