2022-02-15 15:55:09 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="detail">
|
2022-02-15 16:49:49 +08:00
|
|
|
|
<div class="avatar-info">
|
|
|
|
|
|
<div class="avatar-img">
|
|
|
|
|
|
<img src="./img/tx@2x.png" alt="">
|
|
|
|
|
|
<!-- <img src="./img/tx@2x.png" alt=""> -->
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="avatar-title">
|
|
|
|
|
|
<div class="name">雷洋</div>
|
|
|
|
|
|
<div class="time">
|
|
|
|
|
|
<span>美丽庭院</span>
|
|
|
|
|
|
<span>2020-10-28 12:30</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2022-02-15 16:23:27 +08:00
|
|
|
|
</div>
|
2022-02-15 16:49:49 +08:00
|
|
|
|
<div class="textarea">⾦秋穿上⽑⾐,漫步森林,在阳光下呼吸伸展,⾃在安逸的天⼈。也许是兰天名字的由来吧。</div>
|
2022-02-15 15:55:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
2022-02-15 16:23:27 +08:00
|
|
|
|
name: 'detail',
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {},
|
|
|
|
|
|
onShow() {},
|
|
|
|
|
|
onLoad() {},
|
2022-02-15 15:55:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2022-02-15 16:23:27 +08:00
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.detail {
|
2022-02-15 16:49:49 +08:00
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
|
padding: 30px 32px;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
|
|
.avatar-info {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
.avatar-img {
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
img {
|
|
|
|
|
|
width: 88px;
|
|
|
|
|
|
height: 88px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.avatar-title {
|
|
|
|
|
|
.name {
|
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
|
color: #333333;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.time {
|
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.textarea {
|
|
|
|
|
|
font-style: 32px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-02-15 15:55:09 +08:00
|
|
|
|
|
2022-02-15 16:23:27 +08:00
|
|
|
|
}
|
2022-02-15 15:55:09 +08:00
|
|
|
|
</style>
|