|
@@ -5,7 +5,7 @@
|
|
|
*/
|
|
|
|
|
|
import { ref, onMounted, reactive } from "vue";
|
|
|
-import { useRoute,useRouter } from "vue-router";
|
|
|
+import { useRoute, useRouter } from "vue-router";
|
|
|
import { placeholderPic } from "~/utils/util";
|
|
|
|
|
|
import Comments from "~/components/Comments/index.vue";
|
|
@@ -19,7 +19,7 @@ import * as gatherApi from "~/api/gather";
|
|
|
import * as forumApi from "~/api/forum";
|
|
|
|
|
|
const Route = useRoute();
|
|
|
-const router = useRouter()
|
|
|
+const router = useRouter();
|
|
|
let postType = ref(); // [articles, news, videos]
|
|
|
postType.value = Route.name;
|
|
|
const toid = () => {
|
|
@@ -73,7 +73,8 @@ const details = reactive({
|
|
|
is_comment: "",
|
|
|
is_follow: "",
|
|
|
video_title: "",
|
|
|
- created_at:''
|
|
|
+ created_at: "",
|
|
|
+ topic: {},
|
|
|
});
|
|
|
//资讯
|
|
|
const __postDetail__ = async () => {
|
|
@@ -99,7 +100,8 @@ const __postDetail__ = async () => {
|
|
|
is_collect: data.is_collect,
|
|
|
is_comment: data.is_comment,
|
|
|
is_follow: data.is_follow,
|
|
|
- created_at:data.original_published_at
|
|
|
+ created_at: data.published_at,
|
|
|
+ topic: data.topic,
|
|
|
});
|
|
|
} catch (error) {}
|
|
|
};
|
|
@@ -127,7 +129,8 @@ const __articlesDetail__ = async () => {
|
|
|
is_collect: data.is_collect,
|
|
|
is_comment: data.is_comment,
|
|
|
is_follow: data.is_follow,
|
|
|
- created_at:data.original_published_at
|
|
|
+ created_at: data.published_at,
|
|
|
+ topic: data.topic,
|
|
|
});
|
|
|
} catch (error) {}
|
|
|
};
|
|
@@ -157,7 +160,8 @@ const __videoDetail__ = async () => {
|
|
|
is_comment: data.is_comment,
|
|
|
is_follow: data.is_follow,
|
|
|
video_title: data.video_title,
|
|
|
- created_at:data.original_published_at
|
|
|
+ created_at: data.published_at,
|
|
|
+ topic: data.topic,
|
|
|
});
|
|
|
} catch (error) {}
|
|
|
};
|
|
@@ -186,7 +190,8 @@ const __posDetail__ = async () => {
|
|
|
is_collect: data.is_collect,
|
|
|
is_comment: data.is_comment,
|
|
|
is_follow: data.is_follow,
|
|
|
- created_at:data.original_published_at
|
|
|
+ created_at: data.published_at,
|
|
|
+ topic: data.topic,
|
|
|
});
|
|
|
} catch (error) {}
|
|
|
};
|
|
@@ -308,6 +313,18 @@ const other = (id) => {
|
|
|
},
|
|
|
});
|
|
|
};
|
|
|
+
|
|
|
+//跳转到话题详情
|
|
|
+const topicinfo = (item) => {
|
|
|
+ router.push({
|
|
|
+ path: "/forum/topic/:id",
|
|
|
+ query: {
|
|
|
+ id: item.id,
|
|
|
+ title: item.title,
|
|
|
+ description: item.description,
|
|
|
+ },
|
|
|
+ });
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -316,8 +333,8 @@ const other = (id) => {
|
|
|
v-if="Route.name == 'videos'"
|
|
|
@click="open(details.video_url)"
|
|
|
>
|
|
|
- <div class="flex-row" style="align-items: center;">
|
|
|
- <div style="position: relative" >
|
|
|
+ <div class="flex-row" style="align-items: center">
|
|
|
+ <div style="position: relative">
|
|
|
<div>
|
|
|
<img
|
|
|
style="width: 176px; height: 99px; border-radius: 10px"
|
|
@@ -341,7 +358,9 @@ const other = (id) => {
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="video_title" style="margin-left: 18px;">{{ details.video_title }}</div>
|
|
|
+ <div class="video_title" style="margin-left: 18px">
|
|
|
+ {{ details.video_title }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div>
|
|
|
<img
|
|
@@ -353,19 +372,26 @@ const other = (id) => {
|
|
|
</div>
|
|
|
<div class="post-container">
|
|
|
<!-- TODO: Videos box -->
|
|
|
- <div class="title" style="text-align: center;">{{ details.title }}</div>
|
|
|
- <div class="sub-title" style="text-align: center;">{{ details.description }}</div>
|
|
|
- <div class="author-wrapper flex-row flex-aic" style="text-align: center;justify-content: center;">
|
|
|
+ <div class="title" style="text-align: center">{{ details.title }}</div>
|
|
|
+ <div class="sub-title" style="text-align: center">
|
|
|
+ {{ details.description }}
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="author-wrapper flex-row flex-aic"
|
|
|
+ style="text-align: center; justify-content: center"
|
|
|
+ >
|
|
|
<img
|
|
|
@click="other(details.user.id)"
|
|
|
class="author__avatar circle"
|
|
|
v-if="details.user.avatar"
|
|
|
:src="details.user.avatar"
|
|
|
- style="cursor: pointer;"
|
|
|
+ style="cursor: pointer"
|
|
|
alt=""
|
|
|
/>
|
|
|
<div class="author__name">{{ details.user.username }}</div>
|
|
|
- <div class="author__post-time" style="margin-left: 10px;" >{{ details.created_at }}</div>
|
|
|
+ <div class="author__post-time" style="margin-left: 10px">
|
|
|
+ {{ details.created_at }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="tip">本文系用户投稿,不代表忆象网观点</div>
|
|
|
<div
|
|
@@ -373,6 +399,15 @@ const other = (id) => {
|
|
|
class="post-context"
|
|
|
v-html="details.content"
|
|
|
></div>
|
|
|
+ <div
|
|
|
+ v-if="details.topic"
|
|
|
+ style="cursor: pointer"
|
|
|
+ @click="topicinfo(details.topic)"
|
|
|
+ class="flag"
|
|
|
+ :style="{ opacity: details.topic.title ? 1 : 0 }"
|
|
|
+ >
|
|
|
+ #{{ details.topic.title }}
|
|
|
+ </div>
|
|
|
<div v-if="detaildType == 'post'">
|
|
|
<div v-for="(item, idx) in details.image" :key="idx">
|
|
|
<img style="width: 700px; margin-top: 24px" :src="item" alt="" />
|
|
@@ -454,6 +489,14 @@ const other = (id) => {
|
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.flag {
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #ff6700;
|
|
|
+ margin-top: 20px;
|
|
|
+}
|
|
|
.video_title {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 600;
|
|
@@ -567,4 +610,4 @@ const other = (id) => {
|
|
|
color: #555555;
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|