123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <template>
- <transition name="collapse">
- <div class="chatlog" v-if="visible">
- <div class="chatlog-wrap">
- <div class="title">
- <span>聊天记录</span>
- <span class="close" @click="handleHistoryVisible">×</span>
- </div>
- <ul class="log-list">
- <li class="log-item" v-for="(item, index) in cloneHistory.records" :class="{'mine': item.mine}">
- <div class="time" v-if="handleTimeVisible(item, index)"><span>{{item.time | formatDate(true) }}</span></div>
- <div class="avatar">
- <img :src="item.avatar">
- </div>
- <div class="message message-image" v-if="item.chatlogType === 'image'">
- <img :src="item.content" style="width: 90%;height: auto">
- </div>
- <div class="message message-file" v-else-if="item.chatlogType === 'file'">
- <a class="down-link" :href="item.content.src" :download="item.content.name"><i class="fa fa-cloud-download down-link-icon"></i><span class="down-link-file">{{item.content.name}}</span></a>
- </div>
- <div class="message" v-else v-html="item.content"></div>
- </li>
- </ul>
- <div class="page" v-show="history.total">
- <el-pagination
- layout="prev, pager, next"
- :total="history.total || 0"
- :page-size="history.size"
- @current-change="handlePageChange">
- </el-pagination>
- </div>
- </div>
- </div>
- </transition>
- </template>
- <script>
- import { formatDate } from '@/filters/filters'
- import { deepCopy } from '@/utils/utils.js'
- import { getChatlog } from '@/api/webim/index.js'
- export default {
- name: 'chatlog',
- props: {
- history: Object,
- value: {
- type: Boolean,
- default: false
- },
- mine: Object
- },
- data () {
- return {
- visible: this.value,
- cloneHistory: []
- }
- },
- methods: {
- handleTimeVisible (item, index) {
- const self = this
- if (index === 0) {
- return true
- } else {
- return (self.history.records[index].time - self.history.records[index - 1].time > 10 * 60 * 1000)
- }
- },
- handleHistoryVisible () {
- this.visible = false
- this.$emit('input', this.visible)
- },
- handlePageChange (page) {
- this.$parent.$parent.handlePageChange(page)
- },
- makeCloneHistory () {
- // if (this.history && !this.history.records) return
- // let history = deepCopy(this.history)
- const self = this
- getChatlog(self.mine.id).then(function (response) {
- debugger
- let history =response.data
- history.records.forEach(item => {
- item.mine = item.sender == self.mine.id.toString()
- })
- return self.cloneHistory=history
- })
- }
- },
- filters: {
- formatDate
- },
- mounted () {
- this.makeCloneHistory()
- },
- watch: {
- value (newV) {
- this.visible = newV
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .chatlog {
- width: 350px;
- overflow: hidden;
- .chatlog-wrap {
- width: 100%;
- height: 100%;
- border-left: 1px solid rgba(0,0,0,.14);
- background: #fff;
- .title {
- height: 40px;
- line-height: 40px;
- background: #fff;
- font-size: 14px;
- padding: 0 15px;
- border-bottom: 1px solid #e7e7e7;
- .close {
- float: right;
- font-size: 24px;
- font-weight: bold;
- cursor: pointer;
- height: 30px;
- line-height: 30px;
- }
- }
- }
- .log-list{
- margin: 0 auto 30px;
- padding: 0 10px;
- height: 100%;
- overflow: auto;
- }
- .log-item{
- box-sizing: border-box;
- width: 100%;
- padding: 5px;
- }
- .avatar{
- float: left;
- width: 30px;
- height: 30px;
- img{
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .message{
- display: inline-block;
- margin: 4px 15px;
- padding: 3px 5px;
- font-size: 14px;
- background: #fff;
- font-size: 12px;
- }
- .mine {
- overflow: hidden;
- padding-right: 10px;
- text-align: right;
- .avatar{
- float: right;
- }
- }
- .time {
- text-align: center;
- span {
- font-size: 12px;
- display: inline-block;
- padding: 3px 8px;
- color: #000;
- border-radius: 3px;
- }
- }
- .page {
- position: sticky;
- width: 100%;
- background: #fff;
- bottom: 0;
- height: 33px;
- .rs-pagination{
- text-align: right;
- }
- .rs-pagination .pagination{
- margin: 0;
- }
- }
- .down-link {
- color: #000;
- text-decoration: none;
- cursor: pointer;
- &:hover .down-link-file {
- text-decoration: underline;
- }
- }
- .down-link-icon {
- font-size: 30px;
- }
- .down-link-file {
- display: inline-block;
- margin-left: 10px;
- }
- }
- .collapse-enter-active, .collapse-leave-active {
- transition: all 0.5s;
- }
- .collapse-enter, .collapse-leave-to {
- width: 0;
- transform: translate3d(350px);
- }
- </style>
|