Files
CompanyProject/金壶/appV1/pages/home/MessageDetails.vue
2024-09-27 01:32:49 +08:00

67 lines
1.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="content">
<HeaderTop :page_title='MessageInfo.description'></HeaderTop>
<view class="padding-30 message">
<h2 class="message__details-title">{{MessageInfo.description}}</h2>
<div class="message__details-time">2019-10-07 08:00 浏览量238.0</div>
<div class="message__details-info">
<p>
梦寐以求的小长假就那么过去了
上班的心情总是那么沉重
上班第一天
刚放完假的你
是不是这样的
不过值得开心的是
晴好天气依旧持续
阳光明媚
气温也似乎变得放飞自我了
预计今天的最高气温会攀升到31左右
</p>
</div>
</view>
</view>
</template>
<script>
export default {
data() {
return {
MessageInfo: {}
}
},
onLoad(option) {
this.MessageInfo = JSON.parse(option.mess_id);
},
methods: {
}
}
</script>
<style lang="less" scoped>
.message {
&__details-title {
font-size: 40rpx;
margin-bottom: 7rpx;
}
&__details-time {
font-size: 24rpx;
color: #999999;
margin-bottom: 30rpx;
}
&__details-info {
font-size: 32rpx;
line-height: 50rpx;
letter-spacing: 0.8rpx;
color: #000000;
.p {
}
img {
}
}
}
</style>