| | |
| | | <div class="font-52 font-700 textColor">{{ title }}</div> |
| | | <p class="mt-20 text-grey font-24">{{ createTimeStr }}</p> |
| | | <div style="white-space:pre-wrap;" class="mt-32 text-cont textColor" v-html="content"></div> |
| | | <img style="width: 100%; " :src="imgUrl"></img> |
| | | </div> |
| | | </div> |
| | | </template> |
| | |
| | | return { |
| | | title: '', |
| | | createTimeStr: '', |
| | | content: '' |
| | | content: '', |
| | | imgUrl:'' |
| | | } |
| | | }, |
| | | mounted() { |
| | |
| | | this.title = res.data.title; |
| | | this.createTimeStr = dataTimeEx(res.data.startTime) |
| | | this.content = res.data.content |
| | | this.imgUrl = res.data.imgUrl |
| | | }) |
| | | } |
| | | } |