|
@@ -428,7 +428,7 @@ export default {
|
|
|
styleObjScreen: {
|
|
|
isShow: true,
|
|
|
width: '100%',
|
|
|
- height: '720px',
|
|
|
+ height: `${window.innerHeight*0.8}px`,
|
|
|
maxWidth: '1920px',
|
|
|
marginLeft: '0px',
|
|
|
marginTop: '0px',
|
|
@@ -833,9 +833,9 @@ export default {
|
|
|
this.current = ''
|
|
|
|
|
|
this.fullscreen = '0'
|
|
|
- this.cssheightL = '660'
|
|
|
+ this.cssheightL = `${window.innerHeight*0.8-60}`
|
|
|
this.$store.state.cssvalue = '1'
|
|
|
- this.$store.state.optionViewHeight= 660
|
|
|
+ this.$store.state.optionViewHeight= window.innerHeight*0.8-60
|
|
|
this.$emit('styleObjScreen', this.styleObjScreen)
|
|
|
} else if (e === 'screen') {
|
|
|
this.aspectRatio = 'default'
|
|
@@ -1003,7 +1003,7 @@ export default {
|
|
|
this.current = ''
|
|
|
|
|
|
this.fullscreen = '0'
|
|
|
- this.cssheightL = '660'
|
|
|
+ this.cssheightL = `${window.innerHeight*0.8-60}`
|
|
|
this.$store.state.cssvalue = '1'
|
|
|
this.$emit('styleObjScreen', this.styleObjScreen)
|
|
|
}
|
|
@@ -1217,8 +1217,8 @@ export default {
|
|
|
this.cssheightL = '240'
|
|
|
;(this.$store.state.optionViewHeight = 240), (this.poptipStyle = 'poptipStyleWidth poptipTop')
|
|
|
} else {
|
|
|
- this.cssheightL = '660'
|
|
|
- this.$store.state.optionViewHeight = 660
|
|
|
+ this.cssheightL = `${window.innerHeight*0.8-60}`
|
|
|
+ this.$store.state.optionViewHeight = window.innerHeight*0.8-60
|
|
|
this.poptipStyle = 'poptipStyleWidth poptipBottom'
|
|
|
}
|
|
|
},
|