Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
data-table
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2022-11-29 21:18:35 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2dd869839301d93ac4e39b5ba86707eb4ed67d73
2dd86983
1 parent
bcd62b7e
fix
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
src/components/IdentityField/index.vue
src/components/NumberField/index.vue
src/components/PhoneField/index.vue
src/components/IdentityField/index.vue
View file @
2dd8698
...
...
@@ -53,7 +53,7 @@ const openKeyboard = (e) => {
document.getElementById("app").style.paddingBottom = "244px";
window.scrollTo(0, $("#app").height());
} else {
document.documentElement.scrollTop =
400
;
document.documentElement.scrollTop =
target_top + 244
;
}
};
const blurKeyboard = () => {
...
...
src/components/NumberField/index.vue
View file @
2dd8698
...
...
@@ -65,7 +65,7 @@ const showKeyboard = (e) => {
if (target_top < 244) {
window.scrollTo(0, $("#app").height());
} else {
document.documentElement.scrollTop =
400
;
document.documentElement.scrollTop =
target_top + 244
;
}
};
const blurKeyboard = () => {
...
...
src/components/PhoneField/index.vue
View file @
2dd8698
...
...
@@ -75,7 +75,7 @@ const openKeyboard = (e) => {
document.getElementById("app").style.paddingBottom = "244px";
window.scrollTo(0, $("#app").height());
} else {
document.documentElement.scrollTop =
400
;
document.documentElement.scrollTop =
target_top + 244
;
}
};
const blurKeyboard = () => {
...
...
Please
register
or
login
to post a comment