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