57 lines
988 B
Vue
57 lines
988 B
Vue
<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> |