|
@@ -11,12 +11,166 @@ import {
|
|
|
PERSONAL_SUB_NAV_LIST,
|
|
|
PERSONAL_SECOND_SUB_NAV_LIST,
|
|
|
} from "~/utils/constance";
|
|
|
-
|
|
|
import { usePersonalIndexList } from "~/useHook/usePersonalIndex";
|
|
|
import debounce from "loadsh/debounce";
|
|
|
import * as follow from "~/api/user";
|
|
|
-import { collect } from "~/api/gather";
|
|
|
-import { useRoute } from "vue-router";
|
|
|
+import * as collect from "~/api/gather";
|
|
|
+import { useRoute, useRouter } from "vue-router";
|
|
|
+import * as delApi from "~/api/forum";
|
|
|
+import * as artivleApi from "~/api/article";
|
|
|
+import * as videoApi from "~/api/video";
|
|
|
+import * as infoApi from "~/api/news";
|
|
|
+const router = useRouter();
|
|
|
+//删除
|
|
|
+const delect = (id) => {
|
|
|
+ if (subNavCurrent.value == "forum") {
|
|
|
+ delecta(id);
|
|
|
+ }
|
|
|
+ if (subNavCurrent.value == "news") {
|
|
|
+ //资讯
|
|
|
+ delectd(id);
|
|
|
+ }
|
|
|
+ if (subNavCurrent.value == "article") {
|
|
|
+ delectb(id);
|
|
|
+ }
|
|
|
+ if (subNavCurrent.value == "video") {
|
|
|
+ delectc(id);
|
|
|
+ }
|
|
|
+};
|
|
|
+//论坛删除
|
|
|
+const delecta = async (id) => {
|
|
|
+ try {
|
|
|
+ const { data } = await delApi.del({
|
|
|
+ id: id,
|
|
|
+ });
|
|
|
+ ElMessage({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ refrenshTableData();
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//文章删除
|
|
|
+const delectb = async (id) => {
|
|
|
+ try {
|
|
|
+ const { data } = await artivleApi.del({
|
|
|
+ id: id,
|
|
|
+ });
|
|
|
+ ElMessage({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ refrenshTableData();
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//视频删除
|
|
|
+const delectc = async (id) => {
|
|
|
+ try {
|
|
|
+ const { data } = await videoApi.del({
|
|
|
+ id: id,
|
|
|
+ });
|
|
|
+ ElMessage({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ refrenshTableData();
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//咨询删除
|
|
|
+const delectd = async (id) => {
|
|
|
+ try {
|
|
|
+ const { data } = await infoApi.del({
|
|
|
+ id: id,
|
|
|
+ });
|
|
|
+ ElMessage({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ refrenshTableData();
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+
|
|
|
+//跳转到详情
|
|
|
+const todetail = (id) => {
|
|
|
+ //论坛
|
|
|
+ if (subNavCurrent.value == "forum") {
|
|
|
+ router.push({
|
|
|
+ name: "post",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (subNavCurrent.value == "news") {
|
|
|
+ router.push({
|
|
|
+ name: "news",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (subNavCurrent.value == "article") {
|
|
|
+ router.push({
|
|
|
+ name: "articles",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (subNavCurrent.value == "video") {
|
|
|
+ router.push({
|
|
|
+ name: "videos",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+//跳转到详情
|
|
|
+const todetails = (id) => {
|
|
|
+ //论坛
|
|
|
+ if (secondSubNavCurrent.value == "post") {
|
|
|
+ router.push({
|
|
|
+ name: "post",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (secondSubNavCurrent.value == "info") {
|
|
|
+ router.push({
|
|
|
+ name: "news",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (secondSubNavCurrent.value == "article") {
|
|
|
+ router.push({
|
|
|
+ name: "articles",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (secondSubNavCurrent.value == "video") {
|
|
|
+ router.push({
|
|
|
+ name: "videos",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (secondSubNavCurrent.value == "goods") {
|
|
|
+ router.push({
|
|
|
+ name: "PointShoping",
|
|
|
+ query: {
|
|
|
+ id: id,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
const route = useRoute();
|
|
|
//弹出层
|
|
|
const dialogVisible = ref(false);
|
|
@@ -113,13 +267,28 @@ const handleSwitchSubNav = debounce((type) => {
|
|
|
}, 160);
|
|
|
|
|
|
// news, article, video, forum, goods
|
|
|
-const secondSubNavCurrent = ref("news"); // second nav
|
|
|
+const secondSubNavCurrent = ref("info"); // second nav
|
|
|
const secondSubNavList = PERSONAL_SECOND_SUB_NAV_LIST;
|
|
|
|
|
|
+const subList = ref([]);
|
|
|
+const __subnav__ = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await collect.summary({
|
|
|
+ is_page: 0,
|
|
|
+ source_type: secondSubNavCurrent.value,
|
|
|
+ type: "collect",
|
|
|
+ });
|
|
|
+ subList.value = data;
|
|
|
+ console.log(subList.value);
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(__subnav__);
|
|
|
// 防抖
|
|
|
const handleSwitchSecondSubNav = debounce((type) => {
|
|
|
if (secondSubNavCurrent.value === type) return;
|
|
|
secondSubNavCurrent.value = type;
|
|
|
+ console.log("type", type);
|
|
|
+ __subnav__();
|
|
|
}, 240);
|
|
|
|
|
|
// 首页列表数据
|
|
@@ -156,10 +325,10 @@ const __reset_params__ = () =>
|
|
|
watchEffect(() => {
|
|
|
let temporary = {};
|
|
|
switch (subNavCurrent.value) {
|
|
|
- case "forum":
|
|
|
+ case "post":
|
|
|
temporary.source_type = "post";
|
|
|
break;
|
|
|
- case "news":
|
|
|
+ case "info":
|
|
|
temporary.source_type = "info";
|
|
|
break;
|
|
|
case "article":
|
|
@@ -168,9 +337,9 @@ watchEffect(() => {
|
|
|
case "video":
|
|
|
temporary.source_type = "video";
|
|
|
break;
|
|
|
- case "collect":
|
|
|
- // temporary.source_type = '<++>'
|
|
|
- break;
|
|
|
+ // case "collect":
|
|
|
+ // // temporary.source_type = '<++>'
|
|
|
+ // break;
|
|
|
}
|
|
|
|
|
|
console.log(
|
|
@@ -179,20 +348,35 @@ watchEffect(() => {
|
|
|
subNavCurrent.value
|
|
|
);
|
|
|
|
|
|
- // 收藏接口不走接口
|
|
|
- if (subNavCurrent.value === "collect") {
|
|
|
- // TODO: 收藏
|
|
|
- } else {
|
|
|
- Object.assign(params, __reset_params__(), temporary);
|
|
|
- }
|
|
|
+ // // 收藏接口不走接口
|
|
|
+ // if (subNavCurrent.value === "collect") {
|
|
|
+ // __subnav__()
|
|
|
+ // } else {
|
|
|
+ // Object.assign(params, __reset_params__(), temporary);
|
|
|
+ // }
|
|
|
});
|
|
|
|
|
|
// onMounted()
|
|
|
const { tableData, pagination, refrenshTableData } =
|
|
|
usePersonalIndexList(params);
|
|
|
|
|
|
-const handleRefreshListData = () => {
|
|
|
- refrenshTableData();
|
|
|
+// const handleRefreshListData = () => {
|
|
|
+// refrenshTableData();
|
|
|
+// usePersonalIndexList();
|
|
|
+// };
|
|
|
+//其他用户信息接口
|
|
|
+const __other__ = async (id) => {
|
|
|
+ try {
|
|
|
+ const { data } = await user.other({
|
|
|
+ user_id: id,
|
|
|
+ });
|
|
|
+ userInfo.value = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//其他用户信息
|
|
|
+const other = (id) => {
|
|
|
+ type.value = "other";
|
|
|
+ __other__(id);
|
|
|
};
|
|
|
</script>
|
|
|
|
|
@@ -215,11 +399,81 @@ const handleRefreshListData = () => {
|
|
|
<div class="rheader flex-row flex-aic">
|
|
|
<div class="name">{{ User.name || "匿名用户" }}</div>
|
|
|
<Level :level="User.level" full />
|
|
|
- <ul class="tags flex-row flex-aic">
|
|
|
- <li>徽章</li>
|
|
|
- <li>徽章</li>
|
|
|
- <li>徽章</li>
|
|
|
- </ul>
|
|
|
+ <div class="tags flex-row flex-aic">
|
|
|
+ <div v-if="User.is_vip == 1">
|
|
|
+ <img
|
|
|
+ src="../../assets/bage/icon3.png"
|
|
|
+ style="width: 22px; height: 22px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <el-dropdown>
|
|
|
+ <div v-if="User.boutique_post_badge != ''">
|
|
|
+ <img
|
|
|
+ :src="User.boutique_post_badge"
|
|
|
+ style="width: 22px; height: 22px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item
|
|
|
+ >勋章等级:{{
|
|
|
+ User.boutique_post_level
|
|
|
+ }}</el-dropdown-item
|
|
|
+ >
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
+ <el-dropdown>
|
|
|
+ <div v-if="User.like_badge != ''">
|
|
|
+ <img
|
|
|
+ :src="User.like_badge"
|
|
|
+ style="width: 22px; height: 22px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item
|
|
|
+ >勋章等级:{{ User.like_level }}</el-dropdown-item
|
|
|
+ >
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
+ <el-dropdown>
|
|
|
+ <div v-if="User.post_badge != ''">
|
|
|
+ <img
|
|
|
+ :src="User.post_badge"
|
|
|
+ style="width: 22px; height: 22px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item
|
|
|
+ >勋章等级:{{ User.post_level }}</el-dropdown-item
|
|
|
+ >
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
+ <el-dropdown>
|
|
|
+ <div v-if="User.shoot_badge != ''">
|
|
|
+ <img
|
|
|
+ :src="User.shoot_badge"
|
|
|
+ style="width: 22px; height: 22px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item
|
|
|
+ >勋章等级:{{ User.shoot_level }}</el-dropdown-item
|
|
|
+ >
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="rdesc">{{ User.introduction }}</div>
|
|
|
</div>
|
|
@@ -302,14 +556,86 @@ const handleRefreshListData = () => {
|
|
|
>
|
|
|
<template v-for="(item, idx) in tableData" :key="idx">
|
|
|
<MomentLayout
|
|
|
+ @delec="delect(item.id)"
|
|
|
+ @other="other(item.id)"
|
|
|
:type="subNavCurrent"
|
|
|
:detail="item"
|
|
|
@refresh="handleRefreshListData"
|
|
|
+ @detail="todetail(item.id)"
|
|
|
/>
|
|
|
</template>
|
|
|
</template>
|
|
|
<!-- 收藏 -->
|
|
|
- <div v-else></div>
|
|
|
+ <div v-else>
|
|
|
+ <div
|
|
|
+ v-if="
|
|
|
+ secondSubNavCurrent == 'info' ||
|
|
|
+ secondSubNavCurrent == 'article' ||
|
|
|
+ secondSubNavCurrent == 'video'
|
|
|
+ "
|
|
|
+ class="flex-row"
|
|
|
+ style="column-gap: 16px; flex-wrap: wrap"
|
|
|
+ >
|
|
|
+ <template v-for="(item, idx) in subList" :key="idx">
|
|
|
+ <IndexNews
|
|
|
+ style="width: 260px"
|
|
|
+ @update="todetails(item.id)"
|
|
|
+ :title="item.title"
|
|
|
+ :time-ago="item.published_at"
|
|
|
+ :like-count="item.like_count || '0'"
|
|
|
+ :comment-count="item.comment_count || '0'"
|
|
|
+ :image="item.image"
|
|
|
+ :is_like="item.is_like"
|
|
|
+ :is_collect="item.is_collect"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ v-if="secondSubNavCurrent == 'post'"
|
|
|
+ class="flex-row"
|
|
|
+ style="column-gap: 20px; flex-wrap: wrap"
|
|
|
+ >
|
|
|
+ <template v-for="(item, idx) in subList" :key="idx">
|
|
|
+ <div @click="todetails(item.id)" class="lunbox">
|
|
|
+ <img
|
|
|
+ :src="item.image"
|
|
|
+ style="width: 112px; height: 112px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <div style="margin-left: 10px">
|
|
|
+ <div class="cont">{{ item.content }}</div>
|
|
|
+ <div class="smell">
|
|
|
+ <span>{{ item.like_count }}喜欢·</span>
|
|
|
+ <span>{{ item.comment_count }}评论</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ v-if="secondSubNavCurrent == 'goods'"
|
|
|
+ class="flex-row"
|
|
|
+ style="column-gap: 20px; flex-wrap: wrap"
|
|
|
+ >
|
|
|
+ <template v-for="(item, idx) in subList" :key="idx">
|
|
|
+ <div @click="todetails(item.id)" class="goodsbox" style="margin-bottom: 20px">
|
|
|
+ <img
|
|
|
+ :src="item.image"
|
|
|
+ style="width: 182px; height: 182px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <div style="margin-left: 10px">
|
|
|
+ <div style="margin-top: 14px; text-align: center">
|
|
|
+ {{ item.title }}
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px; text-align: center">
|
|
|
+ {{ item.integral }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="pm-side">
|
|
|
<ExperienceCard />
|
|
@@ -388,6 +714,47 @@ const handleRefreshListData = () => {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
@import "~/styles/variable.scss";
|
|
|
+.goodsbox {
|
|
|
+ width: 222px;
|
|
|
+ height: 276px;
|
|
|
+ border: 1px solid #e3e3e3;
|
|
|
+ padding: 20px 20px 13px;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.smell {
|
|
|
+ font-family: SFPro, SFPro;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #777777;
|
|
|
+ line-height: 14px;
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 16px;
|
|
|
+}
|
|
|
+.lunbox {
|
|
|
+ width: 374px;
|
|
|
+ height: 132px;
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 6px;
|
|
|
+ padding: 10px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+.cont {
|
|
|
+ width: 232px;
|
|
|
+ height: 72px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 13px;
|
|
|
+ color: #333333;
|
|
|
+ line-height: 18px;
|
|
|
+ text-align: justify;
|
|
|
+ font-style: normal;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
.active {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 500;
|