mycomment.vue
3.4 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
<template>
<view class="content">
<view class="item" @click="tocommentlist(item)" v-for="(item,index) in commentlist" :key="index">
<view class="toprow">
<image class="photo" src="../../static/logo_img@2x.png"></image>
<view class="msg">
<view class="name">{{item.nickname}}</view>
<view class="time">{{item.createtime}}</view>
</view>
<view class="right" v-if="item.readtime==null">未读</view>
<view class="right" style="color:#BDC4CE" v-else>已读</view>
</view>
<view class="bottomrow">
{{item.des_content}}
</view>
</view>
<view class="nodata" v-if="commentlist.length==0">暂无数据</view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data(){
return{
page:1,
size:10,
commentlist:[],
user_id:''
}
},
methods:{
getcommentlist(){
var that = this
var url = "mes/getMyMes"
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.commentlist=res
}).catch((err)=>{
console.log(err)
})
},
tocommentlist(item){
uni.navigateTo({
url:'./commentContent?userb_id='+item.userb_id+"&nickname="+item.nickname+"&head_image="+item.head_image+"&user_id="+this.user_id
})
var that = this
var url = "mes/isReadMes"
var token = uni.getStorageSync('token')
var params = {
token:token,
usera_id:item.userb_id
}
app.post(url,params,"post").then((res)=>{
console.log(res)
}).catch((err)=>{
console.log(err)
})
}
},
onLoad(options){
this.user_id=options.user_id
this.getcommentlist()
}
}
</script>
<style lang="less">
.content{
// background:rgba(249,249,249,1);
padding: 28rpx 0;
.nodata{
font-size: 28rpx;
text-align: center;
padding: 20rpx 0;
}
.item{
width: 686rpx;
margin: 0 auto;
background-color: #fff;
padding: 32rpx;
box-sizing: border-box;
margin-bottom: 28rpx;
}
.toprow{
display: flex;
// justify-content: space-between;
.photo{
width: 68rpx;
height: 68rpx;
}
.msg{
// width: 200rpx;
margin-left: 20rpx;
.name{
font-size: 24rpx;
}
.time{
color:rgba(140,145,152,1);
font-size:22rpx;
}
}
.right{
color:rgba(235,128,121,1);
font-size: 24rpx;
margin-left: 324rpx;
// float: right;
width: 60rpx;
}
.readed{
color:rgba(189,196,206,1);
font-size: 24rpx;
margin-left: 364rpx;
}
}
.bottomrow{
font-size:24rpx;
margin-top: 24rpx;
}
}
</style>