2025-06-07 15:52:33 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div style="width: 100%;">
|
2025-07-24 11:33:10 +08:00
|
|
|
|
<div
|
|
|
|
|
style="display: flex;justify-content: space-between;align-items: center;height:60px;background-color: #ffffff;">
|
|
|
|
|
<div style="width: 33.3%;padding-left: 15px;" @click="backTopDark()">
|
|
|
|
|
<img :src="`/img/back.png`" style="width: 30px;">
|
|
|
|
|
</div>
|
|
|
|
|
<div style="width: 33.3%;text-align: center;font-size: 18px;">新闻详情</div>
|
|
|
|
|
<div style="width: 33.3%;"></div>
|
|
|
|
|
</div>
|
2025-06-07 15:52:33 +08:00
|
|
|
|
<div style="background-color: #eeeeee;width:100%;height: 0.5px;"></div>
|
|
|
|
|
<div style="background-color: #F8F8F8;">
|
|
|
|
|
<div class="content_class" style="">
|
2025-07-24 11:33:10 +08:00
|
|
|
|
<div style="font-size: 18px;font-weight: 700;color: #323232;">{{ info.title }}</div>
|
|
|
|
|
<div
|
|
|
|
|
style="display: flex;justify-content: space-between;align-items: center;font-size: 14px;font-weight: 400;margin-top: 15px;color: #999999;">
|
|
|
|
|
<div>发布人:{{ info.author }}</div>
|
|
|
|
|
<div style="margin-top: 5px;">{{ info.release_time_text }} </div>
|
2025-06-07 15:52:33 +08:00
|
|
|
|
</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>
|
2025-07-24 11:33:10 +08:00
|
|
|
|
<div class="re_box_item" v-if="info != null && info.type == 2">
|
|
|
|
|
<embed type="application/pdf" :src="info.file" width="100%" height="580px" alt="">
|
2025-06-07 15:52:33 +08:00
|
|
|
|
</div>
|
2025-07-24 11:33:10 +08:00
|
|
|
|
<div style="width: 100%;margin: 20px auto;height: 1px;background-color: #EEEEEE;"></div>
|
2025-06-07 15:52:33 +08:00
|
|
|
|
</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'
|
2025-07-24 11:33:10 +08:00
|
|
|
|
const ids = ref(route.params.id)
|
|
|
|
|
const types = ref(route.query.type)
|
2025-06-07 15:52:33 +08:00
|
|
|
|
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(() => {
|
2025-07-24 11:33:10 +08:00
|
|
|
|
getNewsdetail();
|
2025-06-07 15:52:33 +08:00
|
|
|
|
})
|
|
|
|
|
const info = ref({});
|
2025-07-24 11:33:10 +08:00
|
|
|
|
const getNewsdetail = async () => {
|
|
|
|
|
// 新闻详情
|
|
|
|
|
if (types.value == 1) {
|
|
|
|
|
const res = await $api.post('/api/home.news/detail',
|
|
|
|
|
{
|
|
|
|
|
id: ids.value
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
info.value = res.data.data;
|
|
|
|
|
} else if (types.value == 2) {
|
|
|
|
|
//信息公开文章详情
|
|
|
|
|
const res1 = await $api.post('/api/home.information/detail',
|
|
|
|
|
{
|
|
|
|
|
id: ids.value
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
info.value = res1.data.data;
|
|
|
|
|
} else {
|
|
|
|
|
// 团务百科文章详情
|
|
|
|
|
const res2 = await $api.post('/api/home.encyclopedia/detail',
|
|
|
|
|
{
|
|
|
|
|
id: ids.value
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
info.value = res2.data.data;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-07 15:52:33 +08:00
|
|
|
|
}
|
|
|
|
|
const delWeb = () => {
|
|
|
|
|
window.close();
|
|
|
|
|
}
|
2025-07-24 11:33:10 +08:00
|
|
|
|
const backTopDark = () => {
|
|
|
|
|
window.history.back();
|
|
|
|
|
}
|
2025-06-07 15:52:33 +08:00
|
|
|
|
</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;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-24 11:33:10 +08:00
|
|
|
|
._1NCGf {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
._2kCxD {
|
|
|
|
|
margin-top: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-07 15:52:33 +08:00
|
|
|
|
.info_content {
|
2025-07-24 11:33:10 +08:00
|
|
|
|
line-height: 28px !important;
|
|
|
|
|
text-align: justify !important;
|
2025-06-07 15:52:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content_class {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 500px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
background-color: #ffffff;
|
2025-07-24 11:33:10 +08:00
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.re_box_item {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border: 1px solid #eef7ff;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-height: 750px;
|
2025-06-07 15:52:33 +08:00
|
|
|
|
}
|
|
|
|
|
</style>
|