|
@@ -14,11 +14,47 @@ import {
|
|
|
|
|
|
import { usePersonalIndexList } from "~/useHook/usePersonalIndex";
|
|
|
import debounce from "loadsh/debounce";
|
|
|
+import * as follow from "~/api/user";
|
|
|
|
|
|
//弹出层
|
|
|
-const dialogVisible = ref(false)
|
|
|
+const dialogVisible = ref(false);
|
|
|
const User = useUser();
|
|
|
|
|
|
+//弹出层
|
|
|
+const attention = () => {
|
|
|
+ dialogVisible.value = true;
|
|
|
+};
|
|
|
+
|
|
|
+const inde = ref(0);
|
|
|
+//关注列表
|
|
|
+const guan = (id) => {
|
|
|
+ inde.value = id;
|
|
|
+ if (id == 0) {
|
|
|
+ __articles__();
|
|
|
+ } else {
|
|
|
+ __fans__();
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const fllowlist = ref([]);
|
|
|
+const __fans__ = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await follow.follow({
|
|
|
+ is_page: 0,
|
|
|
+ });
|
|
|
+ fllowlist.value = data.list;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+const __articles__ = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await follow.follow({
|
|
|
+ is_page: 0,
|
|
|
+ });
|
|
|
+ fllowlist.value = data.list;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(__articles__);
|
|
|
+
|
|
|
console.log("user see>>", User);
|
|
|
|
|
|
// forum, news, article, video, collect
|
|
@@ -161,11 +197,27 @@ const handleRefreshListData = () => {
|
|
|
</ul>
|
|
|
</div>
|
|
|
<ul class="snm-right flex-row flex-aic">
|
|
|
- <li>
|
|
|
- <div class="xtit" @click="dialogVisible=true">已关注</div>
|
|
|
+ <li
|
|
|
+ @click="attention()"
|
|
|
+ style="
|
|
|
+ cursor: pointer;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div class="xtit" @click="dialogVisible = true">已关注</div>
|
|
|
<span>{{ User.follow_count }}</span>
|
|
|
</li>
|
|
|
- <li>
|
|
|
+ <li
|
|
|
+ @click="attention()"
|
|
|
+ style="
|
|
|
+ cursor: pointer;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ "
|
|
|
+ >
|
|
|
<div class="xtit">被关注</div>
|
|
|
<span>{{ User.fans_count }}</span>
|
|
|
</li>
|
|
@@ -217,13 +269,113 @@ const handleRefreshListData = () => {
|
|
|
<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 class="boxa">
|
|
|
+ <div style="display: flex">
|
|
|
+ <img
|
|
|
+ src="../../assets/logo.png"
|
|
|
+ style="width: 46px; height: 46px; border-radius: 50%"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <div style="margin-left: 12px">
|
|
|
+ <div class="name">这样重这样轻</div>
|
|
|
+ <div class="info">做电台节目的</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <!-- <div class="attention">关注</div> -->
|
|
|
+ <div class="atten">已关注</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
@import "~/styles/variable.scss";
|
|
|
+.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;
|
|
|
+}
|
|
|
+.atten {
|
|
|
+ width: 92px;
|
|
|
+ height: 38px;
|
|
|
+ background: #c7cbcc;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 38px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.attention {
|
|
|
+ background: #00b0b0;
|
|
|
+ border-radius: 4px;
|
|
|
+ width: 92px;
|
|
|
+ height: 38px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 38px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.name {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #333333;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: justify;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.info {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 10px;
|
|
|
+ color: #777777;
|
|
|
+ line-height: 14px;
|
|
|
+ text-align: justify;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 4px;
|
|
|
+}
|
|
|
+.boxa {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-top: 32px;
|
|
|
+}
|
|
|
|
|
|
ul {
|
|
|
list-style: none;
|