Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7a4fbc30
authored
2023-03-21 09:30:58 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:样式整理
1 parent
5a33c89e
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
94 additions
and
13 deletions
src/components/Breadcrumb.vue
src/components/Dialog/index.vue
src/layout1/components/AppMain.vue
src/layout1/index.vue
src/styles/sbPublic.scss
src/styles/sbSidebar.scss
src/utils/asyncRouter.js
src/utils/theme.js
src/components/Breadcrumb.vue
View file @
7a4fbc3
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-20 16:36:51
-->
<
template
>
<el-breadcrumb
class=
"breadcrumb"
separator-class=
"el-icon-arrow-right"
>
<span
class=
"fl"
>
当前页面:
</span>
...
...
@@ -52,8 +57,4 @@ export default {
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
</
script
>
\ No newline at end of file
...
...
src/components/Dialog/index.vue
View file @
7a4fbc3
...
...
@@ -144,7 +144,6 @@ export default {
}
.el-form-item__content
{
//
height
:
32px
;
line-height
:
32px
;
//
date
组件有图标
...
...
src/layout1/components/AppMain.vue
View file @
7a4fbc3
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-20 16:35:09
-->
<
template
>
<section
class=
"app-main"
>
<transition
name=
"fade-transform"
mode=
"out-in"
>
...
...
@@ -17,11 +22,12 @@ export default {
</
script
>
<
style
lang=
"scss"
scoped
>
.app-main
{
height
:
calc
(
100vh
-
8
4px
);
height
:
calc
(
100vh
-
7
4px
);
overflow-x
:
hidden
;
box-sizing
:
border-box
;
flex
:
1
;
width
:
100%
;
//
background-color
:
#ffffff
;
background
:
#EFF0F4
;
padding
:
15px
;
}
</
style
>
...
...
src/layout1/index.vue
View file @
7a4fbc3
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-
10 15:00:56
* @LastEditTime: 2023-03-
20 16:05:15
-->
<
template
>
<div
class=
"app-wrapper
scWrapper
"
>
<div
class=
"app-wrapper"
>
<navbar
/>
<div
class=
"main-container"
>
<sidebar
class=
"sidebar-container"
/>
...
...
src/styles/sbPublic.scss
0 → 100644
View file @
7a4fbc3
@import
'~@/styles/element-ui.scss'
;
.from-clues
{
height
:
100%
;
width
:
100%
;
min-width
:
1280px
;
box-sizing
:
border-box
;
overflow-x
:
hidden
;
padding
:
2px
;
&
-header
{
width
:
100%
;
padding
:
5px
30px
20px
24px
;
box-sizing
:
border-box
;
background-size
:
100%
100%
;
background
:
#FFFFFF
;
border-radius
:
4px
;
}
&
-content
{
width
:
100%
;
box-sizing
:
border-box
;
margin-top
:
15px
;
background
:
#FFFFFF
;
border-radius
:
4px
;
background-size
:
100%
100%
;
padding
:
22px
42px
20px
;
}
.el-form--inline
.el-form-item
{
width
:
auto
;
margin-right
:
0px
;
.el-form-item__content
{
width
:
auto
;
}
}
.el-form-item--small.el-form-item
{
margin-bottom
:
0px
;
}
}
/* --------------进度条美化---------------- */
::-webkit-scrollbar
{
width
:
7px
;
height
:
7px
;
}
::-webkit-scrollbar-track
{
width
:
7px
;
background-color
:
rgba
(
255
,
255
,
255
,
0
);
-webkit-border-radius
:
6px
;
-moz-border-radius
:
6px
;
border-radius
:
6px
;
}
::-webkit-scrollbar-thumb
{
background-color
:
rgb
(
207
,
208
,
209
);
background-clip
:
padding-box
;
min-height
:
28px
;
-webkit-border-radius
:
6px
;
-moz-border-radius
:
6px
;
border-radius
:
6px
;
}
::-webkit-scrollbar-thumb:hover
{
background-color
:
rgb
(
162
,
164
,
167
);
}
\ No newline at end of file
src/styles/sbSidebar.scss
View file @
7a4fbc3
...
...
@@ -7,11 +7,14 @@
display
:
flex
;
}
.el-form-item__content
{
margin-left
:
0
!
important
;
}
.sidebar-container
{
transition
:
width
0
.28s
;
width
:
$sideBarWidth
!
important
;
font-size
:
0px
;
margin-right
:
15px
;
@include
background_color
(
"menuBg"
);
.horizontal-collapse-transition
{
...
...
src/utils/asyncRouter.js
View file @
7a4fbc3
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-2
0 15:12:38
* @LastEditTime: 2023-03-2
1 09:27:26
*/
import
Layout
from
'@/layout'
export
default
function
filterAsyncRouter
(
routers
)
{
...
...
src/utils/theme.js
View file @
7a4fbc3
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-20 1
4:50:19
* @LastEditTime: 2023-03-20 1
6:53:52
*/
import
Vue
from
'vue'
export
default
function
getTheme
(
theme
=
Vue
.
prototype
.
BASE_API
.
THEME
)
{
...
...
@@ -10,6 +10,7 @@ export default function getTheme (theme = Vue.prototype.BASE_API.THEME) {
import
(
"@/styles/jgPublic.scss"
)
},
'sjsb'
:
function
()
{
import
(
"@/styles/sbPublic.scss"
)
},
default
:
function
()
{
},
...
...
Please
register
or
sign in
to post a comment