shortPlay-mini/pages/notice/info/info.vue

38 lines
569 B
Vue
Raw Permalink Normal View History

2024-03-29 10:16:19 +08:00
<template>
<view class="p-20" v-if="info">
<view class="create-time">发布时间{{info.updateTime}}</view>
<view class="content">{{info.detail}}</view>
</view>
</template>
<script>
export default {
data() {
return {
info: null
}
},
onLoad(option) {
this.info = JSON.parse(option.item)
uni.setNavigationBarTitle({
title: this.info.title
})
},
methods: {
}
}
</script>
<style scoped>
.create-time {
font-size: 25upx;
color: #666;
text-align: right;
}
.content {
font-size: 23upx;
color: #666;
}
</style>