| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773 |
- <template>
- <view>
- <view style="width: 100%; padding-bottom: 140rpx">
- <view style="display: flex; flex-direction: column" v-for="(item, index) in ListItem" :key="index">
- <view style="margin-top: 15rpx; width: 100%; text-align: center; font-size: 26rpx; color: #999999">
- {{ item.createTime }}
- </view>
- <view v-if="item.sendType === 2" style="width: 83%; margin-right: 15%">
- <view class="chat-listitem" style="float: left; margin-left: 10rpx">
- <view>
- <image src="../../static/images/img/kefu.png" class="chat-listitem-image"></image>
- </view>
- <view v-if="item.content && item.type === 1" class="chat-listitem-text" style="margin-left: 20rpx">{{ item.content }}</view>
- <image
- @tap="viewImg(item.content)"
- v-if="item.content && item.type === 2"
- :src="item.content"
- style="height: 200rpx; width: 200rpx; margin-left: 20rpx"
- ></image>
- </view>
- </view>
- <view v-if="item.sendType === 1" style="width: 83%; margin-left: 15%">
- <view class="chat-listitem" style="float: right">
- <view v-if="item.content && item.type === 1" @longpress="copy(item.content)" class="chat-listitem-text" style="margin-right: 20rpx">
- {{ item.content }}
- </view>
- <view
- v-if="item.content && item.type === 4"
- @click="goShop(item.content[3])"
- style="width: 400rpx; background: #ffffff; height: max-content; margin-right: 20rpx; margin-top: 10rpx; border-radius: 20rpx"
- >
- <image :src="item.content[0]" class="chat-listitem-image-type4" style="width: 400rpx; height: 350rpx"></image>
- <view style="padding: 10rpx; padding-bottom: 20rpx">
- <view style="color: #ed5732; font-size: 34rpx">
- <text style="font-size: 22rpx">¥</text>
- {{ item.content[2] }}
- </view>
- <view
- style="
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- width: 100%;
- height: 75upx;
- "
- >
- {{ item.content[1] }}
- </view>
- </view>
- </view>
- <view
- v-if="item.content && item.type === 3"
- style="width: 500rpx; background: #ffffff; height: max-content; margin-right: 20rpx; margin-top: 10rpx; border-radius: 20rpx; padding: 15rpx 10rpx"
- >
- <view style="color: #000000; font-weight: 600; margin-left: 10rpx">你正在咨询的订单</view>
- <view style="display: flex">
- <image :src="item.content[0]" class="chat-listitem-image-type4" style="margin-left: 7rpx; margin-top: 20rpx; width: 110rpx; height: 110rpx"></image>
- <view style="margin-top: 15rpx; padding: 10rpx 0rpx 5rpx 10rpx; width: 75%; background: #f5f5f5; margin-left: 10rpx">
- <view
- style="
- font-size: 28rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- height: 75upx;
- width: 100%;
- "
- >
- {{ item.content[1] }}
- </view>
- <view style="color: #ed5732; font-size: 28rpx">
- <text style="font-size: 22rpx">¥</text>
- {{ item.content[5] }}
- </view>
- </view>
- </view>
- <view style="color: #999999; margin-top: 10rpx; margin-left: 12rpx">
- <view>订单编号:{{ item.content[3] }}</view>
- <view style="margin-top: 10rpx">创建时间:{{ item.content[4] }}</view>
- </view>
- <view
- style="
- float: right;
- margin-right: 10rpx;
- margin-top: 15rpx;
- background: #f9221d;
- color: #ffffff;
- border-radius: 50rpx;
- width: 150rpx;
- height: 50rpx;
- font-size: 24rpx;
- text-align: center;
- line-height: 50rpx;
- "
- @click="goDingdanDetail(item.content[2])"
- >
- 查看
- </view>
- </view>
- <image
- @tap="viewImg(item.content)"
- v-if="item.content && item.type === 2"
- :src="item.content"
- style="height: 200rpx; width: 200rpx; margin-right: 20rpx"
- ></image>
- <view>
- <image v-if="item.chat.userHead" :src="item.chat.userHead" class="chat-listitem-image"></image>
- <image v-else src="../../static/logo.png" class="chat-listitem-image"></image>
- </view>
- </view>
- </view>
- <!-- <view v-if="item.sendType === 4" style="width: 83%;margin-left: 15%;">
- <view class="chat-listitem" style="float: right;">
- <view style="height: max-content;">
- <image :src="type4[0]" mode=""></image>
- </view>
- <image @tap="viewImg(item.content)" v-if="item.content && item.type === 2" :src="item.content" style="height: 200rpx;width: 170rpx;margin-right: 20rpx;"></image>
- <view>
- <image :src="item.chat.userHead" class="chat-listitem-image"></image>
- </view>
- </view>
- </view> -->
- </view>
- </view>
- <view
- v-if="ShopState"
- style="width: 95%; margin-left: 20rpx; height: 150upx; position: fixed; bottom: 120upx; z-index: 99; background-color: #ffffff; border-radius: 20rpx"
- >
- <view style="display: flex; width: 100%; color: #000000; padding: 20rpx">
- <image :src="Shopimage" style="width: 110rpx; height: 110rpx"></image>
- <view style="margin-left: 20rpx; width: 400rpx">
- <view style="font-size: 34rpx; color: #000000; overflow: hidden; text-overflow: ellipsis; flex-wrap: nowrap; white-space: nowrap; width: 98%">
- {{ ShopTitle }}
- </view>
- <view style="margin-top: 20rpx; color: #ed5732; font-size: 34rpx">¥{{ Shopmoney }}</view>
- </view>
- <view style="text-align: right">
- <image @click="ShopClose" src="../../static/images/img/close.png" style="width: 30rpx; height: 30rpx"></image>
- <view
- style="
- margin-top: 20rpx;
- background: #f9221d;
- color: #ffffff;
- border-radius: 50rpx;
- width: 150rpx;
- height: 50rpx;
- font-size: 24rpx;
- text-align: center;
- line-height: 50rpx;
- "
- @click="goMaijia"
- >
- 发送给商家
- </view>
- </view>
- </view>
- </view>
- <view
- v-if="orderState"
- style="width: 95%; margin-left: 20rpx; height: 150upx; position: fixed; bottom: 120upx; z-index: 99; background-color: #ffffff; border-radius: 20rpx"
- >
- <view style="display: flex; width: 100%; color: #000000; padding: 20rpx">
- <image :src="orderimage" style="width: 110rpx; height: 110rpx"></image>
- <view style="margin-left: 20rpx; width: 400rpx">
- <view style="font-size: 34rpx; color: #000000; overflow: hidden; text-overflow: ellipsis; flex-wrap: nowrap; white-space: nowrap; width: 98%">
- 你可能想咨询该订单
- </view>
- <view style="margin-top: 20rpx; color: #ed5732; font-size: 34rpx">¥{{ ordermoney }}</view>
- </view>
- <view style="text-align: right">
- <image @click="orderClose" src="../../static/images/img/close.png" style="width: 30rpx; height: 30rpx"></image>
- <view
- style="
- margin-top: 20rpx;
- background: #f9221d;
- color: #000000;
- border-radius: 50rpx;
- width: 150rpx;
- height: 50rpx;
- font-size: 24rpx;
- text-align: center;
- line-height: 50rpx;
- "
- @click="goDingdan"
- >
- 发送订单
- </view>
- </view>
- </view>
- </view>
- <!-- 底部聊天输入框 -->
- <view class="input-box">
- <view class="justify-between padding-lr" style="display: flex; margin-top: 15rpx; width: 100%; background-color: #eee; padding-top: 4upx">
- <image
- src="../../static/images/img/add.png"
- @click="chooseImage(['album'])"
- style="width: 50rpx; height: 50rpx; margin-top: 8rpx; margin-right: 12rpx; border-radius: 52upx"
- ></image>
- <input
- confirm-type="send"
- @confirm="setChatSave(1)"
- type="text"
- v-model="content"
- style="width: 72%; height: 70rpx; background: #fff; margin: 4rpx 10rpx 0; border-radius: 70rpx; padding-left: 10rpx; color: #000000"
- />
- <view class="save" @tap="setChatSave(1)">发送</view>
- </view>
- </view>
- <!-- 用于图片压缩的canvas画布 -->
- <canvas
- :style="{
- width: cw + 'px',
- height: cw + 'px',
- position: 'absolute',
- zIndex: -1,
- left: '-10000rpx',
- top: '-10000rpx'
- }"
- canvas-id="zipCanvas"
- ></canvas>
- <!--画布结束-->
- </view>
- </template>
- <script>
- import configdata from '../../common/config.js'
- import getLessLimitSizeImage from '@/utils/imageCompress.js'
- export default {
- data() {
- return {
- connected: false,
- connecting: false,
- msg: false,
- type4: [],
- listRight: {
- chat: {
- userHead: ''
- },
- content: '',
- sendType: 1,
- type: 1
- },
- content: '',
- chatId: '',
- type: 1,
- ListItem: [],
- ShopState: false,
- ShopordersId: '',
- Shopimage: '',
- Shopmoney: '',
- ShopTitle: '',
- orderState: false,
- ordersId: '',
- orderimage: '',
- orderNum: '',
- ordermoney: '',
- orderTitle: '',
- orderCreateTime: '',
- className: '',
- Shopsales: '',
- hand: 1,
- index: 0,
- page: 0,
- size: 1000,
- countDown: '',
- //画板边长默认是屏幕宽度,正方形画布
- cw: uni.getSystemInfoSync().windowWidth
- }
- },
- computed: {
- showMsg() {
- if (this.connected) {
- if (this.msg) {
- return '收到消息:' + this.msg
- } else {
- return '等待接收消息'
- }
- } else {
- return '尚未连接'
- }
- }
- },
- onUnload() {
- uni.closeSocket()
- uni.hideLoading()
- },
- onLoad(d) {
- if (d.className) {
- this.className = d.className
- if (d.className === 'shop') {
- this.ShopState = true
- this.ShopordersId = d.ordersId
- this.Shopimage = d.image
- this.Shopmoney = d.money
- this.Shopsales = d.sales
- this.ShopTitle = d.title
- } else if (d.className === 'order') {
- this.orderState = true
- this.ordersId = d.id
- this.orderimage = d.image
- this.ordermoney = d.money
- this.orderTitle = d.title
- this.orderNum = d.orderNum
- this.orderCreateTime = d.createTime
- }
- }
- this.getChatSave()
- this.connect()
- },
- onShow() {
- if (this.connected || this.connecting) {
- } else {
- this.connect()
- }
- },
- onHide() {
- uni.closeSocket()
- },
- methods: {
- copy(content) {
- uni.showModal({
- title: '温馨提示',
- content: '确认要复制此文字吗?',
- showCancel: true,
- cancelText: '取消',
- confirmText: '确认',
- success: (res) => {
- if (res.confirm) {
- uni.setClipboardData({
- data: content,
- success: (r) => {
- this.$queue.showToast('复制成功')
- }
- })
- }
- }
- })
- },
- h5Copy(content) {
- if (!document.queryCommandSupported('copy')) {
- // 不支持
- return false
- }
- let textarea = document.createElement('textarea')
- textarea.value = content
- textarea.readOnly = 'readOnly'
- document.body.appendChild(textarea)
- textarea.select() // 选择对象
- textarea.setSelectionRange(0, content.length) //核心
- let result = document.execCommand('copy') // 执行浏览器复制命令
- textarea.remove()
- return result
- },
- getDateDiff(data) {
- // 传进来的data必须是日期格式,不能是时间戳
- //var str = data;
- //将字符串转换成时间格式
- var timePublish = new Date(data)
- var timeNow = new Date()
- var minute = 1000 * 60
- var hour = minute * 60
- var day = hour * 24
- var month = day * 30
- var result = '2'
- var diffValue = timeNow - timePublish
- var diffMonth = diffValue / month
- var diffWeek = diffValue / (7 * day)
- var diffDay = diffValue / day
- var diffHour = diffValue / hour
- var diffMinute = diffValue / minute
- if (diffMonth > 3) {
- result = timePublish.getFullYear() + '-'
- result += timePublish.getMonth() + '-'
- result += timePublish.getDate()
- } else if (diffMonth > 1) {
- //月
- result = data.substring(0, 10)
- } else if (diffWeek > 1) {
- //周
- result = data.substring(0, 10)
- } else if (diffDay > 1) {
- //天
- result = data.substring(0, 10)
- } else if (diffHour > 1) {
- //小时
- result = parseInt(diffHour) + '小时前'
- } else if (diffMinute > 1) {
- //分钟
- result = parseInt(diffMinute) + '分钟前'
- } else {
- result = '刚刚'
- }
- return result
- },
- goDingdanDetail(id) {
- uni.navigateTo({
- url: '../member/orderdetail?id=' + id
- })
- },
- goShop(ordersId) {
- uni.navigateTo({
- url: './commoditydetail?ordersId=' + ordersId
- })
- },
- ShopClose() {
- this.ShopState = false
- },
- orderClose() {
- this.orderState = false
- },
- goDingdan() {
- this.orderState = false
- this.setChatSave(3)
- },
- goMaijia() {
- this.ShopState = false
- this.setChatSave(4)
- },
- connect() {
- let userId = this.$queue.getData('userId')
- if (this.connected || this.connecting) {
- uni.showModal({
- content: '正在连接或者已经连接,请勿重复连接',
- showCancel: false
- })
- return false
- }
- let token = uni.getStorageSync('token')
- this.connecting = true
- uni.showLoading({
- title: '连接中...',
- mask: true // 是否显示透明蒙层,防止触摸穿透
- })
- uni.connectSocket({
- // url: 'wss://game.shengqianxiong.com.cn/wss/websocket/' + userId,
- // url: 'ws://74165o0188.uicp.fun/sqx_fast/websocket/' + userId,
- url: this.config('WSHOST') + userId,
- data() {
- return {
- msg: 'Hello'
- }
- },
- header: {
- 'content-type': 'application/json',
- token: token
- },
- method: 'GET',
- success(res) {
- // 这里是接口调用成功的回调,不是连接成功的回调,请注意
- },
- fail(err) {
- // 这里是接口调用失败的回调,不是连接失败的回调,请注意
- }
- })
- uni.onSocketOpen((res) => {
- this.connecting = false
- this.connected = true
- uni.hideLoading()
- // uni.showToast({
- // icon: 'none',
- // title: '连接成功'
- // })
- console.log('onOpen', res)
- })
- uni.onSocketError((err) => {
- this.connecting = false
- this.connected = false
- uni.hideLoading()
- uni.showModal({
- content: '网络较差,请稍后再试',
- showCancel: false
- })
- console.log('onError', err)
- })
- uni.onSocketMessage((res) => {
- // let that = this;
- // let datas = JSON.parse(res.data)
- // let data = {
- // chat: {
- // userHead: '../../static/logo.png'
- // },
- // content: datas.content,
- // type: datas.type,
- // sendType: datas.sendType
- // }
- // that.ListItem.push(data);
- this.getTimeOrListItem1()
- console.log('onMessage', res)
- })
- uni.onSocketClose((res) => {
- this.connected = false
- this.startRecive = false
- this.msg = false
- console.log('onClose', res)
- })
- },
- close() {
- uni.closeSocket()
- },
- getTimeOrListItem1() {
- let data = {
- chatId: this.chatId
- }
- this.$Request.getT('/app/chats/list', data).then((res) => {
- this.ListItem = []
- if (res.data) {
- var time = ''
- res.data.forEach((d) => {
- d.createTime = this.getDateDiff(d.createTime)
- if (d.createTime === time) {
- d.createTime = ''
- } else {
- time = d.createTime
- }
- if (!d.chat.userHead) {
- // d.chat.userHead = '../../static/logo.png';
- let avatar = this.$queue.getData('avatar')
- d.chat.userHead = avatar
- }
- if (d.type === 4) {
- let data = d.content.split(',')
- d.content = data
- }
- if (d.type === 3) {
- let data = d.content.split(',')
- d.content = data
- }
- this.ListItem.push(d)
- })
- setTimeout(() => {
- uni.pageScrollTo({
- scrollTop: 99999,
- duration: 0
- })
- }, 50)
- }
- uni.hideLoading()
- })
- },
- getChatSave() {
- let userId = this.$queue.getData('userId')
- let phone = this.$queue.getData('phone')
- let userName = this.$queue.getData('userName')
- if (!phone) {
- phone = this.$queue.getData('userName')
- }
- let avatar = this.$queue.getData('avatar') ? this.$queue.getData('avatar') : ''
- let shopUserName = this.$queue.getData('shopUserName') ? this.$queue.getData('shopUserName') : ''
- let data = {
- userId: userId,
- userHead: avatar,
- userName: shopUserName,
- storeId: '0',
- storeHead: '',
- storeName: ''
- }
- this.$Request.postJson('/app/chats/save', data).then((res) => {
- if (res.status === 0) {
- this.chatId = res.data.chatId
- uni.showLoading({
- title: '加载中...',
- mask: true // 是否显示透明蒙层,防止触摸穿透
- })
- this.getTimeOrListItem1()
- }
- })
- },
- setChatSave(type) {
- //type:1文字 2图片
- if (type === 1 && this.content == '') {
- this.$queue.showToast('请输入聊天内容')
- return
- }
- if (this.chatId == '' || this.chatId == undefined) {
- this.$queue.showToast('网络较差,请稍后再试')
- return
- }
- let userId = this.$queue.getData('userId')
- if (type === 4) {
- this.content = this.Shopimage + ',' + this.ShopTitle + ',' + this.Shopmoney + ',' + this.ShopordersId
- }
- if (type === 3) {
- this.content = this.orderimage + ',' + this.orderTitle + ',' + this.ordersId + ',' + this.orderNum + ',' + this.orderCreateTime + ',' + this.ordermoney
- }
- let avatar = this.$queue.getData('avatar') ? this.$queue.getData('avatar') : ''
- let shopUserName = this.$queue.getData('shopUserName') ? this.$queue.getData('shopUserName') : ''
- let data = {
- userId: userId,
- userHead: avatar,
- userName: shopUserName,
- content: this.content,
- chatId: this.chatId,
- type: type,
- storeId: '0',
- sendType: '1',
- storeName: ''
- }
- data = JSON.stringify(data)
- let that = this
- uni.sendSocketMessage({
- data: data,
- success(res) {
- let avatar = that.$queue.getData('avatar')
- if (!avatar) {
- avatar = '../../static/logo.png'
- }
- setTimeout(() => {
- that.getTimeOrListItem1()
- }, 50)
- console.log(that.content)
- },
- fail(err) {
- console.log(err)
- }
- })
- this.content = ''
- },
- //发送图片
- chooseImage(sourceType) {
- uni.chooseImage({
- count: 1,
- sourceType: ['album', 'camera'],
- success: (res) => {
- for (let i = 0; i < res.tempFiles.length; i++) {
- //这里的id和页面中写的html代码的canvas的id要一致
- let canvasId = 'zipCanvas'
- //原图的路径
- let imagePath = res.tempFiles[i].path
- //大小限制
- let limitSize = 1024 * 2
- //初始绘画区域是画布自身的宽度也就是屏幕宽度
- let drawWidth = uni.getSystemInfoSync().windowWidth
- let that = this
- let token = uni.getStorageSync('shopToken')
- getLessLimitSizeImage(canvasId, imagePath, limitSize, drawWidth, that, (resPath) => {
- uni.showLoading({
- title: '上传中'
- })
- uni.uploadFile({
- url: that.config('APIHOST1') + '/admin/new-file/upload',
- filePath: resPath,
- header: {
- token: token
- },
- name: 'file',
- success: (uploadFileRes) => {
- this.content = JSON.parse(uploadFileRes.data).data
- this.setChatSave(2)
- uni.hideLoading()
- },
- fail: () => {
- uni.showToast({
- title: '上传失败',
- icon: 'error'
- })
- }
- })
- })
- }
- }
- })
- },
- config: function (name) {
- var info = null
- if (name) {
- var name2 = name.split('.') //字符分割
- if (name2.length > 1) {
- info = configdata[name2[0]][name2[1]] || null
- } else {
- info = configdata[name] || null
- }
- if (info == null) {
- // let web_config = cache.get("web_config");
- // if (web_config) {
- // if (name2.length > 1) {
- // info = web_config[name2[0]][name2[1]] || null;
- // } else {
- // info = web_config[name] || null;
- // }
- // }
- }
- }
- return info
- },
- //查看大图
- viewImg(item) {
- let imgsArray = []
- imgsArray[0] = item
- uni.previewImage({
- current: 0,
- urls: imgsArray
- })
- }
- }
- }
- </script>
- <style>
- page {
- /* background: #1c1b20; */
- }
- .input-box {
- position: fixed;
- bottom: 0;
- left: 0;
- height: 100rpx;
- width: 100%;
- display: flex;
- box-sizing: content-box;
- z-index: 999;
- /* background-color: #ececec; */
- /* padding: 0 5rpx; */
- }
- .chat-listitem {
- display: flex;
- margin-top: 20rpx;
- padding: 10rpx;
- }
- .chat-listitem-text {
- color: #000000;
- background: #ffffff;
- margin-top: 10rpx;
- width: fit-content;
- padding: 15rpx;
- font-size: 30rpx;
- height: max-content;
- word-wrap: break-word;
- word-break: break-all;
- border-radius: 10rpx;
- }
- .chat-listitem-image-type4 {
- color: #000000;
- background: #ffffff;
- width: fit-content;
- font-size: 30rpx;
- height: max-content;
- word-wrap: break-word;
- word-break: break-all;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- }
- .chat-listitem-image {
- margin-top: 5rpx;
- width: 75rpx;
- height: 75rpx;
- border-radius: 5rpx;
- }
- .save {
- width: 130rpx;
- text-align: center;
- border-radius: 10rpx;
- height: 70rpx;
- color: #fff;
- background: #1789fd;
- margin: 5rpx 10rpx 0;
- line-height: 70rpx;
- }
- </style>
|