2023-01-08 22:02:27 +08:00
|
|
|
|
<!--
|
|
|
|
|
- Copyright (C) 2018-2019
|
|
|
|
|
- All rights reserved, Designed By www.joolun.com
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
|
<div class="msg-main" v-loading="mainLoading">
|
|
|
|
|
<div class="msg-div" :id="'msg-div'+nowStr">
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<!-- 加载更多 -->
|
2023-01-08 22:02:27 +08:00
|
|
|
|
<div v-loading="tableLoading"></div>
|
|
|
|
|
<div v-if="!tableLoading">
|
|
|
|
|
<div class="el-table__empty-block" v-if="loadMore" @click="loadingMore"><span class="el-table__empty-text">点击加载更多</span></div>
|
|
|
|
|
<div class="el-table__empty-block" v-if="!loadMore"><span class="el-table__empty-text">没有更多了</span></div>
|
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<!-- 消息列表 -->
|
2023-01-08 22:02:27 +08:00
|
|
|
|
<div class="execution" v-for="item in tableData" :key='item.id'>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div class="avue-comment" :class="item.sendFrom == '2' ? 'avue-comment--reverse' : ''">
|
2023-01-08 22:02:27 +08:00
|
|
|
|
<div class="avatar-div">
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<img :src="item.sendFrom == '1' ? item.headimgUrl : item.appLogo" class="avue-comment__avatar">
|
|
|
|
|
<div class="avue-comment__author">{{item.sendFrom == '1' ? item.nickName : item.appName}}</div>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="avue-comment__main">
|
|
|
|
|
<div class="avue-comment__header">
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div class="avue-comment__create_time">{{ parseTime(item.createTime) }}</div>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div class="avue-comment__body" :style="item.sendFrom == '2' ? 'background: #6BED72;' : ''">
|
|
|
|
|
<!-- 【事件】区域 -->
|
|
|
|
|
<div v-if="item.type === 'event' && item.event === 'subscribe'">
|
|
|
|
|
<el-tag type="success" size="mini">关注</el-tag>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'event' && item.event === 'unsubscribe'">
|
|
|
|
|
<el-tag type="danger" size="mini">取消关注</el-tag>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'event' && item.event === 'CLICK'">
|
|
|
|
|
<el-tag size="mini">点击菜单</el-tag>【{{ item.eventKey }}】
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'event' && item.event === 'VIEW'">
|
|
|
|
|
<el-tag size="mini">点击菜单链接</el-tag>【{{ item.eventKey }}】
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'event' && item.event === 'scancode_waitmsg'"> <!-- TODO 芋艿:需要测试下 -->
|
|
|
|
|
<el-tag size="mini">扫码结果</el-tag>【{{ item.eventKey }}】
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'event'">
|
|
|
|
|
<el-tag type="danger" size="mini">未知事件类型</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 【消息】区域 -->
|
|
|
|
|
<div v-else-if="item.type === 'text'">{{ item.content }}</div>
|
|
|
|
|
<div v-else-if="item.type === 'voice'">
|
|
|
|
|
<wx-voice-player :url="item.mediaUrl" :content="item.recognition" />
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'image'">
|
|
|
|
|
<a target="_blank" :href="item.mediaUrl">
|
|
|
|
|
<img :src="item.mediaUrl" style="width: 100px">
|
|
|
|
|
</a>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div v-else-if="item.type === 'video' || item.type === 'shortvideo'" style="text-align: center">
|
|
|
|
|
<wx-video-player :url="item.mediaUrl" />
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="item.type === 'link'" class="avue-card__detail">
|
|
|
|
|
<el-link type="success" :underline="false" target="_blank" :href="item.url">
|
|
|
|
|
<div class="avue-card__title"><i class="el-icon-link"></i>{{ item.title }}</div>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</el-link>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<div class="avue-card__info" style="height: unset">{{item.description}}</div>
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
<!-- <div v-if="item.repType == 'location'">-->
|
|
|
|
|
<!-- <el-link type="primary" target="_blank" :href="'https://map.qq.com/?type=marker&isopeninfowin=1&markertype=1&pointx='+item.repLocationY+'&pointy='+item.repLocationX+'&name='+item.repContent+'&ref=joolun'">-->
|
|
|
|
|
<!-- <img :src="'https://apis.map.qq.com/ws/staticmap/v2/?zoom=10&markers=color:blue|label:A|'+item.repLocationX+','+item.repLocationY+'&key='+qqMapKey+'&size=250*180'">-->
|
|
|
|
|
<!-- <p/><i class="el-icon-map-location"></i>{{item.repContent}}-->
|
|
|
|
|
<!-- </el-link>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
|
|
|
|
|
<!-- <div v-if="item.repType == 'news'" style="width: 300px">-->
|
|
|
|
|
<!-- <WxNews :objData="item.content.articles"></WxNews>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
|
|
|
|
|
<!-- <div v-if="item.repType == 'music'">-->
|
|
|
|
|
<!-- <el-link type="success" :underline="false" target="_blank" :href="item.repUrl">-->
|
|
|
|
|
<!-- <div class="avue-card__body" style="padding:10px;background-color: #fff;border-radius: 5px">-->
|
|
|
|
|
<!-- <div class="avue-card__avatar"><img :src="item.repThumbUrl" alt=""></div>-->
|
|
|
|
|
<!-- <div class="avue-card__detail">-->
|
|
|
|
|
<!-- <div class="avue-card__title" style="margin-bottom:unset">{{item.repName}}</div>-->
|
|
|
|
|
<!-- <div class="avue-card__info" style="height: unset">{{item.repDesc}}</div>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-link>-->
|
|
|
|
|
<!-- </div>-->
|
2023-01-08 22:02:27 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <div class="msg-send" v-loading="sendLoading">-->
|
|
|
|
|
<!-- <WxReplySelect :objData="objData"></WxReplySelect>-->
|
|
|
|
|
<!-- <el-button type="success" size="small" class="send-but" @click="sendMsg">发送(S)</el-button>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-01-08 23:20:07 +08:00
|
|
|
|
// import { getMessagePage, addObj } from '@/api/mp/message'
|
|
|
|
|
import { getMessagePage } from '@/api/mp/message'
|
|
|
|
|
// import WxReplySelect from '@/components/wx-reply/main.vue'
|
|
|
|
|
// import WxNews from '@/components/wx-news/main.vue'
|
|
|
|
|
import WxVideoPlayer from '@/views/mp/components/wx-video-play/main.vue';
|
|
|
|
|
import WxVoicePlayer from '@/views/mp/components/wx-voice-play/main.vue';
|
2023-01-08 22:02:27 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "wxMsg",
|
|
|
|
|
components: {
|
2023-01-08 23:20:07 +08:00
|
|
|
|
// WxReplySelect,
|
|
|
|
|
// WxNews,
|
2023-01-08 22:02:27 +08:00
|
|
|
|
WxVideoPlayer,
|
|
|
|
|
WxVoicePlayer
|
|
|
|
|
},
|
|
|
|
|
props: {
|
2023-01-08 23:20:07 +08:00
|
|
|
|
wxUserId: {
|
|
|
|
|
type: String
|
2023-01-08 22:02:27 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
nowStr: new Date().getTime(),
|
|
|
|
|
objData:{
|
|
|
|
|
repType: 'text'
|
|
|
|
|
},
|
|
|
|
|
mainLoading:false,
|
|
|
|
|
sendLoading:false,
|
|
|
|
|
tableLoading:false,
|
|
|
|
|
loadMore: true,
|
2023-01-08 23:20:07 +08:00
|
|
|
|
tableData: [], // 消息列表
|
2023-01-08 22:02:27 +08:00
|
|
|
|
page: {
|
|
|
|
|
total: 0, // 总页数
|
2023-01-08 23:20:07 +08:00
|
|
|
|
pageNo: 1, // 当前页数
|
2023-01-08 22:02:27 +08:00
|
|
|
|
pageSize: 14, // 每页显示多少条
|
|
|
|
|
ascs:[],//升序字段
|
|
|
|
|
descs:'create_time'//降序字段
|
|
|
|
|
},
|
|
|
|
|
option: {
|
|
|
|
|
props: {
|
|
|
|
|
avatar: 'avatar',
|
|
|
|
|
author: 'author',
|
|
|
|
|
body: 'body'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.refreshChange()
|
|
|
|
|
},
|
|
|
|
|
methods:{
|
|
|
|
|
sendMsg(){
|
|
|
|
|
if(this.objData){
|
|
|
|
|
if(this.objData.repType == 'news'){
|
|
|
|
|
this.objData.content.articles = [this.objData.content.articles[0]]
|
|
|
|
|
this.$message({
|
|
|
|
|
showClose: true,
|
|
|
|
|
message: '图文消息条数限制在1条以内,已默认发送第一条',
|
|
|
|
|
type: 'success'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.sendLoading = true
|
|
|
|
|
addObj(Object.assign({
|
|
|
|
|
wxUserId: this.wxUserId
|
|
|
|
|
},this.objData)).then(data => {
|
|
|
|
|
this.sendLoading = false
|
|
|
|
|
data = data.data
|
|
|
|
|
this.tableData = [...this.tableData , ...[data] ]
|
|
|
|
|
this.scrollToBottom()
|
|
|
|
|
this.objData = {
|
|
|
|
|
repType: 'text'
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.sendLoading = false
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
scrollToBottom: function () {
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
let div = document.getElementById('msg-div'+this.nowStr)
|
|
|
|
|
div.scrollTop = div.scrollHeight
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
loadingMore(){
|
2023-01-08 23:20:07 +08:00
|
|
|
|
this.page.pageNo++
|
2023-01-08 22:02:27 +08:00
|
|
|
|
this.getPage(this.page)
|
|
|
|
|
},
|
|
|
|
|
getPage(page, params) {
|
|
|
|
|
this.tableLoading = true
|
2023-01-08 23:20:07 +08:00
|
|
|
|
getMessagePage(Object.assign({
|
|
|
|
|
pageNo: page.pageNo,
|
|
|
|
|
pageSize: page.pageSize,
|
2023-01-08 22:02:27 +08:00
|
|
|
|
descs:page.descs,
|
|
|
|
|
ascs: page.ascs,
|
|
|
|
|
wxUserId: this.wxUserId
|
|
|
|
|
}, params)).then(response => {
|
|
|
|
|
let msgDiv = document.getElementById('msg-div'+this.nowStr)
|
|
|
|
|
let scrollHeight = 0
|
|
|
|
|
if(msgDiv){
|
|
|
|
|
scrollHeight = msgDiv.scrollHeight
|
|
|
|
|
}
|
2023-01-08 23:20:07 +08:00
|
|
|
|
let data = response.data.list.reverse()
|
2023-01-08 22:02:27 +08:00
|
|
|
|
this.tableData = [...data , ...this.tableData]
|
|
|
|
|
this.page.total = response.data.total
|
|
|
|
|
this.tableLoading = false
|
2023-01-08 23:20:07 +08:00
|
|
|
|
if(data.length < this.page.pageSize || data.length === 0){
|
2023-01-08 22:02:27 +08:00
|
|
|
|
this.loadMore = false
|
|
|
|
|
}
|
2023-01-08 23:20:07 +08:00
|
|
|
|
if(this.page.pageNo == 1){//定位到消息底部
|
2023-01-08 22:02:27 +08:00
|
|
|
|
this.scrollToBottom()
|
|
|
|
|
}else{
|
|
|
|
|
if(data.length != 0){
|
|
|
|
|
this.$nextTick(() => {//定位滚动条
|
|
|
|
|
if(scrollHeight != 0){
|
|
|
|
|
msgDiv.scrollTop = document.getElementById('msg-div'+this.nowStr).scrollHeight - scrollHeight - 100
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-08 23:20:07 +08:00
|
|
|
|
this.page.pageNo = page.pageNo
|
2023-01-08 22:02:27 +08:00
|
|
|
|
this.page.pageSize = page.pageSize
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 刷新回调
|
|
|
|
|
*/
|
|
|
|
|
refreshChange() {
|
|
|
|
|
this.getPage(this.page)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.msg-main{
|
|
|
|
|
margin-top: -30px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
.msg-div{
|
|
|
|
|
height: 50vh;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: #eaeaea;
|
|
|
|
|
}
|
|
|
|
|
.msg-send{
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
.avue-comment__main{
|
|
|
|
|
flex: unset!important;
|
|
|
|
|
border-radius: 5px!important;
|
|
|
|
|
margin: 0 8px!important;
|
|
|
|
|
}
|
2023-01-08 23:20:07 +08:00
|
|
|
|
.avue-comment--reverse {
|
|
|
|
|
-webkit-box-orient: horizontal;
|
|
|
|
|
-webkit-box-direction: reverse;
|
|
|
|
|
-ms-flex-direction: row-reverse;
|
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
}
|
2023-01-08 22:02:27 +08:00
|
|
|
|
.avue-comment__header{
|
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
.avue-comment__body {
|
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
.avatar-div{
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 80px;
|
|
|
|
|
}
|
|
|
|
|
.send-but{
|
|
|
|
|
float: right;
|
|
|
|
|
margin-top: 8px!important;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|