123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <div id="expdetail">
- <el-row>
- <el-col :span="24" class="main">
- <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" v-if="detailinfo.filepath">
- <video :src="detailinfo.filepath" controls="controls">
- 您的浏览器不支持 video 标签。
- </video>
- </div>
- <div class="detailcontext">
- <p v-html="detailinfo.content"></p>
- </div>
- <!-- <div class="development">
- <p>功能开发中</p>
- <p>功能实现流程:<span>问诊记录展示</span>-<span>在线咨询</span>-<span>专家在线问诊</span></p>
- </div> -->
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'expdetail',
- props: {
- detailinfo: { type: Object },
- },
- components: {},
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped>
- .main {
- .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;
- }
- .detailimg {
- width: 500px;
- height: 300px;
- }
- .detailvideo {
- text-align: center;
- padding: 10px 0;
- video {
- width: 100%;
- height: 460px;
- }
- }
- .detailcontext {
- padding: 20px 0;
- min-height: 370px;
- }
- .development {
- height: 50px;
- border: 1px dashed red;
- padding: 0 30px;
- p:first-child {
- text-align: center;
- font-size: 18px;
- color: red;
- font-weight: bold;
- }
- p:last-child {
- text-align: center;
- height: 25px;
- line-height: 25px;
- font-size: 16px;
- font-weight: bold;
- }
- }
- }
- </style>
|