Files
YGChatCS/pages/chat/ChatTopBgImg.vue
2025-06-29 23:41:37 +08:00

20 lines
326 B
Vue

<template>
<view class="top-bg">
<image src="/static/top_bg_icon.png" mode="aspectFit" class="top-bg-img"></image>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.top-bg {
width: 100%;
height: 270px;
overflow: hidden;
.top-bg-img {
width: 100%;
height: 100%;
}
}
</style>