mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
no message
This commit is contained in:
parent
b03fb9f1de
commit
5e6a62376a
@ -405,6 +405,7 @@ export default {
|
|||||||
],
|
],
|
||||||
|
|
||||||
viewportHeight: 0,
|
viewportHeight: 0,
|
||||||
|
iOSDevices: $A.isIos(),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -569,9 +570,9 @@ export default {
|
|||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
|
|
||||||
chatInputBoxStyle({fullInput, viewportHeight}) {
|
chatInputBoxStyle({iOSDevices, fullInput, viewportHeight}) {
|
||||||
const style = {}
|
const style = {}
|
||||||
if (fullInput && viewportHeight > 0) {
|
if (iOSDevices && fullInput && viewportHeight > 0) {
|
||||||
style.height = Math.max(100, viewportHeight - 70) + 'px'
|
style.height = Math.max(100, viewportHeight - 70) + 'px'
|
||||||
}
|
}
|
||||||
return style
|
return style
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user