123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838 |
- <template>
- <view class="page" :style="{height:winHeight +'px',overflow:'hidden'}">
- <!-- #ifdef APP-PLUS -->
- <view class="topTitle">
- <view class="topFont">
- 消息{{unread_msg?'('+unread_msg+')':''}}
- </view>
- <view class="titleLf" @tap="actionMain">
- <image src="../../static/theme/default/chat/icon_more_add.png" mode=""></image>
- </view>
- </view>
- <!-- #endif -->
- <!-- #ifdef H5 || MP-WEIXIN-->
- <view class="topTitle">
- <view class="topFont">
- 消息{{unread_msg?'('+unread_msg+')':''}}
- </view>
- <view class="titleLf" @tap="actionMain">
- <image src="../../static/theme/default/chat/icon_more_add.png" mode=""></image>
- </view>
- </view>
- <!-- #endif -->
- <scroll-diy :height="scrolHeight+'px'" ref="mescrollRef" @init="mescrollInit" @down="downCallback"
- :up="{use:false,auto:false}" :down="{auto:false}">
- <view class="searchOut">
- <uni-search-bar ref="searchBar" placeholder="搜索" bgColor="#F7F7F7" :show="false" @confirm="search"
- @search="search">
- </uni-search-bar>
- </view>
- <view class="uni-list" v-if="list.length">
- <uni-swipe-action>
- <uni-swipe-action-item class="uni-list-cell" v-for="(value,key) of list" :key="key"
- :right-options="swipeData(value,key)" :auto-close="false" @click="swipeAction">
- <view class="uni-media-list"
- @tap="goMessage(value.list_id,key,value.no_reader_num,value.chat_id)">
- <view class="uni-media-list-logo">
- <image :src="staticPhoto + value.photo_path + '?_=' + imgRan" :lazy-load="true"
- style="border-radius: 10px;" :data-index="key" @error="imageError" />
- </view>
- <view class="red_num">
- <uni-badge :text="value.no_reader_num" type="error" />
- </view>
- <view class="uni-media-list-body" >
- <view class="uni-media-list-text-top" >
- <text>{{msgHandle(value.show_name+'',12)}}</text>
- <text style="float: right;color: #8f8f94;font-size: 23upx;flex-shrink: 0;" >
- {{timestampFormat(value.time)}}
- </text>
- </view>
- <view class="uni-media-list-text-bottom uni-ellipsis"
- v-if="obj_notice[value.list_id] == 1">
- <text style="color: red;">[有人@我]</text>{{value.last_msg+''}}
- </view>
- <view class="uni-media-list-text-bottom uni-ellipsis" v-else>
- {{value.last_msg+''}}
- </view>
- </view>
- </view>
- </uni-swipe-action-item>
- </uni-swipe-action>
- <!-- <view class="uni-list-cell"
- v-for="(value,key) of list"
- :key="key">
- <uni-swipe-action :options="swipeData(value.no_reader_num)"
- @click="swipeAction"
- @opened="openedAction(key)">
- <uni-swipe-action>
- <view class="uni-media-list"
- @tap="goMessage(value.list_id,key,value.no_reader_num,value.chat_id)">
- <view class="uni-media-list-logo">
- <image :src="staticPhoto + value.photo_path + '?_=' + imgRan"
- :lazy-load="true"
- style="border-radius: 10px;"
- :data-index="key"
- @error="imageError" />
- </view>
- <view class="red_num">
- <uni-badge :text="value.no_reader_num"
- type="error" />
- </view>
- <view class="uni-media-list-body">
- <view class="uni-media-list-text-top">
- <text>{{msgHandle(value.show_name+'',12)}}</text>
- <view style="float: right;color: #8f8f94;font-size: 23upx;">
- {{timestampFormat(value.time)}}
- </view>
- </view>
- <view class="uni-media-list-text-bottom uni-ellipsis">{{value.last_msg}}</view>
- </view>
- </view>
- </uni-swipe-action>
- </uni-swipe-action>
- </view> -->
- </view>
- <view class="noData" v-if="!list.length" style="
- height: 500px;
- ">
- <image src="../../static/theme/default/chat/defaultpage_nomessages.png" mode=""></image>
- <text>暂无聊天消息</text>
- </view>
- </scroll-diy>
- <view :class="['action_main animated faster',(action_menu ? 'bounceInDown' : 'bounceOutUp')]"
- v-show="showActionMenu" @tap="actionMain">
- <view class="action_base">
- <view class="action_item" @tap="goAction(1)">
- <view class="uni-media-list-logo action_icon">
- <image src="/static/theme/default/chat/1.png" :lazy-load="true" />
- </view>
- <text class="action_item_text">添加好友</text>
- </view>
- <view class="action_item" @tap="goAction(0)">
- <view class="uni-media-list-logo action_icon">
- <image src="/static/theme/default/chat/2.png" :lazy-load="true" />
- </view>
- <text class="action_item_text">发起群聊</text>
- </view>
- <view class="action_item" @tap="joinQun(0)">
- <view class="uni-media-list-logo action_icon">
- <image src="/static/theme/default/chat/5.png" :lazy-load="true" />
- </view>
- <text class="action_item_text">加入群聊</text>
- </view>
-
- <!-- <view class="action_item" @tap="goAction(2)">
- <view class="uni-media-list-logo action_icon">
- <image src="/static/float/shoucang.png" :lazy-load="true" />
- </view>
- <text class="action_item_text">我的收藏</text>
- </view> -->
- <view class="action_item" @tap="goPath('/pages/push/create_group')">
- <view class="uni-media-list-logo action_icon">
- <image src="/static/theme/default/chat/3.png" :lazy-load="true" />
- </view>
- <text class="action_item_text">群发助手</text>
- </view>
- <view class="action_item" @tap="goScanCode">
- <view class="uni-media-list-logo action_icon">
- <image src="/static/float/saoyisao.png" :lazy-load="true" />
- </view>
- <text class="action_item_text">扫一扫</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniIcon from '../../components/uni-icons/uni-icons.vue';
- import uniBadge from '../../components/uni-badge/uni-badge.vue';
- import uniSwipeAction from '../../components/uni-swipe-action/uni-swipe-action.vue'
- import uniSwipeActionItem from '../../components/uni-swipe-action-item/uni-swipe-action-item.vue'
- import _get from '../../common/_get';
- import _hook from '../../common/_hook';
- import _action from '../../common/_action';
- import _data from '../../common/_data';
- import _page from '../../common/common';
- import uniSearchBar from '@/components/mehaotian-search/mehaotian-search.vue';
- import scrollDiy from '@/components/mescroll-uni/components/mescroll-diy/xinlang/mescroll-uni.vue';
- import {
- genTestUserSig
- } from '@/debug/GenerateTestUserSig.js';
- export default {
- components: {
- uniIcon,
- uniBadge,
- uniSwipeAction,
- uniSwipeActionItem,
- uniSearchBar,
- scrollDiy
- },
- data() {
- return {
- list: [],
- search_list: [],
- list_index: '',
- action_menu: false,
- action_menu_num: 0,
- options: [{
- text: '取消',
- style: {
- backgroundColor: '#007aff'
- }
- }, {
- text: '删除',
- style: {
- backgroundColor: '#dd524d'
- }
- }],
- unread_msg: 0, //未读消息
- scrolHeight: 600,
- windowBottom: 50,
- status_height: 25,
- winHeight: 675,
- my_data: {},
- obj_notice: {}, //todo @提示消息
- }
- },
- onShow() {
- this.initData()
-
- },
- onLoad() {
- let winHeight = uni.getSystemInfoSync().windowHeight;
- let windowBottom = uni.getSystemInfoSync().windowBottom;
- let status_height = uni.getSystemInfoSync().statusBarHeight;
- this.scrolHeight = winHeight - windowBottom - status_height;
- this.windowBottom = windowBottom;
- this.status_height = windowBottom;
- this.winHeight = winHeight;
- // console.log("uni.getSystemInfoSync()", uni.getSystemInfoSync())
-
- },
- onUnload() {
- uni.$off('data_chat_list');
- },
- // onPullDownRefresh() {
- // _get.getChatList();
- // setTimeout(function() {
- // uni.stopPullDownRefresh();
- // }, 300);
- // },
- onHide() {
- //清空search框
- if (this.keyword) {
- this.$refs.searchBar.clear();
- this.list = this.search_list;
- }
- },
- computed: {
- showActionMenu() {
- return this.action_menu;
- },
- staticPhoto() {
- return _data.staticPhoto();
- },
- imgRan() {
- return Math.random();
- },
- },
- methods: {
- joinQun() {
- uni.navigateTo({
- url:'/pages/friend/adds'
- })
- },
- initData() {
- _hook.routeTabBarHook();
- this.getUser();
- uni.$off('data_chat_list');
- let _this = this;
- // let chat_list = _data.localData('chat_list');
- let chat_list = [];
- /** 监听最新数据 */
- uni.$on('data_chat_list', function(data) {
- // todo屏蔽 如果是屏蔽了,则未读为0
- // if(data[0].is_disturb == 1){
- // // 如果@本人或者全员则提示
- // if(data[0].last_msg.indexOf(_this.my_data.nickname) > -1 ||data[0].last_msg.indexOf('@所有人') > -1){
- // }else{
- // data[0].no_reader_num = 0;
- // }
- // }
- // todo @提示只要最新未读有就提示@
- data.forEach(item => {
- if ((item.last_msg.indexOf('@' + _this.my_data.nickname) > -1 || item.last_msg
- .indexOf(
- '@所有人') >
- -1) && item.type == 1 && item.no_reader_num != 0) {
- _this.obj_notice[item.list_id] = 1;
- }
- if (item.no_reader_num == 0) {
- _this.obj_notice[item.list_id] = 0;
- }
- })
- _this.list = data;
- _this.search_list = _this.list;
- console.log("接收到新数据....", data);
- });
- //有缓存则监听是否有数据更新,有则重新获取
- // uni.$once('update_chat_list', function () {
- // _get.getChatList();
- // })
- /** 加载本地缓存数据,让页面秒速渲染出来 */
- if (chat_list.length) {
- // todo
- _this.list = chat_list;
- } else {
- _get.getChatList();
- }
- _this.action_menu = false;
- // 监听未读消息
- uni.$on('unread_msg', (data) => {
- this.unread_msg = data;
- })
- console.log("初始化数据");
- },
- // 初始化数据
- mescrollInit(obj) {
- },
- getUser() {
- let _this = this;
- _get.getUserInfo({}, function(data) {
- data.photo = data.photo + "?_=" + +Math.random();
- data.photo = data.photo.replace(/(\?_=)[\d\.]+$/, "$1" + Math.random());
- console.log("res个人资料", data);
- _this.my_data = data;
- //登陆IM
- // #ifdef APP-PLUS
- // _this.loginHandler(data);
- // #endif
- _data.data("user_info", data);
- });
- },
- // 登录IMid
- loginHandler(data) {
- let userID = data.id.toString();
- let _this = this;
- try {
- const userSig = genTestUserSig(userID).userSig;
- // 登录 IM
- uni.$TUIKit.login({
- userID: userID,
- userSig: userSig
- });
- // 登录原生插件
- uni.$TUICalling.login({
- sdkAppID: genTestUserSig('').sdkAppID,
- userID: userID,
- userSig: userSig,
- },
- res => {
- // _this.setNickHandler(data.nickname);
- // _this.setUserAvatarHandler(_this.staticPhoto + data.face);
- uni.$TUICalling.setSelfInfo({
- nickName: data.nickname,
- avatar: _this.staticPhoto + data.face
- }, (selfInfo) => {
- console.log(JSON.stringify(selfInfo),'selfInfo')
- })
- // 开启悬浮窗
- uni.$TUICalling.enableFloatWindow(true);
- // uni.showToast({
- // title: 'login',
- // icon: 'none'
- // });
- }
- );
- } catch (e) {
- console.log("e");
- uni.hideLoading();
- }
- },
- // 设置昵称
- setNickHandler(name) {
- console.error('--linda')
- // console.log(uni.$TUICalling.setSelfInfo,'uni.$TUICalling');
- // uni.$TUICalling.setSelfInfo({
- // nickName: name,
- // }, (res) => {
- // console.log(JSON.stringify(res))
- // })
- uni.$TUICalling.setUserNickname({
- nickName: name,
- }, (res) => {
- console.log(JSON.stringify(res))
- })
- },
- // 设置头像
- setUserAvatarHandler(avatar) {
- uni.$TUICalling.setUserAvatar({
- avatar: avatar
- }, (res) => {
- console.log(JSON.stringify(res))
- })
- },
- // 下拉刷新
- downCallback(obj) {
- _get.getChatList();
- setTimeout(() => {
- obj.endSuccess();
- }, 1000)
- },
- search(chat_msg) {
- chat_msg = chat_msg.trim();
- let _this = this;
- _this.keyword = chat_msg;
- console.log(!chat_msg)
- if (!chat_msg) {
- _this.list = _this.search_list;
- return true;
- }
- _get.serchChatMsg({
- 'chat_msg': chat_msg,
- 'list_id': ''
- }, function(data) {
- _this.list = data;
- })
- },
- goPath(path) {
- if (path) {
- uni.navigateTo({
- url: path
- })
- }
- },
- imageError(e) {
- let index = e.currentTarget.dataset.index
- //替换index对应的图片
- this.list[index].photo_path = '/default_photo_path.png';
- },
- msgHandle(msg, num) {
- if (num == undefined) num = 16;
- if (!msg) return '';
- msg = msg.replace(/</g, '<');
- return msg.length > num ? msg.substr(0, num) + '...' : msg;
- },
- timestampFormat(time) {
- return _action.timestampFormat(time);
- },
- goAction(type) {
- let path = '';
- switch (type) {
- case 0:
- path = '../friend/index_list?list_id=0';
- break;
- case 1:
- path = '../friend/add';
- break;
- case 2:
- path = '../my/store';
- break;
- default:
- return;
- break;
- }
- uni.navigateTo({
- url: path,
- animationType: 'slide-in-bottom',
- });
- },
- actionMain() {
- this.action_menu = !this.action_menu;
- this.action_menu_num++;
- },
- openedAction(key) {
- this.list_index = key;
- },
- swipeAction(e) {
- let list_index = e.content.number
- let _this = this,
- list_id = _this.list[list_index].list_id;
- if (!list_id) {
- return;
- }
- let top = _this.list[list_index].top;
- console.log("top", top)
- let value = top == 1 ? 0 : 1;
- console.log("value", value)
- switch (e.index) {
- case 0:
- //置顶 /取消置顶
- _this.$httpSend({
- path: '/im/message/chatTop ',
- data: {
- list_id: list_id,
- value: value
- },
- success: () => {
- _get.getChatList();
- }
- });
- break;
- case 1:
- /** 删除这条对话 */
- _this.$httpSend({
- path: '/im/chat/deleteChat',
- data: {
- list_id,
- },
- success: (data) => {
- _get.getChatList();
- }
- });
- break;
- default:
- break;
- }
- },
- swipeData(value, index) {
- return [{
- text: value.top == 1 ? '取消置顶' : '置顶',
- number: index,
- style: {
- },
- },
- {
- text: '删除',
- number: index,
- style: {
- backgroundColor: 'rgb(255,58,49)',
- }
- }
- ];
- },
- goMessage(list_id, key, no_reader_num, chat_id) {
- if (no_reader_num > 0) {
- _get.getChatData({
- send_data: {
- list_id: list_id,
- time: 0,
- is_up: 1,
- },
- is_action_data: 1,
- });
- this.list[key].no_reader_num = 0;
- _data.localData('chat_list', this.list);
- _action.updataNoReader(list_id);
- _action.setStatusTips();
- uni.$on('unread_msg', (data) => {
- this.unread_msg = data;
- })
- }
- console.log("chat_id", chat_id);
- _data.localData('message_list_id', list_id);
- // './message?list_id=' + list_id + "&chat_id="+chat_id,
- uni.navigateTo({
- url: './message?list_id=' + list_id
- });
- },
- goScanCode() {
- let _this = this;
- // #ifdef APP-PLUS
- _this.action_menu = false;
- _page.scanCode();
- // #endif
- // #ifdef H5
- uni.navigateTo({
- url:'/pages/my/scan'
- })
- // #endif
- },
- },
- watch: {
- },
- onNavigationBarButtonTap(e) {
- this.action_menu = !this.action_menu;
- },
- }
- </script>
- <style lang="scss" scoped>
- @import '/static/css/chat/animate.css';
- page {
- background: #fff;
- }
- .icon-search {
- padding: 0 4rpx !important;
- }
- .page {
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- .uni-list-cell {
- overflow: hidden;
- }
- .uni-media-list-logo {
- height: 100upx;
- width: 100upx;
- }
- .search .content {
- padding-left: 20upx;
- height: 60upx;
- background-color: #F7F7F7 !important;
- }
- .header {
- display: flex;
- flex-direction: row;
- padding: 10px 15px;
- align-items: center;
- }
- .input-view {
- display: flex;
- align-items: center;
- flex-direction: row;
- background-color: #e7e7e7;
- height: 30px;
- border-radius: 5px;
- padding: 0 10px;
- flex: 1;
- }
- .input {
- flex: 1;
- padding: 0 5px;
- height: 24px;
- line-height: 24px;
- font-size: 16px;
- }
- .red_num {
- position: absolute;
- z-index: 10;
- height: 34upx;
- top: 7upx;
- /* #ifdef APP-PLUS */
- top: 16rpx;
- /* #endif */
- left: 120upx;
- font-size: 23upx !important;
- }
- /**
- .uni-media-list-body {
- height: auto;
- }
- */
- .uni-swipe-action,
- .uni-swipe,
- .uni-view,
- .uni-media-list {
- width: 750upx !important;
- }
- .action_main {
- position: fixed;
- top: 55px;
- /* #ifndef H5 */
- top: 15px;
- /* #endif */
- width: 750upx;
- height: 1080upx;
- z-index: 10000;
- }
- .action_base {
- position: absolute;
- right: 30upx;
- width: 300upx;
- top: -10rpx;
- right: 10rpx;
- /* #ifdef APP-PLUS */
- top: 140rpx;
- /* #endif */
- background: #ffffff;
- border-radius: 30rpx;
- box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, .1);
- }
- .action_base::after {
- content: '';
- width: 0;
- height: 0;
- border-left: 20upx solid transparent;
- border-right: 20upx solid transparent;
- border-bottom: 20upx solid #fff;
- position: absolute;
- top: -14rpx;
- right: 20rpx;
- }
- .action_item {
- color: #000;
- height: 100upx;
- line-height: 100upx;
- margin-left: 30upx;
- border-bottom: 1px solid #f5f5f5;
- display: flex;
- align-items: center;
- }
- .action_icon {
- width: 48rpx;
- height: 48rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- image {
- width: 48rpx;
- height: 48rpx;
- }
- }
- .action_item:last-child {
- border: none;
- }
- .action_item_text {
- font-size: 30upx;
- }
- .topTitle {
- background-color: #fff;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- /* #ifdef APP-PLUS */
- padding-top: var(--status-bar-height);
- /* #endif */
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100vw;
- }
- .searchOut {
- box-sizing: border-box;
- padding: 0 14rpx;
- }
- .topFont {
- font-size: 40rpx;
- color: #080E18;
- font-weight: bold;
- margin-left: 10rpx;
- }
- .titleLf {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .titleLf>image {
- width: 40rpx;
- height: 40rpx;
- margin-left: 30rpx;
- }
- .searchOut {
- box-sizing: border-box;
- padding: 0 28rpx;
- margin: 0 auto;
- }
- body {
- background-color: #fff;
- }
- .searchBt {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- box-sizing: border-box;
- padding-left: 28rpx;
- padding-bottom: 10rpx;
- border-bottom: 2rpx solid #F2F2F2;
- }
- .searchBtItem {
- margin-right: 40rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .searchBtItem>text {
- color: #ABACAE;
- font-size: 28rpx;
- }
- .searchBtItem>text:first-child {
- font-size: 40rpx;
- margin-right: 14rpx;
- }
- .searchBtItem>image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 14rpx;
- }
- .searchOut .search {
- padding: 14rpx 0;
- }
- .noData {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- align-content: center;
- height: 700rpx;
- }
- .noData>image {
- width: 487rpx;
- height: 371rpx;
- }
- .noData>text {
- display: block;
- width: 100%;
- color: #9298A3;
- font-size: 32rpx;
- text-align: center;
- }
- </style>
|