Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
9
91isoft_web_vue
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
张伯涛
91isoft_web_vue
Commits
a0534f8a
Commit
a0534f8a
authored
May 27, 2024
by
张伯涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
样式调整
parent
460e98db
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
47 additions
and
27 deletions
+47
-27
common.scss
src/styles/themeG/common.scss
+35
-0
login.scss
src/styles/themeG/login.scss
+3
-13
login.vue
src/views/login/login.vue
+0
-5
index.vue
src/views/monitor/errorLog/index.vue
+1
-1
index.vue
src/views/monitor/loginInfo/index.vue
+1
-1
index.vue
src/views/monitor/operLog/index.vue
+1
-1
index.vue
src/views/system/dept/index.vue
+1
-1
data.vue
src/views/system/dict/data.vue
+1
-1
index.vue
src/views/system/dict/index.vue
+1
-1
index.vue
src/views/system/menu/index.vue
+1
-1
index.vue
src/views/system/role/index.vue
+1
-1
index.vue
src/views/system/user/index.vue
+1
-1
No files found.
src/styles/themeG/common.scss
View file @
a0534f8a
...
...
@@ -16,6 +16,8 @@
padding
:
12px
10px
;
}
.search
{
border-bottom
:
14px
solid
#FAFAFB
;
background-color
:
#FAFAFB
;
.el-form-item
{
.el-form-item__label
{
font-family
:
PingFangSC
,
PingFang
SC
;
...
...
@@ -200,3 +202,36 @@
text-align
:
LEFT
;
color
:
#44444F
;
}
.navbar
{
background-color
:
#FAFAFB
!
important
;
}
.app-main
{
background-color
:
#FAFAFB
!
important
;
}
.nav-container-two
{
background-color
:
#FAFAFB
!
important
;
.placeholder
{
background-color
:
#FAFAFB
!
important
;
}
}
.tags-view-container
{
background-color
:
#FAFAFB
!
important
;
}
.tags-view-container
.tags-view-wrapper
.tags-view-item
{
border-radius
:
16px
!
important
;
border
:
1px
solid
#E2E2EA
!
important
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
!
important
;
font-size
:
14px
!
important
;
color
:
#696974
!
important
;
background
:
#FAFAFB
!
important
;
}
.tags-view-container
.tags-view-wrapper
.tags-view-item.active
{
border-radius
:
16px
!
important
;
border
:
1px
solid
#E2E2EA
!
important
;
font-family
:
PingFangSC
,
PingFang
SC
;
font-weight
:
400
!
important
;
font-size
:
14px
!
important
;
color
:
#696974
!
important
;
background
:
#F1F1F5
!
important
;
}
src/styles/themeG/login.scss
View file @
a0534f8a
...
...
@@ -53,6 +53,9 @@
color
:
#FFFFFF
;
}
}
.loginBtn_formItem
{
margin-top
:
20px
;
}
.login-form
{
width
:
360px
;
height
:
405px
;
...
...
@@ -100,19 +103,6 @@
background
:
#0062FF
;
border-radius
:
10px
;
}
.readMe_Father
{
margin
:
5px
0
20px
;
.readMe
{
height
:
40px
;
font-family
:
Roboto
,
Roboto
;
font-weight
:
400
;
font-size
:
12px
;
color
:
#92929D
;
line-height
:
20px
;
text-align
:
center
;
font-style
:
normal
;
}
}
}
.el-input
{
height
:
38px
;
...
...
src/views/login/login.vue
View file @
a0534f8a
...
...
@@ -90,11 +90,6 @@
</div>
</div>
</el-form-item>
<div
class=
"readMe_Father"
>
<div
class=
"readMe"
>
{{
'By signing up, you confirm that you’ve read and accepted our User Notice and Privacy Policy.'
}}
</div>
</div>
<el-form-item
class=
"loginBtn_formItem"
>
<el-button
class=
"blue-btn"
...
...
src/views/monitor/errorLog/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"errLog-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
label-width=
"auto"
>
<el-form-item
label=
"系统模块"
prop=
"title"
>
<el-input
...
...
src/views/monitor/loginInfo/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"loginInfo-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
v-show=
"showSearch"
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
label-width=
"auto"
>
<el-form-item
label=
"用户名称"
prop=
"userName"
>
<el-input
...
...
src/views/monitor/operLog/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"operlog-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
label-width=
"auto"
>
<el-form-item
label=
"系统模块"
prop=
"title"
>
<el-input
...
...
src/views/system/dept/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"dept-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
v-show=
"showSearch"
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"部门名称"
prop=
"deptName"
>
<el-input
...
...
src/views/system/dict/data.vue
View file @
a0534f8a
<
template
>
<div
class=
"dictData-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
v-show=
"showSearch"
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"字典名称"
prop=
"dictType"
>
<el-select
disabled
v-model=
"queryParams.dictType"
placeholder=
"请选择字典名称"
clearable
size=
"small"
>
...
...
src/views/system/dict/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"dict-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
label-width=
"auto"
>
<el-form-item
label=
"字典名称"
prop=
"dictName"
>
<el-input
...
...
src/views/system/menu/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"menu-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
style=
"padding: 0 0 0 10px"
:inline=
"true"
>
<el-form-item
label=
"菜单名称"
>
<el-input
...
...
src/views/system/role/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"role-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"角色名称"
prop=
"roleName"
>
<el-input
...
...
src/views/system/user/index.vue
View file @
a0534f8a
<
template
>
<div
class=
"user-manage"
>
<div
class=
"search"
style=
"border-bottom: 14px solid #f4f4f4"
>
<div
class=
"search"
>
<el-form
v-show=
"showSearch"
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
class=
"formClass"
:model=
"queryParams"
:inline=
"true"
label-width=
"auto"
>
<el-form-item
label=
"登录名"
prop=
"username"
>
<el-input
...
...
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