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
960eeae7
authored
2023-01-13 17:42:49 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:弹框样式修改
1 parent
19720eaa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
src/components/Popup/index.vue
src/styles/dialogBox.scss
src/components/Popup/index.vue
View file @
960eeae
<
template
>
<transition
name=
"msgbox-fade"
v-if=
"myShow"
>
<div
class=
"ls-mask"
v-loading=
"loading"
>
<div
class=
"ls-mask-window"
:style=
"
{ 'width': width }">
<div
class=
"ls-mask-window
dialogBox
"
:style=
"
{ 'width': width }">
<div
class=
"ls-head"
>
<div
class=
"ls-title"
:style=
"
{ 'text-align': titleStyle }">
<svg-icon
v-if=
"iconClass != ''"
:icon-class=
'iconClass'
/>
...
...
@@ -105,6 +105,9 @@ export default {
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
@import
"~@/styles/dialogBox.scss"
;
.ls-mask
{
width
:
100%
;
height
:
100%
;
...
...
@@ -138,7 +141,7 @@ export default {
.ls-title
{
padding
:
10px
;
color
:
#ffffff
;
background
:
linear-gradient
(
90deg
,
#1D66DC
0%
,
#081B56
100%
);
//
background
:
linear-gradient
(
90deg
,
#1D66DC
0%
,
#081B56
100%
);
font-size
:
16px
;
}
...
...
src/styles/dialogBox.scss
View file @
960eeae
.dialogBox
{
overflow
:
hidden
;
background
:
url("~@/image/dialogBg.png")
no-repeat
;
background-size
:
100%
100%
;
background
:
url("~@/image/dialogBg.png")
no-repeat
!
important
;
background-size
:
100%
100%
!
important
;
.dialog_title
{
display
:
flex
;
...
...
Please
register
or
sign in
to post a comment