123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <template>
- <div id="eduDetail" style="background-color: #F5F5F54f;">
- <div class="w_0100">
- <div class="w_1200">
- <div class="detailmain">
- <div class="detailtop">
- <span>{{ detailinfo.title }}</span>
- </div>
- <div class="detailtopleft">
- <span>时间:{{ detailinfo.publish_time }} 来源:{{ detailinfo.orgin }}</span>
- </div>
- <div class="detailimage" v-if="detailinfo.picture">
- <img :src="detailinfo.picture" class="detailimg" />
- </div>
- <div class="detailVideo">
- <video :src="detailinfo.filepath" controls="controls">
- 您的浏览器不支持 video 标签。
- </video>
- </div>
- <div class="detailcontext">
- <p v-html="detailinfo.content"></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- const { mapActions: news } = createNamespacedHelpers('news');
- const { mapActions: newsroadshow } = createNamespacedHelpers('newsroadshow');
- export default {
- name: 'eduDetail',
- props: {
- newsid: null,
- },
- components: {},
- data: () => {
- return {
- img: {
- top_bg: require('@/assets/live/top_bg.png'),
- logo: require('@/assets/live/logo.png'),
- img1: require('@/assets/live/1.jpg'),
- },
- detailinfo: {},
- videoUrl: require('@/assets/video.mp4'),
- };
- },
- created() {
- this.search();
- },
- methods: {
- ...newsroadshow(['fetch']),
- async search() {
- const res = await this.fetch(this.newsid);
- this.$set(this, `detailinfo`, res.data);
- },
- },
- computed: {
- id() {
- return this.$route.query.id;
- },
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped>
- @import '~@/style/style.css';
- .w_1200 {
- width: 95%;
- margin: 0 auto;
- }
- .detailmain {
- min-height: 500px;
- }
- .detailtop {
- padding: 20px 0px;
- font-size: 18px;
- line-height: 40px;
- font-weight: normal;
- text-align: left;
- margin: 0;
- text-align: center;
- color: #005293;
- }
- .detailtopleft {
- text-align: center;
- padding: 0 0 10px 0;
- border-bottom: 1px solid #ccc;
- font-size: 16px;
- color: #666666;
- }
- .detailimage {
- text-align: center;
- padding: 20px 0 0 0;
- }
- .detailVideo {
- float: left;
- width: 100%;
- text-align: center;
- height: 400px;
- overflow: hidden;
- margin: 20px 0;
- }
- .detailVideo video {
- height: 400px;
- width: 50%;
- border: 1px dashed #ccc;
- }
- .detailimg {
- width: 500px;
- height: 300px;
- }
- .detailcontext {
- padding: 20px 0;
- }
- </style>
|