| 
					
				 | 
			
			
				@@ -71,6 +71,11 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           <view class="tit">全部留言</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           <view class="right" v-if="!isMine" @tap="isShowReportDialog = true;">内容违规,我要举报</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <view class="mine"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <image :src="imageUrl + userInfo.avatar" mode="aspectFill" v-if="userInfo.avatar"></image> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <image src="@/static/common/logo.png" mode="aspectFill" v-else></image> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <view class="box" @click="openRemark()">我也要留言~</view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </view> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <view class="list"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           <view class="item" v-for="(item, index) in remarkList" :key="index"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <view class="top"> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -186,7 +191,8 @@ import { uploadImg } from '@/common/utils/util.js' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         reportForm: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           reason: '', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           fileList: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        userInfo: {}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -226,6 +232,7 @@ import { uploadImg } from '@/common/utils/util.js' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.id = id; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.getDetail(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       this.getRemarkList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.getUserInfo(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     methods: { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -257,10 +264,21 @@ import { uploadImg } from '@/common/utils/util.js' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       	}) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 获取用户信息 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      getUserInfo() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.$api.get('/wechat/user/info', { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          userId: this.$store.state.user.userId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).then(res => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          if(!res.data) return false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.userInfo = res.data; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       refresherrefresh() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.refresherTriggered = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.getDetail(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.getRemarkList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.getUserInfo(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       // 处理点赞留言 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -633,6 +651,28 @@ import { uploadImg } from '@/common/utils/util.js' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       line-height: 40rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  .mine { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    margin-top: 30rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    display: flex; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    image { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      width: 80rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      height: 80rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      border-radius: 50%; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      flex-shrink: 0; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    .box { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      flex: 1; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      height: 80rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      margin-left: 20rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      border-radius: 80rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      background: #f5f5f5; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      display: flex; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      align-items: center; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      padding: 0 30rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      font-size: 28rpx; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      color: $reg-font; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   .item { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     padding: 30rpx 0; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     border-bottom: 1px solid #eaeaea; 
			 |