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.

104 lines
1.9 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?info.release_time:''}}</span><span>来源{{info.source?info.source:''}}</span></view>
2 years ago
<view class='head'>
<img :src="info.head_upload.url" alt="">
</view>
</view>
<view class='bg40'></view>
<view class='detail'>
<u-parse :content="info.content?info.content:''"/>
</view>
</view>
</template>
<script>
import uParse from '@/components/gaoyia-parse/parse.vue'
export default {
components: {
uParse
},
data() {
return {
info: {},
id: '',
guidance_unit_list: [],
sponsor_list: [],
bear_unit_list: []
}
},
onLoad(options) {
this.id = options.id ? options.id : ''
this.loadDetail()
},
methods: {
loadDetail() {
var that = this;
this.util.request({
api: '/api/mobile/cultural-relic/show',
data: {
id: that.id
},
utilSuccess: function(res) {
that.info = res
that.guidance_unit_list = res.guidance_unit.split('、')
that.sponsor_list = res.sponsor.split('、')
that.bear_unit_list = res.bear_unit.split('、')
},
utilFail: function(res) {
}
})
}
}
}
</script>
<style>
@import url("/components/gaoyia-parse/parse.css");
.content {
background-color: #fff;
padding-bottom:180rpx
}
.contop{
padding:0 30rpx;
}
.title {
text-align: center;
padding: 30rpx 50rpx;
}
.time {
text-align: center;
color: #6e6e6e;
font-size: 28rpx;
padding-bottom: 30rpx;
border-bottom: 1px solid #fafaf9;
}
.time span {
margin: 0 10rpx;
}
.head {
margin:30rpx 0;
}
.head img {
width: 100%
}
.bg40{
width:100%;
height:40rpx;
background-color: #fbf3ea;
}
.detail {
padding:0 30rpx;
margin-top:30rpx;
}
.detail img {
width: 100%
}
</style>