20 lines
326 B
Vue
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> |