80 lines
2.4 KiB
Vue
80 lines
2.4 KiB
Vue
|
<template>
|
|||
|
<div style="width: 100%;">
|
|||
|
<div style="height:60px;background-color: #ffffff;"></div>
|
|||
|
<div style="background-color: #eeeeee;width:100%;height: 0.5px;"></div>
|
|||
|
<div style="background-color: #F8F8F8;">
|
|||
|
<div class="content_class" style="">
|
|||
|
<div style="font-size: 20px;font-weight: 700;color: #323232;">{{ info.title }}</div>
|
|||
|
<div style="font-size: 14px;font-weight: 400;margin-top: 15px;color: #768597;">
|
|||
|
<div>发 布 人:{{ info.author }}</div>
|
|||
|
<div style="margin-top: 5px;">发布时间:{{ info.release_time_text }} </div>
|
|||
|
</div>
|
|||
|
<div style="width: 100%;margin:20px 0px 0px 0px;height: 1px;background-color: #EEEEEE;"></div>
|
|||
|
<div class="info_content" v-html="info.content"></div>
|
|||
|
<div style="width: 100%;margin: 20px auto;height: 1px;background-color: #EEEEEE;"></div>
|
|||
|
<div style="display: flex;justify-content: space-between;align-items: center;">
|
|||
|
<div style="width: 100%;">
|
|||
|
<div @click="openNews(1)" style="cursor: pointer;">上一篇:{{ info.prev != null ? info.prev.title : '暂无' }}
|
|||
|
</div>
|
|||
|
<div @click="openNews(2)" style="margin-top: 20px;cursor: pointer;">
|
|||
|
下一篇:{{ info.next != null ? info.next.title : '暂无' }}</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script lang="ts" setup>
|
|||
|
import { nextTick, ref } from 'vue'
|
|||
|
const route = useRoute()
|
|||
|
import $api from '@/service/webRequest'
|
|||
|
import { Item } from 'ant-design-vue/es/menu'
|
|||
|
const id = ref(route.params.id)
|
|||
|
const openNews = (type) => {
|
|||
|
if (type == 1 && info.value.prev != null) {
|
|||
|
window.open('/phone_info/' + info.value.prev.id, '_self');
|
|||
|
}
|
|||
|
if (type == 2 && info.value.next != null) {
|
|||
|
window.open('/phone_info/' + info.value.next.id, '_self');
|
|||
|
}
|
|||
|
}
|
|||
|
// 新闻数据
|
|||
|
onMounted(() => {
|
|||
|
getInfo();
|
|||
|
})
|
|||
|
const info = ref({});
|
|||
|
const getInfo = async () => {
|
|||
|
const res = await $api.get('/api/home.news/detail?id=' + id.value)
|
|||
|
console.log(res);
|
|||
|
info.value = res.data.data;
|
|||
|
}
|
|||
|
const delWeb = () => {
|
|||
|
window.close();
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss">
|
|||
|
@import "@/assets/animate/animate.min.css";
|
|||
|
@import "@/assets/index.scss";
|
|||
|
|
|||
|
.info_content img {
|
|||
|
width: 100% !important;
|
|||
|
margin: 0 auto;
|
|||
|
margin-bottom: 10px;
|
|||
|
}
|
|||
|
|
|||
|
.info_content {
|
|||
|
line-height: 28px;
|
|||
|
text-align: justify!important;
|
|||
|
}
|
|||
|
|
|||
|
.content_class {
|
|||
|
width: 100%;
|
|||
|
min-height: 500px;
|
|||
|
margin: 0 auto;
|
|||
|
background-color: #ffffff;
|
|||
|
padding: 30px;
|
|||
|
}
|
|||
|
</style>
|