|
@@ -1,5 +1,5 @@
|
|
|
<script setup>
|
|
|
-import { ref, onMounted } from "vue";
|
|
|
+import { ref, onMounted, reactive } from "vue";
|
|
|
import { Search, Promotion, Avatar } from "@element-plus/icons-vue";
|
|
|
import { useUser } from "~/store/user.js";
|
|
|
import ActivateMembership from "~/components/ActivateMembership/index.vue";
|
|
@@ -11,6 +11,73 @@ import { getPicUrl } from "~/utils/util";
|
|
|
import * as taskApi from "~/api/task";
|
|
|
import { useRouter } from "vue-router";
|
|
|
import * as userApi from "~/api/user";
|
|
|
+const router = useRouter();
|
|
|
+
|
|
|
+//跳转
|
|
|
+const collect = (idx) => {
|
|
|
+ if (idx == 0) {
|
|
|
+ router.push({
|
|
|
+ path: "personal",
|
|
|
+ query: {
|
|
|
+ subNavCurrent: "collect",
|
|
|
+ },
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ router.push({
|
|
|
+ path: "foot",
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+//关注弹出层
|
|
|
+const attentio = () => {
|
|
|
+ dialogVisible.value = true;
|
|
|
+};
|
|
|
+//关注
|
|
|
+const atten = async (id) => {
|
|
|
+ try {
|
|
|
+ const { data } = await userApi.userfollow({
|
|
|
+ id: id,
|
|
|
+ });
|
|
|
+ if (inde.value == 0) {
|
|
|
+ __article__();
|
|
|
+ } else {
|
|
|
+ __fans__();
|
|
|
+ }
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+
|
|
|
+const inde = ref(0);
|
|
|
+//关注列表
|
|
|
+const guan = (id) => {
|
|
|
+ inde.value = id;
|
|
|
+ if (id == 0) {
|
|
|
+ __article__();
|
|
|
+ } else {
|
|
|
+ __fans__();
|
|
|
+ }
|
|
|
+};
|
|
|
+//关注列表
|
|
|
+const fllowlist = ref([]);
|
|
|
+const __fans__ = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await userApi.fans({
|
|
|
+ is_page: 0,
|
|
|
+ });
|
|
|
+ fllowlist.value = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//粉丝列表
|
|
|
+const __article__ = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await userApi.follow({
|
|
|
+ is_page: 0,
|
|
|
+ });
|
|
|
+ fllowlist.value = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(__article__);
|
|
|
+
|
|
|
const tosuccess = (type) => {
|
|
|
if (type == "browse") {
|
|
|
router.replace({
|
|
@@ -23,7 +90,6 @@ const tosuccess = (type) => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-const router = useRouter();
|
|
|
// 弹出层
|
|
|
const dialogVisible = ref(false);
|
|
|
//退出
|
|
@@ -62,7 +128,9 @@ onMounted(__badge__);
|
|
|
|
|
|
const User = useUser();
|
|
|
console.log("user", User.name);
|
|
|
-let wid = User.already_upgrade_rate * 100 || 0;
|
|
|
+
|
|
|
+let wid =
|
|
|
+ (User.integral_sum / (User.integral_sum + User.left_upgrade)) * 100 || 0;
|
|
|
console.log(User.already_upgrade_rate);
|
|
|
|
|
|
const keyword = ref(""); // Search keyword
|
|
@@ -100,33 +168,88 @@ const __leve__ = async (id) => {
|
|
|
const momentList = ref([
|
|
|
{
|
|
|
label: "论坛",
|
|
|
- icon: getPicUrl("../../assets/cicons/send-01.png", import.meta.url),
|
|
|
+ icon: getPicUrl("./cicons/send-01.png", import.meta.url),
|
|
|
type: "", // 类型跳转发布时的type
|
|
|
},
|
|
|
{
|
|
|
label: "文章",
|
|
|
- icon: getPicUrl("../../assets/cicons/send-02.png", import.meta.url),
|
|
|
+ icon: getPicUrl("./cicons/send-02.png", import.meta.url),
|
|
|
|
|
|
type: "", // 类型跳转发布时的type
|
|
|
},
|
|
|
{
|
|
|
label: "资讯",
|
|
|
- icon: getPicUrl("../../assets/cicons/send-03.png", import.meta.url),
|
|
|
+ icon: getPicUrl("./cicons/send-03.png", import.meta.url),
|
|
|
|
|
|
type: "", // 类型跳转发布时的type
|
|
|
},
|
|
|
{
|
|
|
label: "视频",
|
|
|
- icon: getPicUrl("../../assets/cicons/send-04.png", import.meta.url),
|
|
|
-
|
|
|
+ icon: getPicUrl("./cicons/send-04.png", import.meta.url),
|
|
|
type: "", // 类型跳转发布时的type
|
|
|
},
|
|
|
{
|
|
|
label: "草稿箱",
|
|
|
- icon: getPicUrl("../../assets/cicons/send-05.png", import.meta.url),
|
|
|
+ icon: getPicUrl("./cicons/send-05.png", import.meta.url),
|
|
|
type: "", // 类型跳转发布时的type
|
|
|
},
|
|
|
]);
|
|
|
+const RankTitleEnum = {
|
|
|
+ score: "积分排行",
|
|
|
+ essence: "精华帖排行",
|
|
|
+ like: "点赞排行",
|
|
|
+};
|
|
|
+const dialogUserRank = reactive({
|
|
|
+ visibility: false,
|
|
|
+ type: "",
|
|
|
+ list: [],
|
|
|
+});
|
|
|
+const __user_rank__ = (type, limit = 10) =>
|
|
|
+ new Promise(async (resolve) => {
|
|
|
+ try {
|
|
|
+ const { data } = await userApi.userRank({
|
|
|
+ type,
|
|
|
+ limit,
|
|
|
+ is_page: 0,
|
|
|
+ });
|
|
|
+ resolve(data);
|
|
|
+ } catch (error) {}
|
|
|
+ });
|
|
|
+const handleSeeMoreRank = async (type, componentType) => {
|
|
|
+ try {
|
|
|
+ pai.value = false;
|
|
|
+ dialogUserRank.type = "";
|
|
|
+ dialogUserRank.list = [];
|
|
|
+ dialogUserRank.visibility = false;
|
|
|
+ // Top 50 obtained.before
|
|
|
+ const list = await __user_rank__(type, 50);
|
|
|
+ if (list) {
|
|
|
+ dialogUserRank.type = componentType;
|
|
|
+ dialogUserRank.list = list;
|
|
|
+ dialogUserRank.visibility = true;
|
|
|
+ }
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+// 首页个人排行
|
|
|
+const integralList = ref([]);
|
|
|
+const likeList = ref([]);
|
|
|
+const boutiqueList = ref([]);
|
|
|
+const userRankList = () => {
|
|
|
+ try {
|
|
|
+ Promise.all([
|
|
|
+ __user_rank__("integral"),
|
|
|
+ __user_rank__("like"),
|
|
|
+ __user_rank__("boutique"),
|
|
|
+ ]).then((result) => {
|
|
|
+ const [integral_list = [], like_list = [], boutique_list = []] = result;
|
|
|
+ integralList.value = integral_list;
|
|
|
+ likeList.value = like_list;
|
|
|
+ boutiqueList.value = boutique_list;
|
|
|
+ });
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+
|
|
|
+onMounted(userRankList);
|
|
|
|
|
|
const handleClickMoment = (moment) => {
|
|
|
console.log(
|
|
@@ -135,7 +258,7 @@ const handleClickMoment = (moment) => {
|
|
|
moment
|
|
|
);
|
|
|
};
|
|
|
-
|
|
|
+const pai = ref(false);
|
|
|
//兑换
|
|
|
const toinform = (idx) => {
|
|
|
if (idx == 0) {
|
|
@@ -145,7 +268,7 @@ const toinform = (idx) => {
|
|
|
});
|
|
|
} else if (idx == 2) {
|
|
|
router.push({
|
|
|
- path: "/",
|
|
|
+ path: "/reservation",
|
|
|
});
|
|
|
} else if (idx == 1) {
|
|
|
router.push({
|
|
@@ -162,6 +285,8 @@ const toinform = (idx) => {
|
|
|
router.push({
|
|
|
path: "/wallet",
|
|
|
});
|
|
|
+ } else if (idx == 5) {
|
|
|
+ pai.value = true;
|
|
|
}
|
|
|
};
|
|
|
|
|
@@ -314,22 +439,36 @@ const attention = (idx) => {
|
|
|
</div>
|
|
|
</template>
|
|
|
<div class="userinfo-container uc">
|
|
|
- <div style="display: flex">
|
|
|
- <div class="uc__avatar" @click="topersonal">
|
|
|
- <img class="circle" :src="User.avatar" alt="" />
|
|
|
- </div>
|
|
|
- <div style="margin-left: 10px">
|
|
|
- <div class="uc__name">{{ User.name }}</div>
|
|
|
- <!-- TODO: 用户徽章 -->
|
|
|
- <div class="uc__flags">
|
|
|
- <img
|
|
|
- v-for="(item, idx) in imglist"
|
|
|
- :key="idx"
|
|
|
- :src="item.image"
|
|
|
- alt=""
|
|
|
- />
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div style="display: flex">
|
|
|
+ <div class="uc__avatar" @click="topersonal">
|
|
|
+ <img class="circle" :src="User.avatar" alt="" />
|
|
|
+ </div>
|
|
|
+ <div style="margin-left: 10px">
|
|
|
+ <div class="uc__name">{{ User.name }}</div>
|
|
|
+ <!-- TODO: 用户徽章 -->
|
|
|
+ <div class="uc__flags">
|
|
|
+ <img
|
|
|
+ v-for="(item, idx) in imglist"
|
|
|
+ :key="idx"
|
|
|
+ :src="item.image"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <img
|
|
|
+ @click="dialogVisible = true"
|
|
|
+ src="../../assets/vip/clear.png"
|
|
|
+ style="width: 20px; height: 20px; cursor: pointer"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
</div>
|
|
|
<div class="uc__integral flex-row flex-aic flex-jc-sb">
|
|
|
<span class="integral_text"
|
|
@@ -407,19 +546,19 @@ const attention = (idx) => {
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="uc__part">
|
|
|
- <div>
|
|
|
+ <div style="cursor: pointer" @click="attentio">
|
|
|
<div>{{ User.follow_count || 0 }}</div>
|
|
|
<div>关注</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="cursor: pointer" @click="attentio">
|
|
|
<div>{{ User.fans_count || 0 }}</div>
|
|
|
<div>粉丝</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="cursor: pointer" @click="collect(0)">
|
|
|
<div>{{ User.collect_count || 0 }}</div>
|
|
|
<div>收藏</div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="cursor: pointer" @click="collect(1)">
|
|
|
<div>{{ User.view_count || 0 }}</div>
|
|
|
<div>足迹</div>
|
|
|
</div>
|
|
@@ -479,14 +618,12 @@ const attention = (idx) => {
|
|
|
<div class="itembox" @click="toinform(5)">
|
|
|
<div class="icon">
|
|
|
<img
|
|
|
- src="../../assets/cicons/header-06.png"
|
|
|
+ src="../../assets/cicons/header-07.png"
|
|
|
style="width: 20px; height: 20px"
|
|
|
alt=""
|
|
|
/>
|
|
|
</div>
|
|
|
- <div class="label" @click="dialogVisible = true">
|
|
|
- 退出忆象
|
|
|
- </div>
|
|
|
+ <div class="label">排行榜</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -511,10 +648,103 @@ const attention = (idx) => {
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog v-model="pai" width="440px">
|
|
|
+ <div style="margin-top: -30px">
|
|
|
+ <TheCharts
|
|
|
+ :list="integralList"
|
|
|
+ type="score"
|
|
|
+ @more="handleSeeMoreRank('integral', 'score')"
|
|
|
+ :is-show-more="true"
|
|
|
+ :header-title="RankTitleEnum.score"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog v-model="dialogUserRank.visibility" title="积分排行" width="440px">
|
|
|
+ <div class="dialog-userrank scroll-optimize">
|
|
|
+ <TheCharts
|
|
|
+ :list="dialogUserRank.list"
|
|
|
+ :type="dialogUserRank.type"
|
|
|
+ header-title=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ <!-- 弹出层 -->
|
|
|
+ <el-dialog
|
|
|
+ v-model="dialogVisible"
|
|
|
+ width="500px"
|
|
|
+ style="height: 560px; border-radius: 10px"
|
|
|
+ :show-close="true"
|
|
|
+ >
|
|
|
+ <div style="padding: 0px 24px; box-sizing: border-box">
|
|
|
+ <div style="display: flex; margin-top: -20px">
|
|
|
+ <div :class="inde == 0 ? 'active' : 'toptitle'" @click="guan(0)">
|
|
|
+ 已关注
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ :class="inde == 1 ? 'active' : 'toptitle'"
|
|
|
+ style="margin-left: 46px"
|
|
|
+ @click="guan(1)"
|
|
|
+ >
|
|
|
+ 被关注
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-if="fllowlist.length > 0">
|
|
|
+ <div class="boxa" v-for="(item, idx) in fllowlist" :key="idx">
|
|
|
+ <div style="display: flex">
|
|
|
+ <img
|
|
|
+ :src="item.avatar"
|
|
|
+ style="width: 46px; height: 46px; border-radius: 50%"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <div style="margin-left: 12px">
|
|
|
+ <div class="name">{{ item.username }}</div>
|
|
|
+ <div class="info">{{ item.introduction || "" }}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div
|
|
|
+ class="attentio"
|
|
|
+ @click="atten(item.id)"
|
|
|
+ v-if="item.is_follow == 0"
|
|
|
+ >
|
|
|
+ 关注
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="atten"
|
|
|
+ @click="atten(item.id)"
|
|
|
+ v-if="item.is_follow == 1"
|
|
|
+ >
|
|
|
+ 已关注
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ height: 450px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div>还没有内容</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
@import "~/styles/variable.scss";
|
|
|
+.sortlist-container {
|
|
|
+ column-gap: 26px;
|
|
|
+}
|
|
|
+
|
|
|
+.dialog-userrank {
|
|
|
+ max-height: 700px;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
.bottom {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 400;
|
|
@@ -524,6 +754,24 @@ const attention = (idx) => {
|
|
|
text-align: left;
|
|
|
font-style: normal;
|
|
|
}
|
|
|
+.active {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #222222;
|
|
|
+ line-height: 25px;
|
|
|
+ text-align: justify;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.toptitle {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #999999;
|
|
|
+ line-height: 25px;
|
|
|
+ text-align: justify;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
.title {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 500;
|