Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-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
290714ba
authored
2022-08-17 17:38:17 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:弹框组件修改
1 parent
8daad855
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
src/components/dialogBox/dialogBox.scss
src/components/dialogBox/dialogBox.vue
src/views/system/sqywgz/components/editDialog.vue
src/components/dialogBox/dialogBox.scss
View file @
290714b
...
...
@@ -52,12 +52,19 @@
position
:
absolute
;
top
:
50%
;
left
:
50%
;
transform
:
translate
(
calc
(
-50%
+
85px
)
,
-50%
)
!
important
;
transform
:
translate
(
calc
(
-50%
+
85px
)
,
-50%
);
}
.mainCenter
{
position
:
absolute
;
top
:
50%
;
left
:
50%
;
transform
:
translate
(
-50%
,
-50%
);
}
.is-fullscreen
{
position
:
absolute
;
top
:
50%
;
left
:
50%
;
transform
:
translate
(
-50%
,
-50%
)
!
important
;
}
\ No newline at end of file
...
...
src/components/dialogBox/dialogBox.vue
View file @
290714b
...
...
@@ -75,7 +75,7 @@ export default {
}
},
methods
:
{
handleFullscreen
()
{
handleFullscreen
(
val
)
{
this
.
fullscreen
=
!
this
.
fullscreen
let
height
=
document
.
getElementById
(
'dialogBox'
).
clientHeight
if
(
!
this
.
fullscreen
)
{
...
...
src/views/system/sqywgz/components/editDialog.vue
View file @
290714b
<
template
>
<dialogBox
title=
"申请业务规则配置"
@
submitForm=
"submitForm"
@
closeDialog=
"closeDialog"
v-model=
"value"
>
<dialogBox
title=
"申请业务规则配置"
@
submitForm=
"submitForm"
isMain
@
closeDialog=
"closeDialog"
v-model=
"value"
>
<div
class=
"sqywgz-edit"
>
<ul
class=
"sqywgz-edit-left"
>
<li
v-for=
"(item, index) in leftList"
:key=
"index"
:class=
"
{ active: index == n }" @click="hanldeItem(index)">
{{
...
...
Please
register
or
sign in
to post a comment