index.vue
4.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<template>
<div class="container">
<div class="minetopkkk">
<div class="minetophezi" v-if="show">
<div class="flexone">
<div class="tieziimg tieziimgkk">
<img :src="userinfo.avatar" alt="" />
</div>
<div class="tieziright">
<div class="tiezirighttop flex">
<div>
<div class="tieziming">{{ userinfo.nickname }}</div>
</div>
<div>
<div class="vipimg">
<img src="../../../assets/vip_icon@2x.png" alt="" />
<div class="vipname">{{ userinfo.level.name1 }}</div>
</div>
</div>
<img
src="../../../assets/banggong_icon@2x.png"
class="banggongimg"
alt=""
/>
<img
src="../../../assets/peisong_icon@2x.png"
class="banggongimg"
alt=""
/>
<img
src="../../../assets/yirenzheng_icon@2x.png"
class="banggongimg banggongimgkk"
alt=""
/>
</div>
<div class="tiezibto flexone"></div>
</div>
</div>
<div class="fubulist flextwo">
<div class="fabuitem flexfour" @click="goenter(0)">
<div class="fabuname">{{ total1 }}</div>
<div class="fabuname">我的发布</div>
</div>
<div class="fabuitem flexfour" @click="goenter(1)">
<div class="fabuname">{{ total2 }}</div>
<div class="fabuname">我的关注</div>
</div>
<div class="fabuitem flexfour" @click="goenter(2)">
<div class="fabuname">{{ total3 }}</div>
<div class="fabuname">我的点赞</div>
</div>
<div class="fabuitem flexfour" @click="goenter(3)">
<div class="fabuname">{{ total4 }}</div>
<div class="fabuname">我的评论</div>
</div>
</div>
</div>
</div>
<div class="collectbox">
<div class="collectboxitem flexone" @click="collect(1)">
<img
src="../../../assets/shoucnag_Icon@2x.png"
alt=""
class="collectimg"
/>
我的收藏
</div>
<div class="collectboxitem flexone" @click="collect(2)">
<img
src="../../../assets/huiyuan_icon@2x.png"
alt=""
class="collectimg"
/>
我的会员
</div>
<div class="collectboxitem flexone" @click="collect(3)">
<img
src="../../../assets/shezhi_icon@2x.png"
alt=""
class="collectimg"
/>
设置
</div>
<div class="collectboxitem flexone" @click="collect(4)">
<img
src="../../../assets/guanyu_icon@2x.png"
alt=""
class="collectimg"
/>
关于我们
</div>
</div>
<tabBar v-bind:active="4" />
</div>
</template>
<script>
import tabBar from "@/components/tabBar.vue";
export default {
components: {
tabBar
},
data() {
return {
userinfo: "",
show: false,
total1: "",
total2: "",
total3: "",
total4: ""
};
},
created() {
this.getuserinfo();
},
methods: {
collect(id) {
if (id == 1) {
this.$router.push({
path: "/mycollect",
query: {
type: 3
}
});
} else if (id == 3) {
this.$router.push({
path: "/shezhi",
query: {
type: 3
}
});
}
},
// 获取用户信息
getuserinfo() {
let that = this;
var url = "/api/member/index";
var params = {};
console.log("7766554", params);
that.$axios
.post(url, params)
.then(res => {
that.userinfo = res.data;
setTimeout(function() {
that.show = true;
}, 50);
// 获取帖子数量
that.gettiezinum();
})
.catch(err => {});
},
// 获取帖子数量
gettiezinum() {
let that = this;
var url = "/api/forum/get_total";
var params = {};
console.log("7766554", params);
that.$axios
.post(url, params)
.then(res => {
console.log(res);
that.total1 = res.data.total1;
that.total2 = res.data.total2;
that.total3 = res.data.total3;
that.total4 = res.data.total4;
})
.catch(err => {});
},
// 进入我的收藏
goenter(id) {
this.$router.push({
path: "/mycollect",
query: {
type: id
}
});
}
}
};
</script>
<style scoped>
@import "../../style/homepage.css";
</style>