职站学生端小程序版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
440 B

4 months ago
<template>
<view class="page">
<image class="pic" src="https://eduvessel.com/images/occupationlab/customer.png" mode="" show-menu-by-longpress></image>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onShow() {
},
methods: {
}
}
</script>
<style scoped lang="scss">
.page {
height: 100vh;
overflow: hidden;
}
.pic {
width: 100vw;
height: 100vh;
object-fit: cover;
}
</style>