|
|
@@ -1673,9 +1673,15 @@ export default {
|
|
|
console.log("this.marginTop > 38",containerStyle.marginTop)
|
|
|
}else {
|
|
|
if(window.devicePixelRatio < 1) {
|
|
|
- containerStyle = {
|
|
|
- marginTop: (this.marginTop + 10 - 14) + 'px',
|
|
|
- };
|
|
|
+ if(this.marginTop > 18) {
|
|
|
+ containerStyle = {
|
|
|
+ marginTop: (this.marginTop + 10 - 14) + 'px',
|
|
|
+ };
|
|
|
+ }else {
|
|
|
+ containerStyle = {
|
|
|
+ marginTop: (this.marginTop + 10 - 28) + 'px',
|
|
|
+ };
|
|
|
+ }
|
|
|
}else {
|
|
|
containerStyle = {
|
|
|
marginTop: (this.marginTop + 10) + 'px',
|