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
0e497cc3
authored
2021-01-27 16:53:16 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
处理浏览器兼容问题
1 parent
0f2f22e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
src/views/panel/add/index.vue
src/views/panel/modify/index.vue
src/views/panel/add/index.vue
View file @
0e497cc
...
...
@@ -89,7 +89,7 @@
this
.
queryData
.
pageSize
=
this
.
pageSize
this
.
getData
(
this
.
queryData
);
this
.
$nextTick
(()
=>
{
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
this
.
tableHeight
=
(
document
.
documentElement
.
clientHeight
||
document
.
body
.
clientHeight
)
-
332
;
});
},
methods
:
{
...
...
src/views/panel/modify/index.vue
View file @
0e497cc
...
...
@@ -98,7 +98,7 @@
this
.
queryData
.
pageSize
=
this
.
pageSize
this
.
getData
(
this
.
queryData
)
this
.
$nextTick
(()
=>
{
this
.
tableHeight
=
this
.
$refs
.
dataGrid
.
offsetHeight
-
68
;
this
.
tableHeight
=
(
document
.
documentElement
.
clientHeight
||
document
.
body
.
clientHeight
)
-
332
;
});
},
methods
:
{
...
...
Please
register
or
sign in
to post a comment