[update 飞书跳转移动端] 临时增加移动端页面

This commit is contained in:
danshihao
2024-08-08 16:28:11 +08:00
parent bb5ecb6f27
commit 367c1bd1b7
5 changed files with 74 additions and 2 deletions
+37
View File
@@ -0,0 +1,37 @@
<template>
<div class="mobile-empty">
<div class="box"><img :src="require('@/assets/image/notMobile.png')" alt=''></div>
</div>
</template>
<script>
export default {
name: 'MobileApp.vue'
}
</script>
<style lang="less" scoped>
.mobile-empty {
position: relative;
height: 100vh;
overflow: hidden;
.box {
position: absolute;
top: 50%;
transform: translateY(-50%);
height: 500px;
width: 100%;
overflow: hidden;
img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
}
}
</style>