This commit is contained in:
re-JZzzz
2025-11-14 19:21:02 +08:00
3 changed files with 145 additions and 5 deletions

View File

@ -11,7 +11,17 @@ import LeftPage from './components/leftPage.vue';
</script>
<style scoped lang="scss">
@import '@/views/ueScreen/gis.scss';
$vm_base: 1920;
$vh_base: 1080;
// 计算vw
@function vw($px) {
@return calc(($px / $vm_base) * 100vw);
}
// 计算vh
@function vh($px) {
@return calc(($px / $vh_base) * 100vh);
}
.ueScreen {
width: 100vw;
height: 100vh;