followPeople.vue
3.6 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
<template>
<view class="content">
<view class="item" @click="toschoolmate" v-for="(item,index) in likepeoplelist" :key="index" :data-id="item.user_id">
<image class="photo" src="../../static/logo_img@2x.png"></image>
<view class="cont">
<view class="title">{{}}</view>
<view class="academy">
<image class="icon" src="../../static/xuexiao_icon@2x2.png"></image>河北工业大学 软件学院 软件工程
</view>
<view class="fen">裸分</view>
</view>
<view class="right">
<image src="../../static/yiguanzhu_img@2x.png"></image>
<view class="text">已关注</view>
</view>
</view>
<view class="nodata" v-if="likepeoplelist.length==0">暂无数据</view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data(){
return{
page:1,
size:10,
likepeoplelist:[],
}
},
methods:{
getlikepeople(){
var that = this
var url = 'student/getMyLikeStudent'
var token = uni.getStorageSync('token')
var params = {
token:token,
page:that.page,
size:that.size
}
app.post(url,params,"get").then((res)=>{
console.log(res)
that.likepeoplelist=res
}).catch((err)=>{
console.log(err)
})
},
toschoolmate(e){
var id = e.currentTarget.dataset.id
console.log(id)
uni.navigateTo({
url:"../school/schoolmateMsg?user_id="+id
})
}
},
onLoad(){
this.getlikepeople()
}
}
</script>
<style lang="less">
.content{
background:rgba(249,249,249,1);
height: 100vh;
padding: 24rpx 0;
.nodata{
font-size: 28rpx;
text-align: center;
padding: 20rpx 0;
}
.item{
width:686rpx;
height:172rpx;
background:rgba(255,255,255,1);
opacity:1;
border-radius:8px;
margin: 0 auto;
background-color: #fff;
display: flex;
padding: 24rpx 32rpx;
box-sizing: border-box;
position: relative;
margin-bottom: 24rpx;
.photo{
width: 112rpx;
height: 112rpx;
margin-right: 26rpx;
margin-top: 6rpx;
}
.cont{
.title{
color:rgba(61,68,77,1);
font-size: 28rpx;
}
.academy{
color:rgba(61,68,77,1);
font-size: 22rpx;
margin-top: 4rpx;
display: flex;
align-items: center;
// line-height: 24rpx;
.icon{
width: 24rpx;
height: 24rpx;
margin-right: 6rpx;
}
}
.fen{
font-size: 22rpx;
color:rgba(140,145,152,1);
margin-top: 10rpx;
}
}
.right{
width: 132rpx;
height: 54rpx;
position: absolute;
right: 0;
top: 16rpx;
image{
width: 132rpx;
height: 54rpx;
}
.text{
color: #fff;
font-size: 24rpx;
width: 80rpx;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
}
}
}
</style>