|
@@ -1667,9 +1667,17 @@ export default {
|
|
|
marginTop: '476px'
|
|
|
};
|
|
|
if(this.marginTop > 38) {
|
|
|
- containerStyle = {
|
|
|
- marginTop: (this.marginTop + 15) + 'px',
|
|
|
- };
|
|
|
+ if(this.marginTop < 58) {
|
|
|
+ containerStyle = {
|
|
|
+ marginTop: (this.marginTop + 15) + 'px',
|
|
|
+ };
|
|
|
+ }else {
|
|
|
+ if(window.devicePixelRatio < 1) {
|
|
|
+ containerStyle = {
|
|
|
+ marginTop: (this.marginTop + 5) + 'px',
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
console.log("this.marginTop > 38",containerStyle.marginTop)
|
|
|
}else {
|
|
|
if(window.devicePixelRatio < 1) {
|