Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DC-TOM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘照晖
DC-TOM
Commits
6e727fa0
Commit
6e727fa0
authored
Jul 02, 2025
by
Cai Wei
Browse files
Options
Browse Files
Download
Plain Diff
fix(*): 合并冲突
parents
5a77e1a8
82c897f5
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1587 additions
and
62 deletions
+1587
-62
package-lock.json
package-lock.json
+1448
-1
bg.png
src/assets/bg.png
+0
-0
index.vue
src/layout/index.vue
+77
-46
style.css
src/style.css
+33
-2
index.vue
src/views/login/index.vue
+29
-13
No files found.
package-lock.json
View file @
6e727fa0
This diff is collapsed.
Click to expand it.
src/assets/bg.png
0 → 100644
View file @
6e727fa0
This diff is collapsed.
Click to expand it.
src/layout/index.vue
View file @
6e727fa0
This diff is collapsed.
Click to expand it.
src/style.css
View file @
6e727fa0
...
...
@@ -40,6 +40,17 @@
box-shadow
:
0px
3px
6px
0px
rgba
(
13
,
15
,
18
,
0.1
);
padding
:
1rem
;
box-sizing
:
border-box
;
padding
:
0
;
margin
:
0
;
}
.page-container
{
width
:
100%
;
background
:
#ffffff
;
border-radius
:
6px
;
box-shadow
:
0px
3px
6px
0px
rgba
(
13
,
15
,
18
,
0.10
);
padding
:
1rem
;
box-sizing
:
border-box
;
}
.view-btn
{
...
...
@@ -51,6 +62,26 @@
}
.el-button--primary
{
background-color
:
#2182a0
!important
;
border-color
:
#2182a0
!important
;
background-color
:
#2182a0
!important
;
border-color
:
#2182a0
!important
;
}
.login-container
.el-form-item
{
background
:
transparent
!important
;
border
:
unset
!important
;
}
.login-container
.el-input__wrapper
{
background
:
#181d21
!important
;
border-radius
:
0
!important
;
}
input
:-webkit-autofill
,
textarea
:-webkit-autofill
,
select
:-webkit-autofill
{
-webkit-text-fill-color
:
black
!important
;
-webkit-box-shadow
:
0
0
0px
1000px
transparent
inset
!important
;
background-color
:
transparent
;
background-image
:
none
;
transition
:
background-color
50000s
ease-in-out
0s
;
}
\ No newline at end of file
src/views/login/index.vue
View file @
6e727fa0
...
...
@@ -28,7 +28,7 @@
tabindex=
"1"
@
blur=
"handleAccountBlur($event)"
@
input=
"debounceAction"
autocomplete=
"o
n
"
autocomplete=
"o
ff
"
/>
</el-form-item>
</div>
...
...
@@ -46,6 +46,7 @@
show-password
placeholder=
"密码 / Password"
tabindex=
"1"
autocomplete=
"off"
/>
</el-form-item>
</el-tooltip>
...
...
@@ -1164,8 +1165,10 @@ $light_gray: #eee;
.login-container
{
min-height
:
100vh
;
width
:
100%
;
background-image
:
url("../../assets/bg.jpg")
;
background-size
:
cover
;
background
:
url("../../assets/bg.png")
no-repeat
;
background-size
:
100%
500px
;
background-position
:
calc
(
50%
-
640px
)
center
;
background-color
:
#000
;
overflow
:
hidden
;
.login-container-title
{
...
...
@@ -1173,30 +1176,38 @@ $light_gray: #eee;
.title
{
font-size
:
38px
;
color
:
#fff
;
text-align
:
right
;
padding-right
:
4%
;
}
}
.login-old
{
width
:
457px
;
height
:
500px
;
background
:
rgba
(
255
,
255
,
255
,
1
);
box-shadow
:
0px
15px
30px
0px
rgba
(
0
,
85
,
183
,
0
.15
);
// background: rgba(255, 255, 255, 1);
background
:
#191c21
;
box-shadow
:
0px
15px
30px
0px
rgba
(
255
,
255
,
255
,
0
.2
);
padding
:
40px
;
position
:
absolute
;
right
:
10%
;
top
:
15%
;
// transform: translateY(-50%);
border-radius
:
20px
;
right
:
4%
;
top
:
calc
(
50%
-
250px
);
border-radius
:
4px
;
.el-checkbox-group
label
{
margin-top
:
20px
;
}
button
{
width
:
100%
;
margin-top
:
40px
;
background
:
#2182a0
;
background
:
#181d21
!
important
;
color
:
#36f1cd
!
important
;
border
:
1px
solid
#2a2a2a
!
important
;
height
:
40px
;
transition
:
border
0
.5s
ease
;
}
button
:hover
{
border
:
1px
solid
rgba
(
54
,
241
,
205
,
0
.7
)
!
important
;
}
img
{
...
...
@@ -1220,6 +1231,11 @@ $light_gray: #eee;
.el-checkbox-group
label
{
margin-top
:
20px
;
}
.el-form-item
{
border-bottom
:
0
!
important
;
background
:
transparent
!
important
;
}
.login-btn
{
width
:
100%
;
...
...
@@ -1268,11 +1284,11 @@ $light_gray: #eee;
.title
{
font-size
:
26px
;
display
:
inline-block
;
color
:
#
2182a0
;
color
:
#
36f1cd
;
}
span
{
color
:
#
d4d4d4
;
color
:
#
29ad93
;
margin-left
:
10px
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment