|
|
@@ -259,7 +259,7 @@
|
|
|
<image @tap="goGuanZhu(item)" :src="item.avatar ? item.avatar : '/static/logo.png'"
|
|
|
class="chat-listitem-image"></image>
|
|
|
</view>
|
|
|
- <view v-if="item.content && item.messageType === 1" @longpress="copy(item.content)"
|
|
|
+ <view v-if="item.content && item.messageType === 1" @longpress="copyAndJubao(item)"
|
|
|
class="chat-listitem-text"
|
|
|
style="margin-left: 20rpx;color: #000000;background-color: #ffffff;">{{item.content}}</view>
|
|
|
<view v-if="item.messageType === 20" @tap="sendCallVideo(2)"
|
|
|
@@ -805,7 +805,7 @@
|
|
|
</view>
|
|
|
<view class="avatorm flex justify-center" v-if="records.company">
|
|
|
<view class="avatorm-box flex justify-center">
|
|
|
- 来自{{records.company.companyName}}的面试邀请,是否接受?
|
|
|
+ 来自{{records.company.companyAllName||records.company.companyName}}的面试邀请,是否接受?
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="btnm flex justify-center" style="margin-bottom: 30rpx;">
|
|
|
@@ -924,7 +924,7 @@
|
|
|
detailedAddress: '', //详细地址
|
|
|
},
|
|
|
tips: {
|
|
|
- text: '操作',
|
|
|
+ text: '',
|
|
|
color: 'black',
|
|
|
fontSize: 28
|
|
|
},
|
|
|
@@ -2077,6 +2077,7 @@
|
|
|
});
|
|
|
},
|
|
|
goGuanZhu(item) {
|
|
|
+ return
|
|
|
this.hideDrawer();
|
|
|
this.tUserId = item.userId
|
|
|
this.$Request.get('/app/user/selectUserByIds', {
|
|
|
@@ -2794,6 +2795,24 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ copyAndJubao(item) {
|
|
|
+ var that=this
|
|
|
+ uni.showActionSheet({
|
|
|
+ itemList: ['举报', '复制'],
|
|
|
+ success(res) {
|
|
|
+ if (res.tapIndex === 0) {
|
|
|
+ setTimeout(() => {
|
|
|
+ that.$queue.showToast('该用户聊天信息举报已成功提交审核');
|
|
|
+ }, 200);
|
|
|
+ } else if (res.tapIndex === 1) {
|
|
|
+ that.copy(item.content);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
+ console.log(res.errMsg);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|