Blame view

src/App.vue 2.94 KB
a0ea7efe   梁保满   init
1
  <template>
f45b3c05   LH_PC   云平台新UI界面
2
3
4
5
6
  	<div id="app" ref="app">
  		<transition name="fade" mode="out-in">
  			<router-view></router-view>
  		</transition>
  	</div>
a0ea7efe   梁保满   init
7
8
9
  </template>
  
  <script>
f45b3c05   LH_PC   云平台新UI界面
10
  import _ from "lodash";
a0ea7efe   梁保满   init
11
  export default {
f45b3c05   LH_PC   云平台新UI界面
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  	name: "app",
  	mounted() {
  
  	},
  	created() {
  		this.$nextTick(() => {
  			const $app = this.$refs.app;
  			// 设置 屏幕 百分比 尺寸 适配
  			const standardScale = "100%" / "100%";
  			var minHeight = 1080;
  			window.addEventListener(
  				"resize",
  				_.debounce(function () {
  					const docHeight = document.body.clientHeight;
  					const docWidth = document.body.clientWidth;
  			 
  					if (docWidth < 1700) {
  						const currentScale = docHeight / docWidth;
  						let [scale, translate] = [0, 0];
  						if (currentScale < standardScale) {
  							// 以高度计算
  							scale = docHeight / 1080;
  							const shouleWidth = 1920 * scale;
  
  							const offsetWidth = docWidth - shouleWidth;
  							translate =
  								offsetWidth > 0 ? `translate(${offsetWidth / 2}px, 0)` : "";
  						} else {
  							// 以宽度计算
  							scale = docWidth / 1920;
  							const shouleHeight = 1080 * scale;
  							const offsetHeight = docHeight - shouleHeight;
  							translate =
  								offsetHeight > 0 ? `translate(0, ${offsetHeight / 2}px)` : "";
  						}
  				
  						if (docHeight <= 600) {
  							$app.style.cssText = `
  							transform: scale(${scale}) ${translate};
  							transform-origin: top left;
  							min-width: 1920px;
  							min-height:500px;
            				`;
  						}
  						if (docHeight <= 700) {
  							$app.style.cssText = `
  							transform: scale(${scale}) ${translate};
  							transform-origin: top left;
  							min-width: 1920px;
  							min-height:900px;
            				`;
  						}
  						else if (docHeight <= 750) {
  							$app.style.cssText = `
  							transform: scale(${scale}) ${translate};
  							transform-origin: top left;
  							min-width: 1920px;
  							min-height:920px;
            				`;
  						}
  						else {
  							$app.style.cssText = `
  							transform: scale(${scale}) ${translate};
  							transform-origin: top left;
  							min-width: 1920px;
  							min-height:1080px;
            				`;
  						}
  
  					} else {
  						$app.style.cssText = '';
  					}
  
  				}),
  				300
  			);
  
  			if (document.createEvent) {
  				var event = document.createEvent("HTMLEvents");
  				event.initEvent("resize", true, true);
  				window.dispatchEvent(event);
  			} else if (document.createEventObject) {
  				window.fireEvent("onresize");
  			}
  		});
  	}
a0ea7efe   梁保满   init
98
99
100
101
102
103
104
105
  }
  
  </script>
  
  <style lang="scss">
  body {
  	margin: 0px;
  	padding: 0px;
f45b3c05   LH_PC   云平台新UI界面
106
  	font-family: Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, SimSun, sans-serif;
a0ea7efe   梁保满   init
107
108
109
110
111
112
113
114
115
116
  	font-size: 14px;
  	-webkit-font-smoothing: antialiased;
  }
  
  #app {
  	position: absolute;
  	top: 0px;
  	bottom: 0px;
  	width: 100%;
  }
f45b3c05   LH_PC   云平台新UI界面
117
118
119
  
  a {
  	color: #56a9ff;
a0ea7efe   梁保满   init
120
  }
f45b3c05   LH_PC   云平台新UI界面
121
  
a0ea7efe   梁保满   init
122
123
124
125
126
127
128
129
130
  .fade-enter-active,
  .fade-leave-active {
  	transition: all .2s ease;
  }
  
  .fade-enter,
  .fade-leave-active {
  	opacity: 0;
  }
f45b3c05   LH_PC   云平台新UI界面
131
  
a0ea7efe   梁保满   init
132
  #nprogress .bar {
f45b3c05   LH_PC   云平台新UI界面
133
134
  	height: 3px !important;
  	background: #56a9ff !important; //自定义颜色
a0ea7efe   梁保满   init
135
136
  }
  </style>