肖超群
authored
11 months ago
1
2
3
4
5
6
7
<template>
<div id="userLayout" :class="['user-layout-wrapper']">
<div class="left-div">
<div id="logo">
<div id="logoImg">
<img src="~@/assets/logo.png" alt="" srcset="" class="imge">
</div>
谭毅彬
authored
9 months ago
8
<div id="text">华恒WMS仓储管理系统</div>
肖超群
authored
11 months ago
9
10
</div>
<div id="backgroundImg">
谭毅彬
authored
9 months ago
11
<img src="~@/assets/beijingtu.jpg" alt="" srcset="" class="imge"/>
肖超群
authored
11 months ago
12
13
</div>
<div id="copyright">
谭毅彬
authored
9 months ago
14
<div id="company">Copyright © 2024 华恒焊接股份有限公司</div>
肖超群
authored
11 months ago
15
16
17
</div>
</div>
<div class="right-div">
谭毅彬
authored
7 months ago
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
<div class="right-login">
<a-form-model ref="form" :model="model" :rules="validatorRules">
<div id="welcome">欢迎来到华恒仓储管理系统</div>
<a-form-model-item required prop="username">
<a-input id="name" v-model="model.username" size="default" autocomplete="off" placeholder="请输入帐户名 / admin" @blur="getWarehouse">
</a-input>
</a-form-model-item>
<a-form-model-item required prop="password">
<a-input id="password" v-model="model.password" size="default" type="password" autocomplete="new-password" @input="maskPassword" placeholder="请输入密码">
</a-input>
</a-form-model-item>
<a-form-model-item prop="warehouseCode">
<a-select
show-search
placeholder="请选择仓库"
option-filter-prop="label"
v-model="model.warehouseCode" id="warehouseCode">
<a-select-option v-for="item in warehouseList" :key="item.name" :value="item.code">{{
item.name
}}
</a-select-option>
</a-select>
</a-form-model-item>
<a-form-item>
<a-button id="logIn" size="default" type="primary" htmlType="submit" class="login-button"
:loading="loginBtn" @click.stop.prevent="handleSubmit" :disabled="loginBtn">登 录</a-button>
</a-form-item>
</a-form-model>
</div>
谭毅彬
authored
9 months ago
47
</div>
肖超群
authored
11 months ago
48
49
50
51
52
53
54
<two-step-captcha v-if="requiredTwoStepCaptcha" :visible="stepCaptchaVisible" @success="stepCaptchaSuccess" @cancel="stepCaptchaCancel"></two-step-captcha>
<login-select-tenant ref="loginSelect" @success="loginSelectOk" ></login-select-tenant>
</div>
</template>
<script>
谭毅彬
authored
9 months ago
55
56
57
58
59
60
61
62
63
import RouteView from '@/components/layouts/RouteView'
import { mixinDevice } from '@/utils/mixin.js'
import LoginAccount from '@views/user/LoginAccount.vue'
import { mapActions } from 'vuex'
import { getAction } from '@api/manage'
import { getWarehouseByUserCode } from '@api/api'
import TwoStepCaptcha from '@comp/tools/TwoStepCaptcha.vue'
import LoginSelectTenant from '@views/user/LoginSelectTenant.vue'
import { timeFix } from '@/utils/util'
肖超群
authored
11 months ago
64
65
export default {
谭毅彬
authored
9 months ago
66
67
name: 'UserLayout',
components: { LoginSelectTenant, TwoStepCaptcha },
肖超群
authored
11 months ago
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
data() {
return {
requestCodeSuccess: false,
randCodeImage: '',
currdatetime: '',
requiredTwoStepCaptcha: false,
stepCaptchaVisible: false,
maskedPassword: '',
loginType: 0,
loginBtn: false,
warehouseList: {},
querySource: {},
model: {
username: '',
password: '',
谭毅彬
authored
9 months ago
83
warehouseCode: ''
肖超群
authored
11 months ago
84
85
86
87
// inputCode: ''
},
validatorRules: {
username: [
谭毅彬
authored
9 months ago
88
89
{
required: true,
谭毅彬
authored
8 months ago
90
message: <span style="color: red; font-weight: bold; margin-left: 10%; font-size: 0.85vw;">请输入用户名!</span>
谭毅彬
authored
9 months ago
91
92
},
{ validator: this.handleUsernameOrEmail }
肖超群
authored
11 months ago
93
],
谭毅彬
authored
9 months ago
94
95
96
password: [
{
required: true,
谭毅彬
authored
8 months ago
97
message: <span style="color: red; font-weight: bold; margin-left: 10%; font-size: 0.85vw;">请输入密码!</span>,
谭毅彬
authored
9 months ago
98
99
100
101
102
103
validator: 'click'
}
],
warehouseCode: [
{
required: true,
谭毅彬
authored
8 months ago
104
message: <span style="color: red; font-weight: bold; margin-left: 10%; font-size: 0.85vw;">请选择仓库!</span>,
谭毅彬
authored
9 months ago
105
106
107
108
trigger: 'change',
validator: 'click'
}
]
肖超群
authored
11 months ago
109
110
111
112
}
}
},
created() {
谭毅彬
authored
9 months ago
113
114
this.handleChangeCheckCode()
this.getWarehouse()
肖超群
authored
11 months ago
115
116
117
118
119
120
121
122
123
},
methods: {
stepCaptchaCancel() {
this.Logout().then(() => {
this.loginBtn = false
this.stepCaptchaVisible = false
})
},
肖超群
authored
11 months ago
124
肖超群
authored
11 months ago
125
126
127
128
stepCaptchaSuccess() {
this.loginSuccess()
},
handleSubmit() {
谭毅彬
authored
9 months ago
129
this.loginBtn = true
肖超群
authored
11 months ago
130
// if (this.customActiveKey === 'tab1') {
谭毅彬
authored
9 months ago
131
132
// 使用账户密码登录
this.handleLogin(this.rememberMe)
肖超群
authored
11 months ago
133
134
135
136
137
138
139
// } else {
// //手机号码登录
// this.$refs.plogin.handleLogin(this.rememberMe)
// }
},
// 校验失败
validateFail() {
谭毅彬
authored
9 months ago
140
this.loginBtn = false
肖超群
authored
11 months ago
141
142
143
144
145
146
147
148
},
requestSuccess(loginResult) {
this.$refs.loginSelect.show(loginResult)
},
loginSelectOk() {
this.loginSuccess()
},
loginSuccess() {
谭毅彬
authored
9 months ago
149
this.$router.push({ path: '/dashboard/analysis' })
肖超群
authored
11 months ago
150
151
this.$notification.success({
message: '欢迎',
谭毅彬
authored
9 months ago
152
153
description: `${timeFix()},欢迎回来`
})
肖超群
authored
11 months ago
154
155
156
},
//登录后台失败
requestFailed(err) {
谭毅彬
authored
9 months ago
157
let description = ((err.response || {}).data || {}).message || err.message || '请求出现错误,请稍后再试'
肖超群
authored
11 months ago
158
159
160
this.$notification['error']({
message: '登录失败',
description: description,
谭毅彬
authored
9 months ago
161
162
duration: 4
})
肖超群
authored
11 months ago
163
164
165
166
//账户密码登录错误后更新验证码
if (this.customActiveKey === 'tab1' && description.indexOf('密码错误') > 0) {
this.$refs.alogin.handleChangeCheckCode()
}
谭毅彬
authored
9 months ago
167
this.loginBtn = false
肖超群
authored
11 months ago
168
169
170
171
},
...mapActions(['Login']),
/**刷新验证码*/
handleChangeCheckCode() {
谭毅彬
authored
9 months ago
172
this.currdatetime = new Date().getTime()
肖超群
authored
11 months ago
173
// this.model.inputCode = ''
谭毅彬
authored
9 months ago
174
175
176
177
178
179
180
181
182
183
184
getAction(`/sys/randomImage/${this.currdatetime}`)
.then(res => {
if (res.success) {
this.randCodeImage = res.result
this.requestCodeSuccess = true
} else {
this.$message.error(res.message)
this.requestCodeSuccess = false
}
})
.catch(() => {
肖超群
authored
11 months ago
185
this.requestCodeSuccess = false
谭毅彬
authored
9 months ago
186
})
肖超群
authored
11 months ago
187
188
189
},
getWarehouse() {
谭毅彬
authored
9 months ago
190
191
192
193
194
const that = this
this.querySource.username = that.model.username
let obj = getWarehouseByUserCode(that.querySource)
obj.then(res => {
that.warehouseList = res.result
肖超群
authored
11 months ago
195
if (this.warehouseList != null) {
谭毅彬
authored
9 months ago
196
this.model.warehouseCode = this.warehouseList[0].code
肖超群
authored
11 months ago
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
}
})
},
maskPassword() {
//获取输入框的值
let value = this.model.password
if (value != '') {
//如果不为空,逐个字符判断是否为圆点
for (let i = 0; i < value.length; i++) {
if (value.charAt(i) != '\u25CF') {
//如果不是圆点,表示该字符为用户输入的值,放到真实值的对应位置
let char = value.charAt(i)
this.maskedPassword = this.maskedPassword.slice(0, i) + char + this.maskedPassword.slice(i)
//将该字符替换为圆点
value = value.slice(0, i) + '\u25CF' + value.slice(i + 1)
}
}
//防止真实值和圆点的数量不对应。
this.maskedPassword = this.maskedPassword.slice(0, value.length)
//将转换过的字符串显示给用户
this.model.password = value
} else {
//保持一致性
this.maskedPassword = ''
}
},
// 判断登录类型
handleUsernameOrEmail(rule, value, callback) {
谭毅彬
authored
9 months ago
227
const regex = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((\.[a-zA-Z0-9_-]{2,3}){1,2})$/
肖超群
authored
11 months ago
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
if (regex.test(value)) {
this.loginType = 0
} else {
this.loginType = 1
}
callback()
},
/**
* 验证字段
* @param arr
* @param callback
*/
validateFields(arr, callback) {
let promiseArray = []
for (let item of arr) {
let p = new Promise((resolve, reject) => {
谭毅彬
authored
9 months ago
244
this.$refs['form'].validateField(item, err => {
肖超群
authored
11 months ago
245
if (!err) {
谭毅彬
authored
9 months ago
246
resolve()
肖超群
authored
11 months ago
247
} else {
谭毅彬
authored
9 months ago
248
reject(err)
肖超群
authored
11 months ago
249
250
}
})
谭毅彬
authored
9 months ago
251
})
肖超群
authored
11 months ago
252
253
promiseArray.push(p)
}
谭毅彬
authored
9 months ago
254
255
256
257
258
259
260
Promise.all(promiseArray)
.then(() => {
callback()
})
.catch(err => {
callback(err)
})
肖超群
authored
11 months ago
261
262
263
264
265
266
},
acceptUsername(username) {
this.model['username'] = username
},
// 账号密码登录
handleLogin(rememberMe) {
谭毅彬
authored
9 months ago
267
this.validateFields(['username', 'password'], err => {
肖超群
authored
11 months ago
268
269
270
271
272
273
if (!err) {
let loginParams = {
username: this.model.username,
password: this.maskedPassword,
warehouseCode: this.model.warehouseCode,
checkKey: this.currdatetime,
谭毅彬
authored
9 months ago
274
remember_me: rememberMe
肖超群
authored
11 months ago
275
}
谭毅彬
authored
9 months ago
276
277
278
279
280
281
282
283
284
285
286
287
288
this.Login(loginParams)
.then(res => {
this.$emit('success', res.result)
this.loginSuccess()
})
.catch(err => {
this.validateFail()
this.requestFailed(err)
this.$emit('fail', err)
if (err.code == 499) {
this.$router.push({ path: '/user/systemTokenModal' })
}
})
肖超群
authored
11 months ago
289
290
291
292
293
294
295
296
297
298
299
} else {
this.validateFail()
this.$emit('validateFail')
}
})
}
}
}
</script>
<style lang="less" scoped>
谭毅彬
authored
7 months ago
300
谭毅彬
authored
9 months ago
301
302
303
304
305
#userLayout {
height: 100%;
display: flex; /* 设置flex布局 */
width: 100%; /* 容器宽度设置为100% */
}
肖超群
authored
11 months ago
306
谭毅彬
authored
9 months ago
307
/deep/ .ant-select-selection__rendered {
谭毅彬
authored
7 months ago
308
309
310
311
margin-top: 0vw;
justify-content: center;
margin-left: 0.5vw;
line-height: 2vw;
谭毅彬
authored
9 months ago
312
}
谭毅彬
authored
7 months ago
313
谭毅彬
authored
8 months ago
314
315
316
/deep/ .ant-form {
width: 100%;
}
肖超群
authored
11 months ago
317
谭毅彬
authored
9 months ago
318
319
320
321
///deep/ .ant-select-dropdown-menu-item-selected{
// font-size: 18px;
// height: 30px;
//}
肖超群
authored
11 months ago
322
谭毅彬
authored
9 months ago
323
.left-div {
谭毅彬
authored
7 months ago
324
325
326
flex: 0 0 65%; /* 左侧div宽度为容器的70% */
width: 65%;
height: 100%; /* 使 div 占满父容器高度 */
谭毅彬
authored
9 months ago
327
}
肖超群
authored
11 months ago
328
谭毅彬
authored
9 months ago
329
.right-div {
谭毅彬
authored
7 months ago
330
331
332
flex: 0 0 35%;
width: 35%;
height: 100%; /* 使 div 占满父容器高度 */
谭毅彬
authored
8 months ago
333
display: flex;
谭毅彬
authored
7 months ago
334
335
336
337
338
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
.right-login {
谭毅彬
authored
9 months ago
339
background-color: #fafafa;
谭毅彬
authored
7 months ago
340
341
342
343
344
345
346
347
348
border-radius: 0.5vw; /* 设置圆角半径 */
width: 80%;
height: 60%; /* 使 div 占满父容器高度 */
display: flex; /* 使用 flexbox 进行子元素布局 */
flex-direction: column; /* 垂直排列子元素 */
justify-content: center; /* 垂直居中子元素 */
align-items: center; /* 水平居中子元素 */
box-shadow: 1vw 1vw 1vw #c3c3c3;
border: 0.1vw solid #ccc; /* 增加边框线 */
谭毅彬
authored
9 months ago
349
}
谭毅彬
authored
7 months ago
350
谭毅彬
authored
8 months ago
351
#logo {
谭毅彬
authored
7 months ago
352
height: 10%;
谭毅彬
authored
8 months ago
353
354
355
356
357
358
359
360
width: 100%;
//background-color: red;
//margin-left: 150px;
//margin-left: 11%;
//margin-top: -3%;
display: flex;
// margin-top: 0;
}
谭毅彬
authored
9 months ago
361
#backgroundImg {
谭毅彬
authored
7 months ago
362
height: 82%; /* 使容器充满视口高度 */
谭毅彬
authored
9 months ago
363
display: flex;
谭毅彬
authored
7 months ago
364
365
366
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
// background-color: #fafafa; /* 可选:背景颜色 */
谭毅彬
authored
9 months ago
367
.imge {
谭毅彬
authored
7 months ago
368
height: 85%;
肖超群
authored
11 months ago
369
370
371
372
background-size: contain;
background-repeat: no-repeat;
position: relative;
}
谭毅彬
authored
9 months ago
373
}
谭毅彬
authored
8 months ago
374
375
376
377
378
#copyright {
height: 10%; /* 高度为视口的 10% */
width: 100%; /* 确保宽度不超出容器 */
position: fixed; /* 固定定位 */
bottom: 0; /* 靠底部对齐 */
谭毅彬
authored
9 months ago
379
display: flex;
谭毅彬
authored
8 months ago
380
align-items: flex-end; /* 垂直方向上靠下对齐 */
谭毅彬
authored
7 months ago
381
padding: 1vw; /* 添加内边距 */
谭毅彬
authored
9 months ago
382
383
}
#logoImg {
谭毅彬
authored
7 months ago
384
width: 10vw;
谭毅彬
authored
7 months ago
385
386
height: 3vw;
line-height: 3vw;
谭毅彬
authored
7 months ago
387
388
margin-left: 2vw;
margin-right: 0.5vw;
谭毅彬
authored
7 months ago
389
font-size: 0vw;
谭毅彬
authored
7 months ago
390
// height: 100%;
谭毅彬
authored
9 months ago
391
392
float: right;
position: relative;
谭毅彬
authored
7 months ago
393
align-content: center;
谭毅彬
authored
9 months ago
394
395
//background-color: yellow;
.imge {
谭毅彬
authored
7 months ago
396
397
398
width: 9.5vw;
height: 1.5vw;
// position: absolute;
谭毅彬
authored
8 months ago
399
right: 5%; /* 水平居右 */
谭毅彬
authored
7 months ago
400
// top: 20%; /* 从顶部偏移50% */
谭毅彬
authored
8 months ago
401
// transform: translateY(-50%); /* 向上移动自身高度的50%,实现垂直居中 */
谭毅彬
authored
9 months ago
402
403
404
405
406
//object-fit: contain;
//top: 39%;
//left: 45%;
//object-fit: cover; /* 或 contain、fill、none、scale-down */
//object-position: center;
肖超群
authored
11 months ago
407
}
谭毅彬
authored
9 months ago
408
409
}
#text {
谭毅彬
authored
7 months ago
410
// height: 69%;
谭毅彬
authored
7 months ago
411
412
height: 3vw;
line-height: 3vw;
谭毅彬
authored
9 months ago
413
width: 100%;
谭毅彬
authored
7 months ago
414
415
font-size: 1.1vw;
margin-bottom: 0vw;
谭毅彬
authored
9 months ago
416
417
418
419
420
421
422
423
424
425
426
427
428
429
align-content: center;
color: #333333;
//margin-left: 5px;
font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
font-weight: bold;
//background-color: blue;
}
#form-container {
width: 200px; /* 设置宽度 */
height: 50px; /* 设置高度 */
//margin-left: 820px;
//margin-top: 100px;
}
#company {
谭毅彬
authored
8 months ago
430
431
432
433
434
text-align: center; /* 水平居中对齐 */
// color: #ac1e2b; /* 字体颜色 */
font-size: 0.9vw; /* 字体大小 */
font-family: 'Microsoft YaHei', 'SimSun', sans-serif; /* 字体系列 */
width: 100%; /* 宽度 100% */
谭毅彬
authored
9 months ago
435
436
}
#welcome {
谭毅彬
authored
7 months ago
437
margin-top: 2.2vw;
谭毅彬
authored
9 months ago
438
439
color: #333333;
font-size: 1.5vw;
谭毅彬
authored
8 months ago
440
align-content: end;
谭毅彬
authored
9 months ago
441
font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
谭毅彬
authored
8 months ago
442
text-align: center;
谭毅彬
authored
7 months ago
443
margin-left: 0vw;
谭毅彬
authored
7 months ago
444
margin-bottom: 3vw;
谭毅彬
authored
8 months ago
445
}
谭毅彬
authored
9 months ago
446
#name {
谭毅彬
authored
7 months ago
447
border-width: 0.1vw;
谭毅彬
authored
9 months ago
448
449
450
451
452
453
border-style: solid;
border-radius: 0.6vw;
width: 85%;
height: 3vw;
line-height: 3vw;
margin-left: 8%;
谭毅彬
authored
8 months ago
454
margin-bottom: 0.5vw;
谭毅彬
authored
9 months ago
455
456
457
background-image: url(../../assets/huiyuan.png);
padding-left: 12%; /* 留出图片的空间 */
background-repeat: no-repeat;
谭毅彬
authored
8 months ago
458
459
background-position: 0.6vw center;
background-size: 1.6vw 1.6vw;
谭毅彬
authored
9 months ago
460
461
font-size: 1vw;
color: #333333;
谭毅彬
authored
7 months ago
462
// box-shadow: 1vw 1vw 1vw #c3c3c3;
谭毅彬
authored
9 months ago
463
}
谭毅彬
authored
7 months ago
464
465
466
467
468
469
470
471
472
473
474
475
476
477
::v-deep .ant-select-selection {
border-width: 0.1vw;
border-style: solid;
border-radius: 0.6vw;
width: 100% !important;
height: 3vw;
line-height: 3vw;
background-image: url(../../assets/cangku.png);
padding-left: 12%; /* 留出图片的空间 */
background-repeat: no-repeat;
background-position: 0.6vw center;
background-size: 1.6vw 1.6vw;
font-size: 1vw;
color: #333333;
谭毅彬
authored
7 months ago
478
// box-shadow: 1vw 1vw 1vw #c3c3c3;
谭毅彬
authored
7 months ago
479
480
}
谭毅彬
authored
9 months ago
481
482
483
484
485
486
487
488
#name::after {
content: '';
display: inline-block;
width: 0;
height: 0;
overflow: hidden;
}
#name::placeholder {
谭毅彬
authored
8 months ago
489
font-size: 1vw;
谭毅彬
authored
9 months ago
490
491
492
493
color: #999999;
padding-left: 0px;
}
#password {
谭毅彬
authored
7 months ago
494
border-width: 0.1vw;
谭毅彬
authored
9 months ago
495
496
497
498
499
500
border-style: solid;
border-radius: 0.6vw;
width: 85%;
height: 3vw;
line-height: 3vw;
margin-left: 8%;
谭毅彬
authored
7 months ago
501
margin-top: 0vw;
谭毅彬
authored
8 months ago
502
margin-bottom: 0.5vw;
谭毅彬
authored
9 months ago
503
504
505
background-image: url(../../assets/mima.png);
padding-left: 12%; /* 留出图片的空间 */
background-repeat: no-repeat;
谭毅彬
authored
8 months ago
506
507
background-position: 0.6vw center;
background-size: 1.6vw 1.6vw;
谭毅彬
authored
9 months ago
508
509
font-size: 1vw;
color: #333333;
谭毅彬
authored
7 months ago
510
// box-shadow: 1vw 1vw 1vw #c3c3c3;
谭毅彬
authored
9 months ago
511
}
谭毅彬
authored
8 months ago
512
513
#warehouseCode {
border-color: #ebf3fd;
谭毅彬
authored
7 months ago
514
border-width: 0vw;
谭毅彬
authored
8 months ago
515
516
517
518
519
520
border-style: solid;
border-radius: 0.6vw;
width: 85%;
height: 3vw;
line-height: 3vw;
margin-left: 8%;
谭毅彬
authored
7 months ago
521
margin-top: 0vw;
谭毅彬
authored
8 months ago
522
523
524
525
526
margin-bottom: 2.5vw;
font-size: 1vw;
text-align: center;
//color: #333333;
}
谭毅彬
authored
9 months ago
527
528
529
530
531
532
533
534
#password::after {
content: '';
display: inline-block;
width: 0;
height: 0;
overflow: hidden;
}
#password::placeholder {
谭毅彬
authored
8 months ago
535
font-size: 1vw;
谭毅彬
authored
9 months ago
536
537
538
color: #999999;
padding-left: 0px;
}
谭毅彬
authored
7 months ago
539
540
541
542
543
544
545
546
547
548
549
550
551
/deep/ .ant-form-explain {
margin-top: 0.2vw;
margin-bottom: 0.2vw;
min-height: 1.2vw;
font-size: 0.8vw;
}
/deep/ .ant-select-arrow {
font-size: 1vw;
right: 1vw;
margin-top: -0.4vw;
}
谭毅彬
authored
8 months ago
552
/deep/ .ant-form-item-control {
谭毅彬
authored
7 months ago
553
line-height: 0vw;
谭毅彬
authored
9 months ago
554
}
谭毅彬
authored
7 months ago
555
谭毅彬
authored
9 months ago
556
/deep/ .ant-select-selection__rendered {
谭毅彬
authored
7 months ago
557
558
559
560
561
562
563
564
565
566
line-height: 3vw;
}
/deep/ .ant-col {
min-height: 5.6vw;
}
/deep/ .ant-form-item-with-help {
margin-bottom: 0vw;
谭毅彬
authored
9 months ago
567
}
谭毅彬
authored
8 months ago
568
谭毅彬
authored
7 months ago
569
/deep/ .ant-form-item {
谭毅彬
authored
7 months ago
570
571
font-size: 3vw;
margin-bottom: 0vw;
谭毅彬
authored
7 months ago
572
573
}
谭毅彬
authored
9 months ago
574
575
576
577
578
579
580
a-select {
width: 100%;
height: 100%;
font-size: 16px;
color: #333;
background-color: #fff;
border: 1px solid #ccc;
谭毅彬
authored
9 months ago
581
border-radius: 0.6vw;
谭毅彬
authored
9 months ago
582
583
584
}
#logIn {
border-color: #ac1e2b;
谭毅彬
authored
7 months ago
585
border-width: 0.1vw;
谭毅彬
authored
9 months ago
586
587
588
589
590
591
border-style: solid;
border-radius: 0.6vw;
width: 85%;
height: 3vw;
line-height: 3vw;
margin-left: 8%;
谭毅彬
authored
8 months ago
592
font-size: 1.2vw;
谭毅彬
authored
9 months ago
593
594
595
596
597
align-items: center;
justify-content: center;
display: flex;
color: #ebf3fd;
background-color: red;
谭毅彬
authored
7 months ago
598
// box-shadow: 1vw 1vw 1vw #c3c3c3;
谭毅彬
authored
9 months ago
599
}
肖超群
authored
11 months ago
600
</style>