index.vue
6.1 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<template>
<div class="container">
<div class="minetopkkk">
<div class="minetophezi" v-if="show">
<div class="flexone" @click="personziliao">
<div class="tieziimg tieziimgkk">
<img :src="userinfo.avatar" alt="" />
</div>
<div class="tieziright">
<div class="tiezirighttop flex">
<div class="timeright">
<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="item.logo_image"
class="banggongimg"
alt=""
v-for="(item, index) in label"
:key="index"
/>
<!-- <img
src="../../../assets/peisong_icon@2x.png"
class="banggongimg"
alt=""
/> -->
<img
src="../../../assets/yirenzheng_icon@2x.png"
class="banggongimg banggongimgkk"
alt=""
v-if="userinfo.is_card == 1"
/>
</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">{{ total3 }}</div>
<div class="fabuname">关注</div>
</div>
<div class="fabuitem flexfour" @click="goenter(2)">
<div class="fabuname">{{ total2 }}</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 class="collectboxitem flexone" @click="collect(5)">
<img
src="../../../assets/zigezheng.png"
alt=""
class="collectimg"
style="width:0.34rem;margin-right:0.38rem"
/>
资格证
</div>
</div>
<tabBar v-bind:active="4" />
</div>
</template>
<script>
import tabBar from "@/components/tabsec.vue";
export default {
components: {
tabBar
},
data() {
return {
userinfo: "",
show: false,
total1: "",
total2: "",
total3: "",
total4: "",
guanwang: "",
label: ''
};
},
created() {
this.getuserinfo();
// 获取中面官网
this.getgaunwang()
},
methods: {
// 获取中面官网
getgaunwang() {
let that = this;
var url = '/api/sundry/get_page';
var params = {
id: 13
}
that.$axios.post(url, params).then((res) => {
console.log(res, 999999)
that.guanwang = res.data.content;
console.log(that.guanwang)
}).catch((err) => {
})
},
collect(id) {
if (id == 1) {
this.$router.push({
path: "/myshoucang",
});
} else if (id == 3) {
this.$router.push({
path: "/shezhi",
query: {
type: 3
}
});
} else if (id == 4) {
window.location.href = this.guanwang
}else if(id==5){
this.$router.push({
path: "/mykaoshi"
});
}
},
// 修改个人资料
personziliao() {
this.$router.push({
path: '/personziliao'
})
},
// 获取用户信息
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;
this.label = res.data.label;
localStorage.setItem("avatar", res.data.avatar)
localStorage.setItem("address", res.data.address)
localStorage.setItem("nickname", res.data.nickname)
localStorage.setItem("label", JSON.stringify(res.data.label))
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>