Login.vue
3.1 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<script setup>
import { dengluAPI } from '@/aip/login';
import { ref } from 'vue'
const username = ref('')
const password = ref('')
const onSubmit = async(values) => {
console.log()
const data = {
tNum : username.value,
password : password.value
}
console.log(data);
const res = await dengluAPI(data)
console.log(res)
}
</script>
<template>
<div class="counter">
<div style="height: 6%"></div>
<div class="ban">
<div class="left1">
<h2>用户登录</h2>
<div class="login">
<van-form @submit="onSubmit">
<van-cell-group inset>
<van-field v-model="username" name="教工号/学号" label="教工号/学号" placeholder="教工号/学号"
:rules="[{ required: true, message: '请填写教工号/学号' }]" />
<van-field v-model="password" type="password" name="密码" label="密码" placeholder="密码"
:rules="[{ required: true, message: '请填写密码' }]" />
</van-cell-group>
<div style="margin: 16px">
<van-button round block color="#6170c3" native-type="submit"> 登录 </van-button>
</div>
</van-form>
</div>
<div class="msg">
<div class="left">手机验证码登录</div>
<div class="right">忘记密码</div>
</div>
<!-- <div class="bit">其他方式登录 ></div> -->
<div class="footer">
登录即表示同意平台 <span>《隐私政策》</span>和 <span>《用户协议》</span>
</div>
</div>
<div class="right1">
<div class="waiter">客服</div>
<img src="@/static/erweima.png" alt="">
<div class="bit2">使用小程序扫码登录</div>
</div>
</div>
</div>
</template>
<style lang="scss" scoped>
.counter {
width: 100%;
height: 100%;
.left1{
width: 60%;
}
.ban {
position: relative;
margin: 6% auto;
width: 800px;
height: 500px;
background-color: #fff;
border-radius: 20px;
display: flex;
.van-button--block {
display: block;
width: 130%;
}
h2 {
padding: 60px 0 0 40px;
}
.login {
margin-top: 60px;
width: 55%;
padding-left: 20px;
.van-field__left-icon {
padding-right: 10px;
}
}
.msg {
padding-left: 45px;
display: flex;
width: 58%;
justify-content: space-between;
align-items: center;
color: #7888ff;
.right {
color: darkgray;
}
}
.footer {
position: absolute;
bottom: 40px;
left: 7%;
text-align: center;
font-size: 12px;
span {
color: #7888ff;
}
}
}
.right1 {
width: 34%;
margin-left: 20px;
.waiter {
color: darkgray;
font-size: 14px;
text-align: end;
margin-top: 20px;
padding-right: 5px;
}
img{
height: 290px;
width: 270px;
margin-top: 40px;
padding-left: -20px;
}
.bit2{
color: darkgray;
text-align: center;
position: absolute;
bottom: 100px;
left:70% ;
font-size: 16px;
}
}
}
</style>