| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- <template>
- <view scroll-y="true" :class="view + ' wrap ' + (isIPX?'scroll_view_X': '')" @tap="onTap" upper-threshold="-50"
- :scroll-into-view="toView">
- <view>
- <u-modal v-model="show" title="消息举报" ref="uModal" confirm-text="举报" :async-close="true"
- @confirm="reportMsg">
- <view class="slot-content">
- <u-field v-model="reason" label="举报原因" placeholder="请填写举报原因" type="textarea" :auto-height="false"
- :clearable="false" maxlength="100">
- </u-field>
- </view>
- </u-modal>
- <u-action-sheet :list="list" @click="onMenuClick" v-model="showRpt"></u-action-sheet>
- <u-action-sheet :list="typeList" @click="onReportTypeClick" v-model="showRptType"></u-action-sheet>
- </view>
- <!-- <view class="tips">本应用仅用于环信产品功能开发测试,请勿用于非法用途。任何涉及转账、汇款、裸聊、网恋、网购退款、投资理财等统统都是诈骗,请勿相信!</view> -->
- <view class="chat-top ddflex" v-if="recommendCard&&recommendCard.userType==1">
- <view class="li ddflex" v-if="recommendCard.visitingCardDTO.wechat" @click="showWeChatCodePop()">
- <image src="../../../static/chat_wx.png">
- </image>
- <view>加微信</view>
- </view>
- <view class="li ddflex" @click="callPhone(recommendCard.visitingCardDTO.phone)">
- <image src="../../../static/chat_dh.png"></image>
- <view>打电话</view>
- </view>
- <view class="li ddflex" @click="jumpUrl('/card/index/index?cardId='+recommendCard.visitingCardDTO.id)">
- <image src="../../../static/chat_wy.png"></image>
- <view>进微页</view>
- </view>
- </view>
- <view @longtap="onMsgTap(item)" class="message" v-for="item in chatMsg" :key="item.mid" :id="item.mid">
- <view class="main-time">{{handleTime(item)}}</view>
- <view class="main" :class="item.style">
- <!-- yourname:就是消息的 from -->
- <!-- <view class="user">
- <text v-if="!item.style"
- class="user-text">{{ showMessageListNickname(item) + ' ' + handleTime(item)}}</text>
- </view> -->
- <image class="avatar" :src="showMessageListAvatar(item)" />
- <view class="msg">
- <image class="err" :class="(item.style == 'self' && item.isFail) ? 'show' : 'hide'"
- src="../../../static/msgerr.png" />
- <image v-if="item.style == 'self'" src="../../../static/poprightarrow2x.png"
- class="msg_poprightarrow" />
- <image v-if="item.style == ''" src="../../../static/popleftarrow2x.png" class="msg_popleftarrow" />
- <view v-if="item.msg.type == 'img' || item.msg.type == 'video'">
- <image v-if="item.msg.type == 'img'" class="avatar" :src="item.msg.data"
- style="width:90px; margin:2px auto;" mode="widthFix" @tap="previewImage"
- :data-url="item.msg.data" />
- <video v-if="item.msg.type == 'video'" :src="item.msg.data" controls style="width:300rpx;" />
- </view>
- <audio-msg v-if="item.msg.type == 'audio'" :msg="item"></audio-msg>
- <file-msg v-if="item.msg.type == 'file'" :msg="item"></file-msg>
- <view v-else-if="item.msg.type == 'txt' || item.msg.type == 'emoji'">
- <view class="template" v-for="(d_item, d_index) in item.msg.data" :key="d_index">
- <text :data-msg="item" @tap="clickMsg" v-if="d_item.type == 'txt'" class="msg-text"
- style="float:left;" selectable="true">{{ d_item.data }}</text>
- <image v-if="d_item.type == 'emoji'" class="avatar"
- :src="'../../../static/faces/' + d_item.data"
- style="width:25px; height:25px; margin:0 0 2px 0; float:left;" />
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- <view class="lixian ddflex">会话已结束,用时 05:30</view>
- <view class="lixian ddflex">当前顾问处于离线状态,<button open-type="contact">点此联系智能客服</button></view>
- -->
- </view>
- <!-- <view style="height: 1px;"></view> -->
- </template>
- <script>
- let req = require('../../../../utils/request');
- let msgStorage = require("../msgstorage");
- let disp = require("../../../../hxChatSDK/utils/broadcast");
- let timeFormats = require("../../../../hxChatSDK/utils/timeFormat");
- let LIST_STATUS = {
- SHORT: "scroll_view_change",
- NORMAL: "scroll_view"
- };
- let page = 0;
- let Index = 0;
- let curMsgMid = '';
- let isFail = false;
- import audioMsg from "./type/audio/audio";
- import fileMsg from "./type/file";
- let WebIM = require("../../../../hxChatSDK/utils/WebIM")["default"];
- export default {
- data() {
- return {
- view: LIST_STATUS.NORMAL,
- toView: "",
- chatMsg: [],
- visibility: false,
- isIPX: false,
- title: '消息举报',
- list: [{
- text: '举报'
- }],
- show: false,
- showRpt: false,
- showRptType: false,
- rptMsgId: '', // 举报消息id
- rptType: '', // 举报类型
- reason: '',
- typeList: [{
- text: "涉政"
- },
- {
- text: "涉黄"
- },
- {
- text: "广告"
- },
- {
- text: "辱骂"
- },
- {
- text: "暴恐"
- },
- {
- text: "违禁"
- }
- ],
- defaultAvatar: "../../../static/theme2x.png",
- defaultGroupAvatar: "../../..//static/groupTheme.png",
- recommendCard: '',
- isShowCodePop: false,
- };
- },
- components: {
- audioMsg,
- fileMsg
- },
- props: {
- username: {
- type: Object,
- default: () => ({})
- }
- },
- // lifetimes
- created() {},
- beforeMount() {
- this.visibility = true;
- page = 0;
- Index = 0;
- },
- moved() {},
- destroyed() {
- this.visibility = false;
- msgStorage.off("newChatMsg", this.dispMsg)
- },
- mounted(event) {
- let me = this;
- if (getApp().globalData.isIPX) {
- this.setData({
- isIPX: true
- });
- }
- this.username = uni.username;
- let username = this.username;
- let myUsername = uni.getStorageSync("myUsername");
- let sessionKey = username.groupId ? username.groupId + myUsername : username.your + myUsername;
- let chatMsg = uni.getStorageSync(sessionKey) || [];
- this.renderMsg(null, null, chatMsg, sessionKey);
- uni.setStorageSync(sessionKey, null);
- disp.on('em.error.sendMsgErr', function(err) {
- // curMsgMid = err.data.mid;
- isFail = true;
- // return;
- console.log('发送失败了');
- return;
- let msgList = me.chatMsg;
- msgList.map(item => {
- if (item.mid.substring(item.mid.length - 10) == curMsgMid.substring(curMsgMid.length -
- 10)) {
- item.msg.data[0].isFail = true;
- item.isFail = true;
- me.setData({
- chatMsg: msgList
- });
- }
- });
- // if (me.curChatMsg[0].mid == curMsgMid) {
- // me.curChatMsg[0].msg.data[0].isShow = false;
- // me.curChatMsg[0].isShow = false;
- // }
- uni.setStorageSync("rendered_" + sessionKey, msgList);
- });
- msgStorage.on("newChatMsg", this.dispMsg);
- this.getUserInfo();
- },
- computed: {
- //处理时间显示
- handleTime() {
- return (item) => {
- return timeFormats.timeFormat(item.time, 'mm/dd/hh:MM')
- }
- }
- },
- methods: {
- jumpUrl(url) {
- uni.navigateTo({
- url: url
- })
- },
- showWeChatCodePop() {
- this.$emit("showWeChatCodePop", true, this.recommendCard);
- },
- //获取用户数据
- getUserInfo() {
- // this.username = uni.username;
- var id = this.username.your.replace('rs_', '');
- req.getRequest('/api/user/userInfoById', {
- userId: id
- }, data => {
- this.recommendCard = data;
- });
- },
- // 拨打电话
- callPhone(val) {
- if (!val) return false
- uni.makePhoneCall({
- phoneNumber: val
- });
- },
- normalScroll() {
- this.setData({
- view: LIST_STATUS.NORMAL
- });
- },
- //消息列表头像展示
- showMessageListAvatar(item) {
- // console.log('item>>>>>',item);
- const imUserInfo = uni.getStorageSync("imUserInfo_" + item.info.from);
- if (imUserInfo && imUserInfo.avatar) {
- return imUserInfo.avatar;
- } else {
- return this.defaultAvatar;
- }
- },
- //消息列表昵称显示
- showMessageListNickname(item) {
- // const friendUserInfoMap = getApp().globalData.friendUserInfoMap;
- const imUserInfo = uni.getStorageSync("imUserInfo_" + item.info.from);
- if (imUserInfo && imUserInfo.nickName) {
- return imUserInfo.nickName;
- } else {
- return item.yourname;
- }
- },
- dispMsg(renderableMsg, type, curChatMsg, sesskey) {
- let me = this;
- let username = this.username;
- let myUsername = uni.getStorageSync("myUsername");
- let sessionKey = username.groupId ? username.groupId + myUsername : username.your + myUsername;
- me.curChatMsg = curChatMsg;
- if (!me.visibility) return; // 判断是否属于当前会话
- if (username.groupId) {
- // 群消息的 to 是 id,from 是 name
- if (renderableMsg.info.from == username.groupId || renderableMsg.info.to == username.groupId) {
- if (sesskey == sessionKey) {
- me.renderMsg(renderableMsg, type, curChatMsg, sessionKey, 'newMsg');
- }
- }
- } else if (renderableMsg.info.from == username.your || renderableMsg.info.to == username.your) {
- if (sesskey == sessionKey) {
- me.renderMsg(renderableMsg, type, curChatMsg, sessionKey, 'newMsg');
- }
- }
- },
- onInput(e) {
- this.setData({
- reason: e.target.value
- })
- },
- shortScroll() {
- this.setData({
- view: LIST_STATUS.SHORT
- });
- },
- onTap() {
- this.$emit("msglistTap", null, {
- bubbles: true
- });
- },
- onMsgTap(item) {
- // 别人发的消息
- if (item.style !== 'self') {
- this.setData({
- showRpt: true,
- rptMsgId: item.id
- })
- }
- },
- onMenuClick(idx) {
- if (idx === 0) {
- this.setData({
- showRptType: true
- })
- }
- },
- reportMsg() {
- let that = this
- if (this.reason === '') {
- this.$refs.uModal.clearLoading();
- uni.showToast({
- title: "请填写举报原因",
- icon: 'none'
- });
- return false
- }
- WebIM.conn
- .reportMessage({
- reportType: that.rptType, // 举报类型
- reportReason: that.reason, // 举报原因。
- messageId: that.rptMsgId // 上报消息id
- })
- .then(() => {
- uni.showToast({
- title: "举报成功",
- icon: 'none'
- });
- })
- .catch((e) => {
- uni.showToast({
- title: "举报失败",
- icon: 'none'
- });
- }).finally(() => {
- that.setData({
- reason: '',
- rptType: '',
- rptMsgId: '',
- show: false
- })
- });
- },
- onReportTypeClick(idx) {
- // 设置举报类型
- this.setData({
- rptType: this.typeList[idx].text,
- show: true
- })
- },
- previewImage(event) {
- var url = event.target.dataset.url;
- uni.previewImage({
- urls: [url] // 需要预览的图片 http 链接列表
- });
- },
- getHistoryMsg() {
- let me = this;
- let username = this.username;
- let myUsername = uni.getStorageSync("myUsername");
- let sessionKey = username.groupId ? username.groupId + myUsername : username.your + myUsername;
- let historyChatMsgs = uni.getStorageSync("rendered_" + sessionKey) || [];
- if (Index < historyChatMsgs.length) {
- let timesMsgList = historyChatMsgs.slice(-Index - 10, -Index);
- this.setData({
- chatMsg: timesMsgList.concat(me.chatMsg),
- toView: timesMsgList[timesMsgList.length - 1].mid
- });
- Index += timesMsgList.length;
- if (timesMsgList.length == 10) {
- page++;
- }
- uni.stopPullDownRefresh();
- }
- },
- renderMsg(renderableMsg, type, curChatMsg, sessionKey, isnew) {
- let me = this;
- var historyChatMsgs = uni.getStorageSync("rendered_" + sessionKey) || [];
- historyChatMsgs = historyChatMsgs.concat(curChatMsg);
- if (!historyChatMsgs.length) return;
- if (isnew == 'newMsg') {
- this.setData({
- chatMsg: this.chatMsg.concat(curChatMsg),
- // 跳到最后一条
- toView: historyChatMsgs[historyChatMsgs.length - 1].mid
- });
- } else {
- this.setData({
- chatMsg: historyChatMsgs.slice(-10),
- // 跳到最后一条
- toView: historyChatMsgs[historyChatMsgs.length - 1].mid
- });
- }
- uni.setStorageSync("rendered_" + sessionKey, historyChatMsgs);
- let chatMsg = uni.getStorageSync(sessionKey) || [];
- chatMsg.map(function(item, index) {
- curChatMsg.map(function(item2, index2) {
- if (item2.mid == item.mid) {
- chatMsg.splice(index, 1);
- }
- });
- });
- uni.setStorageSync(sessionKey, chatMsg);
- Index = historyChatMsgs.slice(-10).length;
- // setTimeout 兼容支付宝小程序
- setTimeout(() => {
- uni.pageScrollTo({
- scrollTop: 5000,
- duration: 300,
- fail: (e) => {
- //console.log('滚失败了', e)
- }
- });
- }, 100)
- if (isFail) {
- this.renderFail(sessionKey);
- }
- },
- renderFail(sessionKey) {
- let me = this;
- let msgList = me.chatMsg;
- msgList.map(item => {
- if (item.mid.substring(item.mid.length - 10) == curMsgMid.substring(curMsgMid.length - 10)) {
- item.msg.data[0].isFail = true;
- item.isFail = true;
- me.setData({
- chatMsg: msgList
- });
- }
- });
- if (me.curChatMsg[0].mid == curMsgMid) {
- me.curChatMsg[0].msg.data[0].isShow = false;
- me.curChatMsg[0].isShow = false;
- }
- uni.setStorageSync("rendered_" + sessionKey, msgList);
- isFail = false;
- },
- clickMsg(event) {
- if (typeof(event.target.dataset.msg) == 'object' &&
- event.target.dataset.msg.msg.ext &&
- event.target.dataset.msg.msg.ext.msg_extension) {
- this.$emit("clickMsg", event.target.dataset.msg.msg.ext)
- }
- }
- }
- };
- </script>
- <style>
- @import "./msglist.css";
- </style>
|