123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <template>
- <view class="main">
- <view class="one">
- <!-- 聊天内容 -->
- <scroll-view class="scroll-view" scroll-y="true" scroll-with-animation="true"
- :scroll-into-view="scrollToView" refresher-enabled="true" :refresher-triggered="triggered"
- @refresherrefresh="getFresh">
- <view class="list-scroll-view">
- <view class="chat-ls" v-for="(item,index) in msgList" :key="index" :id="'msg'+ item._id">
- <view class="chat-time" v-if="item.time != ''">
- {{item.time}}
- </view>
- <view class="msg-m msg-left" v-if="item.speaker != user._id">
- <image class="user-img" :src="config.logo&&config.logo.length>0?config.logo[0].url:''">
- </image>
- <!-- 文字 -->
- <view class="message" v-if="item.msg_type =='0'">
- <view class="msg-text">{{item.content}}</view>
- </view>
- <!-- 图像 -->
- <view class="message img" v-else-if="item.msg_type =='1'" @tap="previewImg(item.content)">
- <image :src="item.content" class="msg-img" mode="widthFix"></image>
- </view>
- </view>
- <view class="msg-m msg-right" v-else-if="item.speaker == user._id">
- <u-avatar :text="formatName(user.name||user.nickname)" fontSize="22"
- randomBgColor color-index="7"></u-avatar>
- <!-- 文字 -->
- <view class="message" v-if="item.msg_type =='0'">
- <view class="msg-text">{{item.content}}</view>
- </view>
- <!-- 图像 -->
- <view class="message img" v-else-if="item.msg_type =='1'" @tap="previewImg(item.content)">
- <image :src="item.content" class="msg-img" mode="widthFix"></image>
- </view>
- </view>
- </view>
- <view id="msg123456789"></view>
- </view>
- </scroll-view>
- </view>
- <view class="two">
- <submit_1 @choseImg="choseImg" @inputs="inputs" @heights="heights"></submit_1>
- </view>
- </view>
- </template>
- <script>
- import moment from 'moment';
- import submit_1 from './common/submit_1.vue';
- export default {
- components: {
- submit_1,
- },
- data() {
- return {
- config: {},
- user: {},
- // 聊天记录
- msgList: [],
- total: 0,
- skip: 0,
- limit: 6,
- page: 0,
- // 判断是否跳到最后一条
- is_bottom: true,
- // 判断是否下拉刷新复位
- triggered: false,
- scrollToView: '', //滑动最后一条信息
- // 判断是否是选择图片刷新
- is_img: false
- }
- },
- onShow: async function() {
- const that = this;
- that.searchUser();
- that.searchConfig();
- // 判断是否是选择图片刷新
- if (!that.is_img) {
- await that.clearPage();
- await that.search()
- }
- },
- onPullDownRefresh: async function() {
- const that = this;
- that.clearPage();
- await that.search();
- uni.stopPullDownRefresh();
- },
- methods: {
- searchUser() {
- const that = this;
- try {
- const res = uni.getStorageSync('user');
- if (res) that.$set(that, `user`, res);
- } catch (e) {
- uni.showToast({
- title: err.errmsg,
- icon: 'error',
- duration: 2000
- });
- }
- },
- searchConfig() {
- const that = this;
- try {
- const res = uni.getStorageSync('config');
- if (res) that.$set(that, `config`, res);
- } catch (e) {
- uni.showToast({
- title: err.errmsg,
- icon: 'error',
- duration: 2000
- });
- }
- },
- async search() {
- const that = this;
- if (!that.user._id) return
- let info = {
- skip: that.skip,
- limit: that.limit,
- user: that.user._id
- }
- const res = await that.$api(`chat`, 'GET', {
- ...info,
- })
- if (res.errcode == '0') {
- let list = [...res.data.reverse(), ...that.msgList];
- that.$set(that, `msgList`, list)
- that.$set(that, `total`, res.total)
- } else {
- uni.showToast({
- title: res.errmsg,
- });
- }
- // 跳转到最后一条数据 与前面的:id进行对照
- await that.goBottom(that.msgList[that.msgList.length - 1]);
- },
- // 进行图片的预览
- previewImg(e) {
- const that = this;
- // 预览图片
- uni.previewImage({
- current: 0,
- urls: [e],
- longPressActions: {
- itemList: ['发送给朋友', '保存图片', '收藏'],
- success: function(data) {
- console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) +
- '张图片');
- },
- fail: function(err) {
- console.log(err.errMsg);
- }
- }
- });
- },
- // 判断是否是选择图片刷新
- choseImg(e) {
- const that = this;
- that.$set(that, `is_img`, e)
- },
- //接受输入内容
- async inputs(e) {
- const that = this;
- let user = that.user
- if (user._id) {
- //时间间隔处理
- let data = {
- "user": user._id,
- "speaker": user._id,
- "content": e.message,
- "time": moment().format('YYYY-MM-DD HH:mm:ss'),
- "msg_type": e.type
- };
- // 发送给服务器消息
- let res = await that.$api(`chat`, `POST`, data);
- if (res.errcode == '0') {
- that.msgList.push(res.data);
- } else {
- uni.showToast({
- title: res.errmsg,
- icon: 'none'
- })
- }
- // 跳转到最后一条数据 与前面的:id进行对照
- await that.goBottom(that.msgList[that.msgList.length - 1]);
- } else {
- uni.navigateTo({
- url: `/pagesHome/login/index`
- })
- }
- },
- //输入框高度
- async heights(e) {
- const that = this;
- await that.goBottom(that.msgList[that.msgList.length - 1]);
- },
- // 滚动到底部
- async goBottom(item) {
- const that = this;
- that.$nextTick(function() {
- that.$set(that, `scrollToView`, `msg${item._id}`)
- })
- },
- // 下拉刷新分页
- getFresh(e) {
- const that = this;
- that.$set(that, `triggered`, true)
- that.$set(that, `is_img`, false)
- let msgList = that.msgList;
- let limit = that.limit;
- setTimeout(() => {
- if (that.total > msgList.length) {
- uni.showLoading({
- title: '加载中',
- mask: true
- })
- let page = that.page + 1;
- that.$set(that, `page`, page)
- let skip = page * limit;
- that.$set(that, `skip`, skip)
- that.$set(that, `is_bottom`, false)
- that.search();
- uni.hideLoading();
- } else {
- uni.showToast({
- title: `没有更多聊天记录了`,
- icon: 'none'
- })
- }
- that.triggered = false;
- }, 1000)
- },
- // 分页
- toPage(e) {
- const that = this;
- let list = that.list;
- let limit = that.limit;
- if (that.total > list.length) {
- uni.showLoading({
- title: '加载中',
- mask: true
- })
- let page = that.page + 1;
- that.$set(that, `page`, page)
- let skip = page * limit;
- that.$set(that, `skip`, skip)
- that.search();
- uni.hideLoading();
- } else that.$set(that, `is_bottom`, true)
- },
- // 清空列表
- clearPage() {
- const that = this;
- that.$set(that, `msgList`, [])
- that.$set(that, `skip`, 0)
- that.$set(that, `limit`, 6)
- that.$set(that, `page`, 0)
- },
- formatName(str) {
- if (str) return str.substr(0, 1) + new Array(str.length).join('');
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- .one {
- position: relative;
- flex-grow: 1;
- .scroll-view {
- .chat-ls {
- padding: 2vw 2vw 0 2vw;
- .chat-time {
- font-size: 24rpx;
- color: rgba(39, 40, 50, 0.3);
- line-height: 34rpx;
- padding: 10rpx 0rpx;
- text-align: center;
- }
- .msg-m {
- display: flex;
- padding: 20rpx 0;
- .user-img {
- flex: none;
- width: 80rpx;
- height: 80rpx;
- border-radius: 40rpx;
- border: 1px solid #c0c0c0;
- }
- .message {
- flex: none;
- max-width: 480rpx;
- }
- .img {
- margin: 0 20rpx;
- }
- .msg-text {
- font-size: 32rpx;
- color: rgba(39, 40, 50, 1);
- line-height: 44rpx;
- padding: 18rpx 24rpx;
- word-break: break-all;
- }
- .msg-img {
- max-width: 400rpx;
- border-radius: 20rpx;
- }
- }
- .msg-left {
- flex-direction: row;
- .msg-text {
- margin-left: 16rpx;
- background-color: var(--f1Color);
- ;
- border-radius: 0rpx 20rpx 20rpx 20rpx;
- }
- .ms-img {
- margin-left: 16rpx;
- }
- }
- .msg-right {
- flex-direction: row-reverse;
- .msg-text {
- margin-right: 16rpx;
- background-color: var(--f3CColor);
- border-radius: 20rpx 0rpx 20rpx 20rpx;
- }
- .ms-img {
- margin-right: 16rpx;
- }
- }
- }
- }
- }
- .two {
- background-color: #f0f0f0;
- border-top: 1px solid rgba(39, 40, 50, 0.1);
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
- .is_bottom {
- width: 100%;
- text-align: center;
- text {
- padding: 2vw 0;
- display: inline-block;
- color: var(--f85Color);
- font-size: var(--font14Size);
- }
- }
- </style>
|