乡村相册

This commit is contained in:
yanran200730
2022-03-08 10:35:29 +08:00
parent 3614753f22
commit 840d6aefb4
30 changed files with 946 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
<template>
<div class="message">
<div class="message-item" v-for="(item, index) in 10" :key="index">
<h2>2022-2-14 10:02</h2>
<div>您于2月13日发布的打卡相册的照片已被XXX查看</div>
</div>
</div>
</template>
<script>
export default {
name: 'Message',
appName: '乡村相册',
data () {
return {
}
},
onLoad () {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.message {
padding-bottom: 60px;
.message-item {
h2 {
padding: 48px 0 32px;
color: #666666;
font-size: 32px;
font-weight: normal;
text-align: center;
}
div {
margin: 0 32px;
padding: 32px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.02);
font-size: 32px;
color: #333333;
line-height: 44px;
text-align: justify;
border-radius: 16px;
background: #fff;
}
}
}
</style>