Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
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
f6333e41
authored
2020-11-24 14:56:45 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
更正和添加页面样式修改,报错问题解决
1 parent
07b87cf8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
11 deletions
src/views/panel/add/index.vue
src/views/panel/modify/index.vue
src/views/panel/add/index.vue
View file @
f6333e4
...
...
@@ -69,7 +69,7 @@
type
:
[],
},
tableData
:
[],
tableHeight
:
""
,
tableHeight
:
0
,
};
},
created
()
{
...
...
@@ -79,9 +79,9 @@
pageNo
:
this
.
pageNo
,
pageSize
:
this
.
pageSize
,
})
this
.
$nextTick
(()
=>
{
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
})
this
.
$nextTick
(()
=>
{
this
.
tableHeight
=
(
document
.
documentElement
.
clientHeight
||
document
.
body
.
clientHeight
)
-
255
;
});
},
methods
:
{
handleCurrentChange
(
val
)
{
...
...
@@ -150,7 +150,7 @@
padding
:
0
18px
;
display
:
flex
;
flex-direction
:
column
;
background-color
:
#
fcfdff
;
background-color
:
#
EAEDF5
;
.demo-form-inline
{
margin-top
:
18px
;
.moreSearchBtn
{
...
...
src/views/panel/modify/index.vue
View file @
f6333e4
...
...
@@ -71,16 +71,16 @@
},
queryData
:
{},
tableData
:
[],
tableHeight
:
""
,
tableHeight
:
0
,
};
},
created
()
{
},
mounted
()
{
this
.
getData
({})
this
.
$nextTick
(()
=>
{
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
})
this
.
$nextTick
(()
=>
{
this
.
tableHeight
=
(
document
.
documentElement
.
clientHeight
||
document
.
body
.
clientHeight
)
-
255
;
});
},
methods
:
{
handleCurrentChange
(
val
)
{
...
...
@@ -168,7 +168,7 @@
padding
:
0
18px
;
display
:
flex
;
flex-direction
:
column
;
background-color
:
#
fcfdff
;
background-color
:
#
EAEDF5
;
.demo-form-inline
{
margin-top
:
18px
;
.moreSearchBtn
{
...
...
@@ -182,7 +182,6 @@
}
.dataGrid
{
flex
:
1
;
margin-top
:
20px
;
.pagination
{
padding
:
18px
0
;
}
...
...
Please
register
or
sign in
to post a comment