index.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view class="list_item hflex acenter" @click="toList(1)">
  5. <image class="item_img" src="/static/images/mine/notice.png" mode="aspectFill"></image>
  6. <view class="number" v-if="notice_num > 0">{{notice_num}}</view>
  7. <view class="item_right">
  8. <view class="hflex acenter jbetween">
  9. <view class="hflex acenter">
  10. <view class="name">系统通知</view>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="list_item hflex acenter" @click="toList(2)">
  16. <image class="item_img" src="/static/images/mine/order_msg.png" mode="aspectFill"></image>
  17. <!-- <view class="number" v-if="message_num > 0">{{message_num}}</view> -->
  18. <view class="item_right">
  19. <view class="hflex acenter jbetween">
  20. <view class="hflex acenter">
  21. <view class="name">订单消息</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="chat_list_wraper">
  28. <scroll-view scroll-y="true"
  29. :class="'chat_list_wraper ' + (gotop ? (isIPX ? 'goTopX' : 'goTop') : 'goback')"
  30. :style="'padding-bottom: ' + (isIPX ? '270rpx' : '226rpx')">
  31. <view class="search_input" v-if="search_chats">
  32. <view>
  33. <icon type="search" size="12"></icon>
  34. <input placeholder="搜索" placeholder-style="color:#9B9B9B;line-height:21px;font-size:15px;"
  35. auto-focus confirm-type="search" type="text" @confirm="onSearch" @input="onInput"
  36. :value="input_code" />
  37. <icon type="clear" size="12" @tap.stop="clearInput" v-if="show_clear"></icon>
  38. </view>
  39. <text @tap="cancel">取消</text>
  40. </view>
  41. <view v-for="(item, index) in arr" :key="index" class="chat_list" :data-item="item" @tap.stop="del_chat"
  42. @longpress="longpress">
  43. <swipe-delete>
  44. <!-- 通知模块 -->
  45. <!-- <view class="tap_mask" @tap.stop="into_inform" :data-item="item"
  46. v-if="item.chatType == 'INFORM'">
  47. <view class="list_box">
  48. <view class="list_left">
  49. <view class="list_pic">
  50. <view v-if="unReadTotalNotNum > 0" class="em-unread-spot2">{{
  51. unReadTotalNotNum
  52. }}</view>
  53. <image :class="unReadTotalNotNum > 0 ? 'haveSpot' : ''"
  54. src="/static/images/inform.png"></image>
  55. </view>
  56. <view class="list_text">
  57. <text class="list_user"> 系统通知 </text>
  58. <text class="list_word"
  59. v-if="item.chatType == 'INFORM'">申请通知来自:{{ item.info.from }}</text>
  60. </view>
  61. </view>
  62. <view class="list_right">
  63. <text :data-username="item.username">{{ item.time }}</text>
  64. </view>
  65. </view>
  66. </view> -->
  67. <view class="tap_mask" @tap.stop="into_chatRoom" :data-item="item">
  68. <!-- 消息列表 -->
  69. <view class="list_box">
  70. <view class="list_left" :data-username="item.your?item.your.nickname:item.username">
  71. <view class="list_pic">
  72. <view class="em-msgNum"
  73. v-if="item.unReadCount > 0 || item.unReadCount == '99+'">
  74. {{ item.unReadCount }}</view>
  75. <image :src="item.your?item.your.avatarurl:'/static/images/theme2x.png'"></image>
  76. </view>
  77. <view class="list_text">
  78. <text class="list_user text_hide">{{item.your?item.your.nickname:item.username}}</text>
  79. <text class="list_word" v-if="item.msg.data[0].data">{{
  80. item.msg.data[0].data
  81. }}</text>
  82. <text class="list_word" v-if="item.msg.type == 'img'">[图片]</text>
  83. <text class="list_word" v-if="item.msg.type == 'audio'">[语音]</text>
  84. <!-- <text class="list_word" v-if="item.msg.type == 'video'"
  85. >[视频]</text
  86. > -->
  87. </view>
  88. </view>
  89. <view class="list_right">
  90. <text :data-username="item.username">{{ item.time }}</text>
  91. </view>
  92. </view>
  93. </view>
  94. </swipe-delete>
  95. </view>
  96. <long-press-modal :winSize="winSize" :popButton="popButton" @change="pickerMenuChange"
  97. :showPop="showPop" @hidePop="hidePop" :popStyle="popStyle" />
  98. <!-- <view v-if="arr.length" class="chat_noChat">
  99. <image class="ctbg" src="/static/images/ctbg.png"></image>
  100. 暂无聊天消息
  101. </view> -->
  102. <!-- </view> -->
  103. </scroll-view>
  104. <!-- bug: margin-bottom 不生效 需要加一个空标签-->
  105. <view style="height: 1px"></view>
  106. <view class="mask" @tap="close_mask" v-if="show_mask"></view>
  107. <!-- <view :class="isIPX ? 'chatRoom_tab_X' : 'chatRoom_tab'"> -->
  108. <!-- <view class="tableBar">
  109. <view v-if="unReadSpotNum > 0 || unReadSpotNum == '99+'"
  110. :class="'em-unread-spot ' +(unReadSpotNum == '99+' ? 'em-unread-spot-litleFont' : '')">
  111. {{ unReadSpotNum == '99+'?unReadSpotNum:unReadSpotNum+ unReadTotalNotNum }}</view>
  112. <image :class="unReadSpotNum > 0 || unReadSpotNum == '99+' ? 'haveSpot' : ''"
  113. src="@/static/images/sessionhighlight2x.png"></image>
  114. <text class="activeText">消息</text>
  115. </view>
  116. <view class="tableBar" @tap="tab_contacts">
  117. <image src="/static/images/comtacts2x.png"></image>
  118. <text>联系人</text>
  119. </view> -->
  120. <!-- <view class="tableBar" @tap="tab_notification">
  121. <view v-if="unReadTotalNotNum > 0" class="em-unread-spot">{{
  122. unReadTotalNotNum
  123. }}</view>
  124. <image
  125. :class="unReadTotalNotNum > 0 ? 'haveSpot' : ''"
  126. src="/static/images/notice.png"
  127. ></image>
  128. <text>通知</text>
  129. </view> -->
  130. <!-- <view class="tableBar" @tap="tab_setting">
  131. <image src="/static/images/setting2x.png"></image>
  132. <text>我的</text>
  133. </view> -->
  134. <!-- </view> -->
  135. </view>
  136. </view>
  137. </template>
  138. <script>
  139. import $api from '@/static/js/api.js'
  140. let disp = require("@/utils/broadcast");
  141. var WebIM = require("@/utils/WebIM")["default"];
  142. let isfirstTime = true;
  143. import swipeDelete from "@/components/swipedelete/swipedelete";
  144. import longPressModal from "@/components/longPressModal/index";
  145. var that = ''
  146. export default {
  147. data() {
  148. return {
  149. pageList1:[],
  150. search_btn: true,
  151. search_chats: false,
  152. show_mask: false,
  153. yourname: "",
  154. unReadSpotNum: 0,
  155. unReadNoticeNum: 0,
  156. messageNum: 0,
  157. unReadTotalNotNum: 0,
  158. arr: [],
  159. show_clear: false,
  160. member: "",
  161. isIPX: false,
  162. gotop: false,
  163. input_code: "",
  164. groupName: {},
  165. winSize: {},
  166. popButton: ["删除该聊天"],
  167. showPop: false,
  168. popStyle: "",
  169. currentVal: '',
  170. notice_num: 0,
  171. message_num: 0
  172. }
  173. },
  174. components: {
  175. swipeDelete,
  176. longPressModal,
  177. },
  178. props: {},
  179. onLoad() {
  180. that = this
  181. this.getWindowSize();
  182. that.getNum()
  183. let me = this;
  184. //监听加好友申请
  185. disp.on("em.subscribe", function() {
  186. me.getChatList();
  187. /* me.setData({
  188. messageNum: getApp().globalData.saveFriendList.length,
  189. unReadTotalNotNum: getApp().globalData.saveFriendList.length +
  190. getApp().globalData.saveGroupInvitedList.length,
  191. }); */
  192. });
  193. //监听解散群
  194. disp.on("em.invite.deleteGroup", function() {
  195. me.listGroups();
  196. me.getRoster();
  197. me.getChatList();
  198. me.messageNum= getApp().globalData.saveFriendList.length
  199. });
  200. //监听未读消息数
  201. disp.on("em.unreadspot", function(message) {
  202. me.getChatList();
  203. me.unReadSpotNum= getApp().globalData.unReadMessageNum > 99 ?
  204. "99+" :
  205. getApp().globalData.unReadMessageNum
  206. });
  207. //监听未读加群“通知”
  208. disp.on("em.invite.joingroup", function() {
  209. me.unReadNoticeNum= getApp().globalData.saveGroupInvitedList.length
  210. me.unReadTotalNotNum= getApp().globalData.saveFriendList.length +
  211. getApp().globalData.saveGroupInvitedList.length
  212. });
  213. disp.on("em.contacts.remove", function() {
  214. me.getChatList();
  215. me.getRoster();
  216. });
  217. this.getRoster();
  218. },
  219. onShow: function() {
  220. // uni.hideHomeButton();
  221. this.getChatList();
  222. console.log(uni.getStorageSync('rendered_cbz_46admin-10010'))
  223. console.log('111111111',this.arr)
  224. this.unReadSpotNum =
  225. getApp().globalData.unReadMessageNum > 99 ?
  226. "99+" :
  227. getApp().globalData.unReadMessageNum
  228. try{
  229. this.messageNum = getApp().globalData.saveFriendList.length
  230. this.unReadNoticeNum = getApp().globalData.saveGroupInvitedList.length
  231. this.unReadTotalNotNum =
  232. getApp().globalData.saveFriendList.length +
  233. getApp().globalData.saveGroupInvitedList.length
  234. }catch(e){
  235. //TODO handle the exception
  236. }
  237. if (getApp().globalData.isIPX) {
  238. this.isIPX = true
  239. }
  240. },
  241. methods: {
  242. getNum() {
  243. $api.req({
  244. url: '/data/api.business.User/messagenoread',
  245. method: 'POST',
  246. }, function(res) {
  247. if(res.code == 1) {
  248. console.log(res)
  249. that.notice_num = res.data.message_count
  250. that.message_num = res.data.order_count
  251. }
  252. })
  253. },
  254. listGroups() {
  255. var me = this;
  256. return WebIM.conn.getGroup({
  257. limit: 50,
  258. success: function(res) {
  259. let groupName = {};
  260. let listGroup = res.data || [];
  261. listGroup.forEach((item) => {
  262. groupName[item.groupid] = item.groupname;
  263. });
  264. me.groupName= groupName,
  265. uni.setStorage({
  266. key: "listGroup",
  267. data: res.data,
  268. });
  269. me.getChatList();
  270. },
  271. error: function(err) {
  272. console.log(err);
  273. },
  274. });
  275. },
  276. getRoster() {
  277. let me = this;
  278. let rosters = {
  279. success(roster) {
  280. var member = [];
  281. for (let i = 0; i < roster.length; i++) {
  282. if (roster[i].subscription == "both") {
  283. member.push(roster[i]);
  284. }
  285. }
  286. uni.setStorage({
  287. key: "member",
  288. data: member,
  289. });
  290. me.member= member
  291. me.listGroups();
  292. //if(!systemReady){
  293. disp.fire("em.main.ready");
  294. //systemReady = true;
  295. //}
  296. me.arr= me.getChatList(),
  297. console.log('消息列表:',me.arr);
  298. me.unReadSpotNum= getApp().globalData.unReadMessageNum > 99 ?
  299. "99+" :
  300. getApp().globalData.unReadMessageNum
  301. },
  302. error(err) {
  303. console.log(err);
  304. },
  305. };
  306. WebIM.conn.getRoster(rosters);
  307. },
  308. /* // // 不包含陌生人版本
  309. // getChatList() {
  310. // var array = [];
  311. // var member = uni.getStorageSync("member");
  312. // var myName = uni.getStorageSync("myUsername");
  313. // var listGroups = uni.getStorageSync('listGroup') || [];
  314. // for (let i = 0; i < member.length; i++) {
  315. // let newChatMsgs = uni.getStorageSync(member[i].name + myName) || [];
  316. // let historyChatMsgs = uni.getStorageSync("rendered_" + member[i].name + myName) || [];
  317. // let curChatMsgs = historyChatMsgs.concat(newChatMsgs);
  318. // if (curChatMsgs.length) {
  319. // let lastChatMsg = curChatMsgs[curChatMsgs.length - 1];
  320. // lastChatMsg.unReadCount = newChatMsgs.length;
  321. // if (lastChatMsg.unReadCount > 99) {
  322. // lastChatMsg.unReadCount = "99+";
  323. // }
  324. // let dateArr = lastChatMsg.time.split(' ')[0].split('-');
  325. // let timeArr = lastChatMsg.time.split(' ')[1].split(':');
  326. // let month = dateArr[2] < 10 ? '0' + dateArr[2] : dateArr[2];
  327. // lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
  328. // lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
  329. // array.push(lastChatMsg);
  330. // }
  331. // }
  332. // for(let i = 0; i < listGroups.length; i++){
  333. // let newChatMsgs = uni.getStorageSync(listGroups[i].groupid + myName) || [];
  334. // let historyChatMsgs = uni.getStorageSync("rendered_" + listGroups[i].groupid + myName) || [];
  335. // let curChatMsgs = historyChatMsgs.concat(newChatMsgs);
  336. // if(curChatMsgs.length){
  337. // let lastChatMsg = curChatMsgs[curChatMsgs.length - 1];
  338. // lastChatMsg.unReadCount = newChatMsgs.length;
  339. // if(lastChatMsg.unReadCount > 99) {
  340. // lastChatMsg.unReadCount = "99+";
  341. // }
  342. // let dateArr = lastChatMsg.time.split(' ')[0].split('-')
  343. // let timeArr = lastChatMsg.time.split(' ')[1].split(':')
  344. // let month = dateArr[2] < 10 ? '0' + dateArr[2] : dateArr[2]
  345. // lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`
  346. // lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`
  347. // lastChatMsg.groupName = listGroups[i].groupname
  348. // array.push(lastChatMsg);
  349. // }
  350. // }
  351. // array.sort((a, b) => {
  352. // return b.dateTimeNum - a.dateTimeNum;
  353. // });
  354. // return array;
  355. // }, */
  356. // 包含陌生人版本
  357. getChatList() {
  358. var myName = uni.getStorageSync("myUsername");
  359. var array = [];
  360. const me = this;
  361. uni.getStorageInfo({
  362. success: function(res) {
  363. let storageKeys = res.keys;
  364. let newChatMsgKeys = [];
  365. let historyChatMsgKeys = [];
  366. let len = myName.length;
  367. storageKeys.forEach((item) => {
  368. if (item.slice(-len) == myName && item.indexOf("rendered_") == -1) {
  369. newChatMsgKeys.push(item);
  370. } else if (
  371. item.slice(-len) == myName &&
  372. item.indexOf("rendered_") > -1
  373. ) {
  374. historyChatMsgKeys.push(item);
  375. } else if (item === "INFORM") {
  376. newChatMsgKeys.push(item);
  377. }
  378. });
  379. cul.call(me, newChatMsgKeys, historyChatMsgKeys);
  380. },
  381. });
  382. function cul(newChatMsgKeys, historyChatMsgKeys) {
  383. let array = [];
  384. let lastChatMsg;
  385. for (let i = historyChatMsgKeys.length; i > 0, i--;) {
  386. let index = newChatMsgKeys.indexOf(historyChatMsgKeys[i].slice(9));
  387. if (index > -1) {
  388. let newChatMsgs = uni.getStorageSync(newChatMsgKeys[index]) || [];
  389. if (newChatMsgKeys.includes()) {}
  390. if (newChatMsgs.length) {
  391. lastChatMsg = newChatMsgs[newChatMsgs.length - 1];
  392. lastChatMsg.unReadCount = newChatMsgs.length;
  393. if (lastChatMsg.unReadCount > 99) {
  394. lastChatMsg.unReadCount = "99+";
  395. }
  396. let dateArr = lastChatMsg.time.split(" ")[0].split("-");
  397. let timeArr = lastChatMsg.time.split(" ")[1].split(":");
  398. let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
  399. lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
  400. lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
  401. newChatMsgKeys.splice(index, 1);
  402. } else {
  403. let historyChatMsgs = uni.getStorageSync(historyChatMsgKeys[i]);
  404. if (historyChatMsgs.length) {
  405. lastChatMsg = historyChatMsgs[historyChatMsgs.length - 1];
  406. let dateArr = lastChatMsg.time.split(" ")[0].split("-");
  407. let timeArr = lastChatMsg.time.split(" ")[1].split(":");
  408. let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
  409. lastChatMsg.dateTimeNum =
  410. `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
  411. lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
  412. }
  413. }
  414. } else {
  415. let historyChatMsgs = uni.getStorageSync(historyChatMsgKeys[i]);
  416. if (historyChatMsgs.length) {
  417. lastChatMsg = historyChatMsgs[historyChatMsgs.length - 1];
  418. let dateArr = lastChatMsg.time.split(" ")[0].split("-");
  419. let timeArr = lastChatMsg.time.split(" ")[1].split(":");
  420. let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
  421. lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
  422. lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
  423. }
  424. }
  425. if (
  426. lastChatMsg &&
  427. (lastChatMsg.chatType == "groupchat" ||
  428. lastChatMsg.chatType == "chatRoom")
  429. ) {
  430. lastChatMsg.groupName = me.groupName[lastChatMsg.info.to];
  431. }
  432. lastChatMsg && lastChatMsg.username != myName &&
  433. array.push(lastChatMsg);
  434. }
  435. for (let i = newChatMsgKeys.length; i > 0, i--;) {
  436. let newChatMsgs = uni.getStorageSync(newChatMsgKeys[i]) || [];
  437. if (newChatMsgs.length) {
  438. lastChatMsg = newChatMsgs[newChatMsgs.length - 1];
  439. lastChatMsg.unReadCount = newChatMsgs.length;
  440. if (lastChatMsg.unReadCount > 99) {
  441. lastChatMsg.unReadCount = "99+";
  442. }
  443. let dateArr = lastChatMsg.time.split(" ")[0].split("-");
  444. let timeArr = lastChatMsg.time.split(" ")[1].split(":");
  445. let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
  446. lastChatMsg.dateTimeNum = `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
  447. lastChatMsg.time = `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
  448. if (
  449. lastChatMsg.chatType == "groupchat" ||
  450. lastChatMsg.chatType == "chatRoom"
  451. ) {
  452. lastChatMsg.groupName = me.groupName[lastChatMsg.info.to];
  453. }
  454. lastChatMsg.username != myName && array.push(lastChatMsg);
  455. }
  456. }
  457. array.sort((a, b) => {
  458. return b.dateTimeNum - a.dateTimeNum;
  459. });
  460. this.arr= array
  461. console.log('this.arr',this.arr)
  462. }
  463. },
  464. openSearch: function() {
  465. this.search_btn= false
  466. this.search_chats= true
  467. this.gotop= true
  468. },
  469. onSearch: function(val) {
  470. let searchValue = val.detail.value;
  471. var myName = uni.getStorageSync("myUsername");
  472. const me = this;
  473. let serchList = [];
  474. let arr = [];
  475. uni.getStorageInfo({
  476. success: function(res) {
  477. let storageKeys = res.keys;
  478. let chatKeys = [];
  479. let len = myName.length;
  480. storageKeys.forEach((item) => {
  481. if (item.slice(-len) == myName) {
  482. chatKeys.push(item);
  483. }
  484. });
  485. chatKeys.forEach((item, index) => {
  486. if (item.indexOf(searchValue) != -1) {
  487. serchList.push(item);
  488. }
  489. });
  490. let lastChatMsg = "";
  491. serchList.forEach((item, index) => {
  492. let chatMsgs = uni.getStorageSync(item) || [];
  493. if (chatMsgs.length) {
  494. lastChatMsg = chatMsgs[chatMsgs.length - 1];
  495. let dateArr = lastChatMsg.time.split(" ")[0].split("-");
  496. let timeArr = lastChatMsg.time.split(" ")[1].split(":");
  497. let month = dateArr[2] < 10 ? "0" + dateArr[2] : dateArr[2];
  498. lastChatMsg.dateTimeNum =
  499. `${dateArr[1]}${month}${timeArr[0]}${timeArr[1]}${timeArr[2]}`;
  500. lastChatMsg.time =
  501. `${dateArr[1]}月${dateArr[2]}日 ${timeArr[0]}:${timeArr[1]}`;
  502. arr.push(lastChatMsg);
  503. }
  504. });
  505. me.arr = arr
  506. },
  507. });
  508. },
  509. leftClick() {},
  510. cancel: function() {
  511. this.getChatList();
  512. this.search_btn= true
  513. this.search_chats= false
  514. //arr: this.getChatList(),
  515. this.unReadSpotNum= getApp().globalData.unReadMessageNum > 99 ? "99+" : getApp().globalData.unReadMessageNum
  516. this.gotop= false
  517. },
  518. clearInput: function() {
  519. this.input_code= ""
  520. this.show_clear= false
  521. },
  522. onInput: function(e) {
  523. let inputValue = e.detail.value;
  524. if (inputValue) {
  525. this.show_clear= true
  526. } else {
  527. this.show_clear= false
  528. }
  529. },
  530. tab_contacts: function() {
  531. uni.redirectTo({
  532. url: "../main/main?myName=" + uni.getStorageSync("myUsername"),
  533. });
  534. },
  535. close_mask: function() {
  536. this.search_btn= true
  537. this.search_chats= false
  538. this.show_mask= false
  539. },
  540. tab_setting: function() {
  541. uni.redirectTo({
  542. url: "../setting/setting",
  543. });
  544. },
  545. tab_notification: function() {
  546. uni.redirectTo({
  547. url: "../notification/notification",
  548. });
  549. },
  550. into_chatRoom: function(event) {
  551. let detail = event.currentTarget.dataset.item;
  552. if (
  553. detail.chatType == "groupchat" ||
  554. detail.chatType == "chatRoom" ||
  555. detail.groupName
  556. ) {
  557. this.into_groupChatRoom(detail);
  558. } else {
  559. this.into_singleChatRoom(detail);
  560. }
  561. },
  562. // 单聊
  563. into_singleChatRoom: function(detail) {
  564. console.log('detail',detail);
  565. var my = uni.getStorageSync("myUsername");
  566. var nameList = {
  567. myName: my,
  568. your: detail.username,
  569. };
  570. uni.navigateTo({
  571. url: "/pages/chatroom/chatroom?username=" + JSON.stringify(nameList),
  572. });
  573. },
  574. // 群聊 和 聊天室 (两个概念)
  575. into_groupChatRoom: function(detail) {
  576. var my = uni.getStorageSync("myUsername");
  577. var nameList = {
  578. myName: my,
  579. your: detail.groupName,
  580. groupId: detail.info.to,
  581. };
  582. uni.navigateTo({
  583. url: "../groupChatRoom/groupChatRoom?username=" + JSON.stringify(nameList),
  584. });
  585. },
  586. into_inform: function() {
  587. uni.redirectTo({
  588. url: "../notification/notification",
  589. });
  590. },
  591. removeAndRefresh: function(event) {
  592. let removeId = event.currentTarget.dataset.item.info.from
  593. let ary = getApp().globalData.saveFriendList
  594. let idx
  595. if (ary.length > 0) {
  596. ary.forEach((v, k) => {
  597. if (v.from == removeId) {
  598. idx = k
  599. }
  600. })
  601. getApp().globalData.saveFriendList.splice(idx, 1);
  602. }
  603. uni.removeStorageSync('INFORM')
  604. },
  605. del_chat: function(event) {
  606. let detail = event.currentTarget.dataset.item;
  607. let nameList = {};
  608. let me = this;
  609. // 删除当前选中群组聊天列表
  610. if (detail.chatType == "groupchat" || detail.chatType == "chatRoom") {
  611. nameList = {
  612. your: detail.info.to,
  613. };
  614. //删除当前选中通知列表
  615. } else if (detail.chatType === "INFORM") {
  616. nameList = {
  617. your: "INFORM",
  618. };
  619. }
  620. //删除当前选中好友聊天列表
  621. else {
  622. nameList = {
  623. your: detail.username,
  624. };
  625. }
  626. var myName = uni.getStorageSync("myUsername");
  627. var currentPage = getCurrentPages();
  628. uni.showModal({
  629. title: "确认删除?",
  630. confirmText: "删除",
  631. success: function(res) {
  632. if (res.confirm) {
  633. uni.removeStorageSync(nameList.your + myName);
  634. uni.removeStorageSync("rendered_" + nameList.your + myName);
  635. nameList.your === 'INFORM' && me.removeAndRefresh(event);
  636. // if (Object.keys(currentPage[0]).length>0) {
  637. // currentPage[0].onShow();
  638. // }
  639. disp.fire("em.chat.session.remove");
  640. me.getChatList();
  641. }
  642. },
  643. fail: function(err) {
  644. console.log('删除列表', err);
  645. },
  646. });
  647. },
  648. longpress: function(e) {
  649. //将当前选中的值存在data中方便后续操作
  650. this.currentVal = e
  651. let [touches, style, index] = [e.touches[0], "", e.currentTarget.dataset.index, ];
  652. /* 因 非H5端不兼容 style 属性绑定 Object ,所以拼接字符 */
  653. if (touches.clientY > this.winSize.height / 2) {
  654. style = `bottom:${this.winSize.height - touches.clientY}px;`;
  655. } else {
  656. style = `top:${touches.clientY}px;`;
  657. }
  658. if (touches.clientX > this.winSize.witdh / 2) {
  659. style += `right:${this.winSize.witdh - touches.clientX}px`;
  660. } else {
  661. style += `left:${touches.clientX}px`;
  662. }
  663. this.popStyle = style;
  664. // this.pickerUserIndex = Number(index);
  665. this.showShade = true;
  666. this.$nextTick(() => {
  667. setTimeout(() => {
  668. this.showPop = true;
  669. }, 10);
  670. });
  671. },
  672. /* 获取窗口尺寸 */
  673. getWindowSize() {
  674. uni.getSystemInfo({
  675. success: (res) => {
  676. this.winSize = {
  677. witdh: res.windowWidth,
  678. height: res.windowHeight,
  679. };
  680. },
  681. });
  682. },
  683. hidePop() {
  684. this.showPop = false;
  685. },
  686. pickerMenuChange() {
  687. console.log("当前选中>>", this.currentVal);
  688. this.del_chat(this.currentVal)
  689. },
  690. toList(index) {
  691. $api.jump('/pages/mine/message/list?index=' + index)
  692. }
  693. },
  694. }
  695. </script>
  696. <style lang="scss" scoped>
  697. @import "./chat.css";
  698. .content {
  699. padding: 0 30rpx;
  700. background-color: #fff;
  701. .list {
  702. width: 100%;
  703. .list_item {
  704. width: 100%;
  705. margin: 48rpx 0 36rpx;
  706. position: relative;
  707. .item_img {
  708. width: 88rpx;
  709. height: 88rpx;
  710. border-radius: 50%;
  711. }
  712. .number {
  713. position: absolute;
  714. top: 5rpx;
  715. left: 70rpx;
  716. width: 32rpx;
  717. height: 32rpx;
  718. background-color: #ff4b4b;
  719. border: 1rpx solid #fff;
  720. border-radius: 50%;
  721. font-size: 24rpx;
  722. color: #fff;
  723. text-align: center;
  724. line-height: 32rpx;
  725. }
  726. .item_right {
  727. width: calc(100% - 108rpx);
  728. padding-left: 20rpx;
  729. .name {
  730. font-size: 28rpx;
  731. color: #222;
  732. }
  733. .text_style1 {
  734. font-size: 24rpx;
  735. color: #999;
  736. }
  737. .text_style2 {
  738. margin-left: 10rpx;
  739. width: 56rpx;
  740. height: 28rpx;
  741. border-radius: 8rpx;
  742. border: 1rpx solid #506dff;
  743. font-size: 20rpx;
  744. color: #506dff;
  745. text-align: center;
  746. line-height: 28rpx;
  747. }
  748. }
  749. }
  750. }
  751. }
  752. </style>