123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- <template>
- <mobile-frame>
- <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'+ index">
- <view class="chat-time" v-if="item.time != ''">
- {{item.time}}
- </view>
- <view class="msg-m msg-left" v-if="item.speaker != user._id">
- <image @tap="toShop()" class="user-img"
- :src="shop.logo&&shop.logo.length>0?shop.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">
- <image class="user-img" :src="user.icon&&user.icon.length>0?user.icon[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>
- </view>
- </scroll-view>
- </view>
- <view class="two">
- <submit_1 @inputs="inputs" @heights="heights"></submit_1>
- </view>
- </view>
- </mobile-frame>
- </template>
- <script>
- import moment from 'moment';
- import submit_1 from './components/submit_1.vue';
- export default {
- components: {
- submit_1,
- },
- data() {
- return {
- // 用户信息
- user: {},
- // 房间号id
- id: '',
- // 店铺信息
- shop: {},
- shop_id: "",
- // 商品或订单信息
- goods: {},
- // 历史记录
- msgList: [],
- total: 0,
- skip: 0,
- limit: 10,
- page: 0,
- // 判断是否跳到最后一条
- is_bottom: true,
- // 判断是否下拉刷新复位
- triggered: false,
- scrollToView: '', //滑动最后一条信息
- };
- },
- onShow() {
- const that = this;
- that.clearPage();
- if (that.id) that.search()
- },
- onLoad: async function(e) {
- const that = this;
- that.$set(that, `goods`, e);
- that.$set(that, `id`, e.id);
- that.$set(that, `shop_id`, e.shop);
- that.watchlogin();
- },
- computed: {
- listenWebsocket() {
- return this.$store.state.websocketData;
- }
- },
- watch: {
- listenWebsocket: function(newstr) {
- if (newstr && newstr.type == 'chat' && newstr.room == this.id) {
- this.msgList.push(newstr);
- this.goBottom();
- }
- }
- },
- methods: {
- // 监听用户是否登录
- watchlogin() {
- const that = this;
- uni.getStorage({
- key: 'token',
- success: function(res) {
- let user = that.$jwt(res.data);
- if (user) that.$set(that, `user`, user)
- }
- })
- },
- // 查询历史记录
- async search() {
- const that = this;
- let info = {
- skip: that.skip,
- limit: that.limit,
- room: that.id
- }
- let res;
- res = await that.$api(`/chatRecord`, `GET`, {
- ...info,
- }, 'chat');
- if (res.errcode == '0') {
- let msgList = [...res.data, ...that.msgList];
- msgList.sort(function(a, b) {
- return a.time > b.time ? 1 : -1;
- });
- that.$set(that, `msgList`, msgList);
- that.$set(that, `total`, res.total)
- } else {
- uni.showToast({
- title: res.errmsg,
- icon: 'none'
- })
- }
- // 查询房间信息
- // 如果是下拉刷新聊天记录不请求房间信息
- if (that.is_bottom == true) {
- res = await that.$api(`/room/${that.id}`, `GET`, {}, 'chat')
- if (res.errcode == '0') {
- that.$set(that, `shop`, res.data && res.data.shop);
- if (res.data && res.data.shop && res.data.shop.name) {
- uni.setNavigationBarTitle({
- title: res.data.shop.name
- });
- }
- } else {
- uni.showToast({
- title: res.errmsg,
- icon: 'none'
- })
- }
- }
- let id = that.msgList.filter(i => {
- if (i.speaker != that.user._id) return i.is_read = '0';
- })
- let ids = id.map(i => {
- return i._id
- })
- if (ids.length > 0) {
- // 信息已读
- res = await that.$api(`/chatRecord/read`, `POST`, {
- ids
- }, 'chat')
- if (res.errcode == '0') {} else {
- uni.showToast({
- title: res.errmsg,
- icon: 'none'
- })
- }
- }
- // 发送商品信息
- if (that.goods && that.goods.goods) {
- // 商品
- res = await that.$api(`/viewGoods/goodsDetail`, `POST`, {
- id: that.goods.goods
- });
- if (res.errcode == '0') {
- console.log(res.data);
- }
- } else {
- // 订单
- }
- // 跳转到最后一条数据 与前面的:id进行对照
- // 如果是下拉刷新聊天记录不跳到最后一条
- if (that.is_bottom == true) that.goBottom();
- },
- // 进行图片的预览
- 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);
- }
- }
- });
- },
- //接受输入内容
- async inputs(e) {
- const that = this;
- let user = that.user
- if (user._id) {
- //时间间隔处理
- let data = {
- "room": that.id,
- "speaker": user._id,
- "content": e.message,
- "time": moment().format('YYYY-MM-DD HH:mm:ss'),
- "msg_type": e.type
- };
- // 发送给服务器消息
- if (!that.id) data.shop = that.shop_id
- let res = await that.$api(`/chatRecord`, `POST`, data, 'chat');
- if (res.errcode == '0') {
- that.msgList.push(res.data);
- // 发送websocket
- that.$store.dispatch('websocketSend', res.data)
- } else {
- uni.showToast({
- title: res.errmsg,
- icon: 'none'
- })
- }
- // 跳转到最后一条数据 与前面的:id进行对照
- that.goBottom();
- } else {
- uni.showToast({
- title: '未登录账号无法发送消息 ,请及时登录!',
- icon: 'none'
- })
- }
- },
- // 店铺
- toShop() {
- const that = this;
- let id = that.shop._id
- uni.navigateTo({
- url: `/pagesHome/shop/index?id=${id}`
- })
- },
- //输入框高度
- heights(e) {
- const that = this;
- that.goBottom();
- },
- // 滚动到底部
- goBottom() {
- const that = this;
- that.scrollToView = '';
- that.$nextTick(function() {
- that.scrollToView = 'msg' + (that.msgList.length - 1)
- })
- },
- // 下拉刷新分页
- getFresh(e) {
- const that = this;
- that.triggered = true;
- let list = that.msgList;
- let limit = that.limit;
- setTimeout(() => {
- 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.$set(that, `is_bottom`, false)
- that.search();
- uni.hideLoading();
- } else {
- uni.showToast({
- title: `没有更多聊天记录了`,
- icon: 'none'
- })
- }
- that.triggered = false;
- }, 1000)
- },
- clearPage() {
- const that = this;
- that.$set(that, `msgList`, [])
- that.$set(that, `skip`, 0)
- that.$set(that, `limit`, 10)
- that.$set(that, `page`, 0)
- },
- }
- }
- </script>
- <style lang="scss">
- .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 {
- word-break: break-all;
- margin-left: 16rpx;
- background-color: #f1f1f1;
- border-radius: 0rpx 20rpx 20rpx 20rpx;
- }
- .ms-img {
- margin-left: 16rpx;
- }
- }
- .msg-right {
- flex-direction: row-reverse;
- .msg-text {
- margin-right: 16rpx;
- background-color: rgba(255, 228, 49, 0.8);
- 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;
- }
- }
- </style>
|