123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798 |
- <template>
- <view class="content">
- <view class="list">
- <view class="list_item hflex acenter" @click="toList(1)">
- <image class="item_img" src="/static/images/mine/notice.png" mode="aspectFill"></image>
- <view class="number" v-if="notice_num > 0">{{notice_num}}</view>
- <view class="item_right">
- <view class="hflex acenter jbetween">
- <view class="hflex acenter">
- <view class="name">系统通知</view>
- </view>
- </view>
- </view>
- </view>
- <view class="list_item hflex acenter" @click="toList(2)">
- <image class="item_img" src="/static/images/mine/order_msg.png" mode="aspectFill"></image>
- <!-- <view class="number" v-if="message_num > 0">{{message_num}}</view> -->
- <view class="item_right">
- <view class="hflex acenter jbetween">
- <view class="hflex acenter">
- <view class="name">订单消息</view>
- </view>
- </view>
- </view>
- </view>
-
- </view>
- <view class="chat_list_wraper">
- <scroll-view scroll-y="true"
- :class="'chat_list_wraper ' + (gotop ? (isIPX ? 'goTopX' : 'goTop') : 'goback')"
- :style="'padding-bottom: ' + (isIPX ? '270rpx' : '226rpx')">
- <view class="search_input" v-if="search_chats">
- <view>
- <icon type="search" size="12"></icon>
- <input placeholder="搜索" placeholder-style="color:#9B9B9B;line-height:21px;font-size:15px;"
- auto-focus confirm-type="search" type="text" @confirm="onSearch" @input="onInput"
- :value="input_code" />
- <icon type="clear" size="12" @tap.stop="clearInput" v-if="show_clear"></icon>
- </view>
- <text @tap="cancel">取消</text>
- </view>
-
- <view v-for="(item, index) in arr" :key="index" class="chat_list" :data-item="item" @tap.stop="del_chat"
- @longpress="longpress">
- <swipe-delete>
- <!-- 通知模块 -->
- <!-- <view class="tap_mask" @tap.stop="into_inform" :data-item="item"
- v-if="item.chatType == 'INFORM'">
- <view class="list_box">
- <view class="list_left">
- <view class="list_pic">
- <view v-if="unReadTotalNotNum > 0" class="em-unread-spot2">{{
- unReadTotalNotNum
- }}</view>
- <image :class="unReadTotalNotNum > 0 ? 'haveSpot' : ''"
- src="/static/images/inform.png"></image>
- </view>
- <view class="list_text">
- <text class="list_user"> 系统通知 </text>
- <text class="list_word"
- v-if="item.chatType == 'INFORM'">申请通知来自:{{ item.info.from }}</text>
- </view>
- </view>
- <view class="list_right">
- <text :data-username="item.username">{{ item.time }}</text>
- </view>
- </view>
- </view> -->
-
- <view class="tap_mask" @tap.stop="into_chatRoom" :data-item="item">
- <!-- 消息列表 -->
- <view class="list_box">
- <view class="list_left" :data-username="item.your?item.your.nickname:item.username">
- <view class="list_pic">
- <view class="em-msgNum"
- v-if="item.unReadCount > 0 || item.unReadCount == '99+'">
- {{ item.unReadCount }}</view>
-
- <image :src="item.your?item.your.avatarurl:'/static/images/theme2x.png'"></image>
- </view>
- <view class="list_text">
- <text class="list_user text_hide">{{item.your?item.your.nickname:item.username}}</text>
- <text class="list_word" v-if="item.msg.data[0].data">{{
- item.msg.data[0].data
- }}</text>
- <text class="list_word" v-if="item.msg.type == 'img'">[图片]</text>
- <text class="list_word" v-if="item.msg.type == 'audio'">[语音]</text>
- <!-- <text class="list_word" v-if="item.msg.type == 'video'"
- >[视频]</text
- > -->
- </view>
- </view>
- <view class="list_right">
- <text :data-username="item.username">{{ item.time }}</text>
- </view>
- </view>
- </view>
- </swipe-delete>
- </view>
-
- <long-press-modal :winSize="winSize" :popButton="popButton" @change="pickerMenuChange"
- :showPop="showPop" @hidePop="hidePop" :popStyle="popStyle" />
- <!-- <view v-if="arr.length" class="chat_noChat">
- <image class="ctbg" src="/static/images/ctbg.png"></image>
- 暂无聊天消息
- </view> -->
- <!-- </view> -->
- </scroll-view>
- <!-- bug: margin-bottom 不生效 需要加一个空标签-->
- <view style="height: 1px"></view>
-
- <view class="mask" @tap="close_mask" v-if="show_mask"></view>
-
- <!-- <view :class="isIPX ? 'chatRoom_tab_X' : 'chatRoom_tab'"> -->
- <!-- <view class="tableBar">
- <view v-if="unReadSpotNum > 0 || unReadSpotNum == '99+'"
- :class="'em-unread-spot ' +(unReadSpotNum == '99+' ? 'em-unread-spot-litleFont' : '')">
- {{ unReadSpotNum == '99+'?unReadSpotNum:unReadSpotNum+ unReadTotalNotNum }}</view>
- <image :class="unReadSpotNum > 0 || unReadSpotNum == '99+' ? 'haveSpot' : ''"
- src="@/static/images/sessionhighlight2x.png"></image>
- <text class="activeText">消息</text>
- </view>
-
- <view class="tableBar" @tap="tab_contacts">
- <image src="/static/images/comtacts2x.png"></image>
- <text>联系人</text>
- </view> -->
-
- <!-- <view class="tableBar" @tap="tab_notification">
- <view v-if="unReadTotalNotNum > 0" class="em-unread-spot">{{
- unReadTotalNotNum
- }}</view>
- <image
- :class="unReadTotalNotNum > 0 ? 'haveSpot' : ''"
- src="/static/images/notice.png"
- ></image>
- <text>通知</text>
- </view> -->
-
- <!-- <view class="tableBar" @tap="tab_setting">
- <image src="/static/images/setting2x.png"></image>
- <text>我的</text>
- </view> -->
- <!-- </view> -->
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- let disp = require("@/utils/broadcast");
- var WebIM = require("@/utils/WebIM")["default"];
- let isfirstTime = true;
- import swipeDelete from "@/components/swipedelete/swipedelete";
- import longPressModal from "@/components/longPressModal/index";
-
- var that = ''
- export default {
- data() {
- return {
- pageList1:[],
- search_btn: true,
- search_chats: false,
- show_mask: false,
- yourname: "",
- unReadSpotNum: 0,
- unReadNoticeNum: 0,
- messageNum: 0,
- unReadTotalNotNum: 0,
- arr: [],
- show_clear: false,
- member: "",
- isIPX: false,
- gotop: false,
- input_code: "",
-
- groupName: {},
- winSize: {},
- popButton: ["删除该聊天"],
- showPop: false,
- popStyle: "",
- currentVal: '',
- notice_num: 0,
- message_num: 0
- }
- },
- components: {
- swipeDelete,
- longPressModal,
- },
- props: {},
-
- onLoad() {
- that = this
- this.getWindowSize();
- that.getNum()
- let me = this;
- //监听加好友申请
- disp.on("em.subscribe", function() {
- me.getChatList();
- /* me.setData({
- messageNum: getApp().globalData.saveFriendList.length,
- unReadTotalNotNum: getApp().globalData.saveFriendList.length +
- getApp().globalData.saveGroupInvitedList.length,
- }); */
- });
-
- //监听解散群
- disp.on("em.invite.deleteGroup", function() {
- me.listGroups();
- me.getRoster();
- me.getChatList();
- me.messageNum= getApp().globalData.saveFriendList.length
- });
-
- //监听未读消息数
- disp.on("em.unreadspot", function(message) {
- me.getChatList();
- me.unReadSpotNum= getApp().globalData.unReadMessageNum > 99 ?
- "99+" :
- getApp().globalData.unReadMessageNum
- });
-
- //监听未读加群“通知”
- disp.on("em.invite.joingroup", function() {
- me.unReadNoticeNum= getApp().globalData.saveGroupInvitedList.length
- me.unReadTotalNotNum= getApp().globalData.saveFriendList.length +
- getApp().globalData.saveGroupInvitedList.length
- });
-
- disp.on("em.contacts.remove", function() {
- me.getChatList();
- me.getRoster();
- });
-
- this.getRoster();
- },
- onShow: function() {
- // uni.hideHomeButton();
- this.getChatList();
- console.log(uni.getStorageSync('rendered_cbz_46admin-10010'))
- console.log('111111111',this.arr)
- this.unReadSpotNum =
- getApp().globalData.unReadMessageNum > 99 ?
- "99+" :
- getApp().globalData.unReadMessageNum
- try{
- this.messageNum = getApp().globalData.saveFriendList.length
- this.unReadNoticeNum = getApp().globalData.saveGroupInvitedList.length
- this.unReadTotalNotNum =
- getApp().globalData.saveFriendList.length +
- getApp().globalData.saveGroupInvitedList.length
-
- }catch(e){
- //TODO handle the exception
- }
- if (getApp().globalData.isIPX) {
- this.isIPX = true
- }
- },
- methods: {
- getNum() {
- $api.req({
- url: '/data/api.business.User/messagenoread',
- method: 'POST',
- }, function(res) {
- if(res.code == 1) {
- console.log(res)
- that.notice_num = res.data.message_count
- that.message_num = res.data.order_count
- }
- })
- },
- listGroups() {
- var me = this;
- return WebIM.conn.getGroup({
- limit: 50,
- success: function(res) {
- let groupName = {};
- let listGroup = res.data || [];
- listGroup.forEach((item) => {
- groupName[item.groupid] = item.groupname;
- });
-
- me.groupName= groupName,
- uni.setStorage({
- key: "listGroup",
- data: res.data,
- });
- me.getChatList();
- },
- error: function(err) {
- console.log(err);
- },
- });
- },
-
- getRoster() {
- let me = this;
- let rosters = {
- success(roster) {
- var member = [];
- for (let i = 0; i < roster.length; i++) {
- if (roster[i].subscription == "both") {
- member.push(roster[i]);
- }
- }
- uni.setStorage({
- key: "member",
- data: member,
- });
- me.member= member
- me.listGroups();
- //if(!systemReady){
- disp.fire("em.main.ready");
- //systemReady = true;
- //}
- me.arr= me.getChatList(),
- console.log('消息列表:',me.arr);
- me.unReadSpotNum= getApp().globalData.unReadMessageNum > 99 ?
- "99+" :
- getApp().globalData.unReadMessageNum
- },
- error(err) {
- console.log(err);
- },
- };
- WebIM.conn.getRoster(rosters);
- },
-
- /* // // 不包含陌生人版本
- // getChatList() {
- // var array = [];
- // var member = uni.getStorageSync("member");
- // var myName = uni.getStorageSync("myUsername");
- // var listGroups = uni.getStorageSync('listGroup') || [];
-
- // for (let i = 0; i < member.length; i++) {
- // let newChatMsgs = uni.getStorageSync(member[i].name + myName) || [];
- // let historyChatMsgs = uni.getStorageSync("rendered_" + member[i].name + myName) || [];
- // let curChatMsgs = historyChatMsgs.concat(newChatMsgs);
-
- // if (curChatMsgs.length) {
- // let lastChatMsg = curChatMsgs[curChatMsgs.length - 1];
- // lastChatMsg.unReadCount = newChatMsgs.length;
-
- // if (lastChatMsg.unReadCount > 99) {
- // lastChatMsg.unReadCount = "99+";
- // }
-
- // let dateArr = lastChatMsg.time.split(' ')[0].split('-');
- // let timeArr = lastChatMsg.time.split(' ')[1].split(':');
- // let month = dateArr[2] < 10 ? '0' + dateArr[2] : dateArr[2];
- // lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
- // lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
- // array.push(lastChatMsg);
- // }
- // }
-
- // for(let i = 0; i < listGroups.length; i++){
- // let newChatMsgs = uni.getStorageSync(listGroups[i].groupid + myName) || [];
- // let historyChatMsgs = uni.getStorageSync("rendered_" + listGroups[i].groupid + myName) || [];
- // let curChatMsgs = historyChatMsgs.concat(newChatMsgs);
- // if(curChatMsgs.length){
- // let lastChatMsg = curChatMsgs[curChatMsgs.length - 1];
- // lastChatMsg.unReadCount = newChatMsgs.length;
- // if(lastChatMsg.unReadCount > 99) {
- // lastChatMsg.unReadCount = "99+";
- // }
- // let dateArr = lastChatMsg.time.split(' ')[0].split('-')
- // let timeArr = lastChatMsg.time.split(' ')[1].split(':')
- // let month = dateArr[2] < 10 ? '0' + dateArr[2] : dateArr[2]
- // lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`
- // lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`
- // lastChatMsg.groupName = listGroups[i].groupname
- // array.push(lastChatMsg);
- // }
- // }
-
- // array.sort((a, b) => {
- // return b.dateTimeNum - a.dateTimeNum;
- // });
- // return array;
- // }, */
-
- // 包含陌生人版本
- getChatList() {
- var myName = uni.getStorageSync("myUsername");
- var array = [];
- const me = this;
- uni.getStorageInfo({
- success: function(res) {
- let storageKeys = res.keys;
- let newChatMsgKeys = [];
- let historyChatMsgKeys = [];
- let len = myName.length;
- storageKeys.forEach((item) => {
- if (item.slice(-len) == myName && item.indexOf("rendered_") == -1) {
- newChatMsgKeys.push(item);
- } else if (
- item.slice(-len) == myName &&
- item.indexOf("rendered_") > -1
- ) {
- historyChatMsgKeys.push(item);
- } else if (item === "INFORM") {
- newChatMsgKeys.push(item);
- }
- });
-
- cul.call(me, newChatMsgKeys, historyChatMsgKeys);
- },
- });
-
- function cul(newChatMsgKeys, historyChatMsgKeys) {
- let array = [];
- let lastChatMsg;
-
- for (let i = historyChatMsgKeys.length; i > 0, i--;) {
- let index = newChatMsgKeys.indexOf(historyChatMsgKeys[i].slice(9));
- if (index > -1) {
- let newChatMsgs = uni.getStorageSync(newChatMsgKeys[index]) || [];
- if (newChatMsgKeys.includes()) {}
- if (newChatMsgs.length) {
- lastChatMsg = newChatMsgs[newChatMsgs.length - 1];
- lastChatMsg.unReadCount = newChatMsgs.length;
- if (lastChatMsg.unReadCount > 99) {
- lastChatMsg.unReadCount = "99+";
- }
- let dateArr = lastChatMsg.time.split(" ")[0].split("-");
- let timeArr = lastChatMsg.time.split(" ")[1].split(":");
- let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
- lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
- lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
- newChatMsgKeys.splice(index, 1);
- } else {
- let historyChatMsgs = uni.getStorageSync(historyChatMsgKeys[i]);
- if (historyChatMsgs.length) {
- lastChatMsg = historyChatMsgs[historyChatMsgs.length - 1];
- let dateArr = lastChatMsg.time.split(" ")[0].split("-");
- let timeArr = lastChatMsg.time.split(" ")[1].split(":");
- let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
- lastChatMsg.dateTimeNum =
- `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
- lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
- }
- }
- } else {
- let historyChatMsgs = uni.getStorageSync(historyChatMsgKeys[i]);
- if (historyChatMsgs.length) {
- lastChatMsg = historyChatMsgs[historyChatMsgs.length - 1];
- let dateArr = lastChatMsg.time.split(" ")[0].split("-");
- let timeArr = lastChatMsg.time.split(" ")[1].split(":");
- let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
- lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
- lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
- }
- }
- if (
- lastChatMsg &&
- (lastChatMsg.chatType == "groupchat" ||
- lastChatMsg.chatType == "chatRoom")
- ) {
- lastChatMsg.groupName = me.groupName[lastChatMsg.info.to];
- }
- lastChatMsg && lastChatMsg.username != myName &&
- array.push(lastChatMsg);
- }
-
- for (let i = newChatMsgKeys.length; i > 0, i--;) {
- let newChatMsgs = uni.getStorageSync(newChatMsgKeys[i]) || [];
- if (newChatMsgs.length) {
- lastChatMsg = newChatMsgs[newChatMsgs.length - 1];
- lastChatMsg.unReadCount = newChatMsgs.length;
- if (lastChatMsg.unReadCount > 99) {
- lastChatMsg.unReadCount = "99+";
- }
- let dateArr = lastChatMsg.time.split(" ")[0].split("-");
- let timeArr = lastChatMsg.time.split(" ")[1].split(":");
- let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
- lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
- lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
- if (
- lastChatMsg.chatType == "groupchat" ||
- lastChatMsg.chatType == "chatRoom"
- ) {
- lastChatMsg.groupName = me.groupName[lastChatMsg.info.to];
- }
- lastChatMsg.username != myName && array.push(lastChatMsg);
- }
- }
-
- array.sort((a, b) => {
- return b.dateTimeNum - a.dateTimeNum;
- });
- this.arr= array
- console.log('this.arr',this.arr)
- }
- },
-
- openSearch: function() {
- this.search_btn= false
- this.search_chats= true
- this.gotop= true
- },
-
- onSearch: function(val) {
- let searchValue = val.detail.value;
- var myName = uni.getStorageSync("myUsername");
- const me = this;
- let serchList = [];
- let arr = [];
- uni.getStorageInfo({
- success: function(res) {
- let storageKeys = res.keys;
- let chatKeys = [];
- let len = myName.length;
- storageKeys.forEach((item) => {
- if (item.slice(-len) == myName) {
- chatKeys.push(item);
- }
- });
- chatKeys.forEach((item, index) => {
- if (item.indexOf(searchValue) != -1) {
- serchList.push(item);
- }
- });
- let lastChatMsg = "";
- serchList.forEach((item, index) => {
- let chatMsgs = uni.getStorageSync(item) || [];
- if (chatMsgs.length) {
- lastChatMsg = chatMsgs[chatMsgs.length - 1];
-
- let dateArr = lastChatMsg.time.split(" ")[0].split("-");
- let timeArr = lastChatMsg.time.split(" ")[1].split(":");
- let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
- lastChatMsg.dateTimeNum =
- `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
- lastChatMsg.time =
- `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
- arr.push(lastChatMsg);
- }
- });
- me.arr = arr
- },
- });
- },
- leftClick() {},
- cancel: function() {
- this.getChatList();
- this.search_btn= true
- this.search_chats= false
- //arr: this.getChatList(),
- this.unReadSpotNum= getApp().globalData.unReadMessageNum > 99 ? "99+" : getApp().globalData.unReadMessageNum
- this.gotop= false
- },
- clearInput: function() {
- this.input_code= ""
- this.show_clear= false
- },
- onInput: function(e) {
- let inputValue = e.detail.value;
- if (inputValue) {
- this.show_clear= true
- } else {
- this.show_clear= false
- }
- },
- tab_contacts: function() {
- uni.redirectTo({
- url: "../main/main?myName=" + uni.getStorageSync("myUsername"),
- });
- },
- close_mask: function() {
- this.search_btn= true
- this.search_chats= false
- this.show_mask= false
- },
- tab_setting: function() {
- uni.redirectTo({
- url: "../setting/setting",
- });
- },
- tab_notification: function() {
- uni.redirectTo({
- url: "../notification/notification",
- });
- },
- into_chatRoom: function(event) {
- let detail = event.currentTarget.dataset.item;
- if (
- detail.chatType == "groupchat" ||
- detail.chatType == "chatRoom" ||
- detail.groupName
- ) {
- this.into_groupChatRoom(detail);
- } else {
- this.into_singleChatRoom(detail);
- }
- },
- // 单聊
- into_singleChatRoom: function(detail) {
- console.log('detail',detail);
- var my = uni.getStorageSync("myUsername");
- var nameList = {
- myName: my,
- your: detail.username,
- };
- uni.navigateTo({
- url: "/pages/chatroom/chatroom?username=" + JSON.stringify(nameList),
- });
- },
- // 群聊 和 聊天室 (两个概念)
- into_groupChatRoom: function(detail) {
- var my = uni.getStorageSync("myUsername");
- var nameList = {
- myName: my,
- your: detail.groupName,
- groupId: detail.info.to,
- };
- uni.navigateTo({
- url: "../groupChatRoom/groupChatRoom?username=" + JSON.stringify(nameList),
- });
- },
-
- into_inform: function() {
- uni.redirectTo({
- url: "../notification/notification",
- });
- },
-
- removeAndRefresh: function(event) {
- let removeId = event.currentTarget.dataset.item.info.from
- let ary = getApp().globalData.saveFriendList
- let idx
- if (ary.length > 0) {
- ary.forEach((v, k) => {
- if (v.from == removeId) {
- idx = k
- }
- })
- getApp().globalData.saveFriendList.splice(idx, 1);
- }
- uni.removeStorageSync('INFORM')
- },
-
- del_chat: function(event) {
- let detail = event.currentTarget.dataset.item;
- let nameList = {};
- let me = this;
- // 删除当前选中群组聊天列表
- if (detail.chatType == "groupchat" || detail.chatType == "chatRoom") {
- nameList = {
- your: detail.info.to,
- };
- //删除当前选中通知列表
- } else if (detail.chatType === "INFORM") {
- nameList = {
- your: "INFORM",
- };
- }
- //删除当前选中好友聊天列表
- else {
- nameList = {
- your: detail.username,
- };
- }
- var myName = uni.getStorageSync("myUsername");
- var currentPage = getCurrentPages();
-
- uni.showModal({
- title: "确认删除?",
- confirmText: "删除",
- success: function(res) {
- if (res.confirm) {
- uni.removeStorageSync(nameList.your + myName);
- uni.removeStorageSync("rendered_" + nameList.your + myName);
- nameList.your === 'INFORM' && me.removeAndRefresh(event);
- // if (Object.keys(currentPage[0]).length>0) {
- // currentPage[0].onShow();
- // }
- disp.fire("em.chat.session.remove");
- me.getChatList();
- }
- },
- fail: function(err) {
- console.log('删除列表', err);
- },
- });
- },
- longpress: function(e) {
- //将当前选中的值存在data中方便后续操作
- this.currentVal = e
- let [touches, style, index] = [e.touches[0], "", e.currentTarget.dataset.index, ];
-
- /* 因 非H5端不兼容 style 属性绑定 Object ,所以拼接字符 */
- if (touches.clientY > this.winSize.height / 2) {
- style = `bottom:${this.winSize.height - touches.clientY}px;`;
- } else {
- style = `top:${touches.clientY}px;`;
- }
- if (touches.clientX > this.winSize.witdh / 2) {
- style += `right:${this.winSize.witdh - touches.clientX}px`;
- } else {
- style += `left:${touches.clientX}px`;
- }
-
- this.popStyle = style;
- // this.pickerUserIndex = Number(index);
- this.showShade = true;
- this.$nextTick(() => {
- setTimeout(() => {
- this.showPop = true;
- }, 10);
- });
- },
- /* 获取窗口尺寸 */
- getWindowSize() {
- uni.getSystemInfo({
- success: (res) => {
- this.winSize = {
- witdh: res.windowWidth,
- height: res.windowHeight,
- };
- },
- });
- },
- hidePop() {
- this.showPop = false;
- },
- pickerMenuChange() {
- console.log("当前选中>>", this.currentVal);
- this.del_chat(this.currentVal)
- },
- toList(index) {
- $api.jump('/pages/mine/message/list?index=' + index)
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- @import "./chat.css";
- .content {
- padding: 0 30rpx;
- background-color: #fff;
- .list {
- width: 100%;
- .list_item {
- width: 100%;
- margin: 48rpx 0 36rpx;
- position: relative;
- .item_img {
- width: 88rpx;
- height: 88rpx;
- border-radius: 50%;
-
- }
- .number {
- position: absolute;
- top: 5rpx;
- left: 70rpx;
- width: 32rpx;
- height: 32rpx;
- background-color: #ff4b4b;
- border: 1rpx solid #fff;
- border-radius: 50%;
- font-size: 24rpx;
- color: #fff;
- text-align: center;
- line-height: 32rpx;
- }
- .item_right {
- width: calc(100% - 108rpx);
- padding-left: 20rpx;
- .name {
- font-size: 28rpx;
- color: #222;
- }
- .text_style1 {
- font-size: 24rpx;
- color: #999;
- }
- .text_style2 {
- margin-left: 10rpx;
- width: 56rpx;
- height: 28rpx;
- border-radius: 8rpx;
- border: 1rpx solid #506dff;
- font-size: 20rpx;
- color: #506dff;
- text-align: center;
- line-height: 28rpx;
- }
- }
- }
- }
- }
- </style>
|