pet/pages/adoption/adoption.vue

42 lines
593 B
Vue

<template>
<view class="container">
<view class="header">
<text class="title">领养专区</text>
</view>
<view class="content">
<text class="desc">宠物领养信息发布与浏览</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {}
}
}
</script>
<style lang="scss" scoped>
.container {
padding: 20rpx;
background-color: #f8f9fa;
min-height: 100vh;
}
.header {
padding: 20rpx 0;
.title {
font-size: 36rpx;
font-weight: bold;
color: #333;
}
}
.content {
padding: 40rpx 0;
.desc {
font-size: 28rpx;
color: #666;
}
}
</style>