You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
2.7 KiB

2 years ago
<template>
<view class="content">
<view class='contop'>
<view class='title'>{{info.name?info.name:''}}</view>
2 years ago
<view class='time'><span>时间{{info.release_time?cancelTime(info.release_time):''}}</span><span>来源{{info.source?info.source:''}}</span></view>
<!-- <view class='head'>
2 years ago
<img :src="info.head_upload.url" alt="">
2 years ago
</view> -->
2 years ago
</view>
2 years ago
<!-- <view class='bg40'></view> -->
2 years ago
<view class='detail'>
2 years ago
<u-parse v-if="showContent" :content="info.content?info.content:' '"/>
2 years ago
</view>
</view>
</template>
<script>
import uParse from '@/components/gaoyia-parse/parse.vue'
export default {
components: {
uParse
},
data() {
return {
info: {},
2 years ago
id: '',
showContent:false,
2 years ago
guidance_unit_list: [],
sponsor_list: [],
bear_unit_list: []
}
},
onLoad(options) {
this.id = options.id ? options.id : ''
this.loadDetail()
},
2 years ago
methods: {
cancelTime(val){
return val.substring(0,10)
},
2 years ago
loadDetail() {
var that = this;
this.util.request({
api: '/api/mobile/cultural-relic/show',
data: {
id: that.id
},
utilSuccess: function(res) {
2 years ago
that.info = res
const host = that.util.HOST
console.log(host)
that.info.content = that.util.replaceImgUrl(that.info.content,'../storage/files',`${host}/storage/files`)
that.showContent = true
2 years ago
},
utilFail: function(res) {
}
})
}
}
}
</script>
<style>
@import url("/components/gaoyia-parse/parse.css");
2 years ago
.content {
background-color: #fbf3ea;
/* padding-bottom:180rpx */
}
2 years ago
.contop{
padding:0 30rpx;
2 years ago
padding-bottom: 30rpx;
/* border-radius: 0 0 30rpx 30rpx; */
background: #fff;
}
.title {
text-align: center;
padding: 30rpx 0rpx;
font-size: 32rpx;
2 years ago
font-size: 36rpx;
font-weight:bold;
2 years ago
}
.time {
text-align: center;
color: #6e6e6e;
font-size: 28rpx;
padding-bottom: 30rpx;
border-bottom: 1px solid #fafaf9;
}
.time span {
margin: 0 10rpx;
}
2 years ago
.head {
margin:30rpx 0;
2 years ago
margin-bottom:0;
}
.head img {
width: 100%
}
.head_unit{
background-color: #fcf8f3;
border:8rpx solid #f8ebdb;
border-radius: 20rpx;
padding:35rpx;
margin:30rpx 0;
margin-bottom:0;
}
.head_unit>view{
display: flex;
}
.head_unit>view>view:first-child{
width:28%;
}
.head_unit>view>view:last-child{
width:72%;
}
.head_unit>view>view:last-child view{
margin-bottom: 20rpx;
2 years ago
}
.bg40{
width:100%;
height:40rpx;
background-color: #fbf3ea;
2 years ago
}
2 years ago
.detail {
2 years ago
padding:0 60rpx;
2 years ago
background: #fff;
padding-top: 30rpx;
/* border-radius: 30rpx 30rpx 0 0; */
padding-bottom:180rpx;
2 years ago
font-size: 28rpx;
2 years ago
}
.detail img {
width: 100%;
margin:10rpx 0;
2 years ago
}
.wxParse{
line-height: 2.3;
2 years ago
}
</style>