123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <template>
- <view class="item u-border-bottom" :class="value.isTop? 'bg_view' : ''" hover-class="message-hover-class" @tap="linkTo(value)">
- <img-cache :src="value.avatar|| value.imgUrl"></img-cache>
- <u-badge v-if="value.unreadNumber" :count="value.unreadNumber" type="error" class="badge" :offset="offset"></u-badge>
- <view class="right title-wrap">
- <view class="right_top">
- <view class="right_top_name u-line-1">{{ value.chatName || value.nickName}}</view>
- <view class="right_top_time ">{{value.lastOperTime || value.lastOpenTime | format}}</view>
- </view>
- <view class="right_btm ">
- <view class="u-line-1">{{value.msgType==0?value.content:message[value.msgType]}}</view>
- <view class="" v-show="voiceIcon">
- <u-icon color="#c4c7cf" v-if="index%2==0" name="bell" size="22"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import ImgCache from '@/components/img-cache/img-cache.vue';
- export default {
- name: 'u-chatItem',
- components:{
- ImgCache
- },
- props: {
- value: {
- type: Object,
- default() {
- return {};
- }
- },
- index: {
- type: Number,
- default: -1
- },
- voiceIcon:{
- type: Boolean,
- default () {
- return false;
- }
- }
- },
- data() {
- return {
- offset:[10, 620],
- message:['文字', '图片', '表情', '语音', '视频',
- '签到', '已撤销一条消息', '发红包', '抢红包'],
- $url:''
- };
- },
- filters: {
- format: function (e) {
- // 获取js 时间戳
- let time = new Date().getTime();
- // 去掉 js 时间戳后三位
- time = parseInt((time - e) / 1000);
- // 存储转换值
- let s;
- if (time < 60 * 10) {
- // 十分钟内
- return '刚刚';
- } else if (time < 60 * 60 && time >= 60 * 10) {
- // 超过十分钟少于1小时
- s = Math.floor(time / 60);
- return s + '分钟前';
- } else if (time < 60 * 60 * 24 && time >= 60 * 60) {
- // 超过1小时少于24小时
- s = Math.floor(time / 60 / 60);
- return s + '小时前';
- } else if (time < 60 * 60 * 24 * 3 && time >= 60 * 60 * 24) {
- // 超过1天少于3天内
- s = Math.floor(time / 60 / 60 / 24);
- return s + '天前';
- } else {
- // 超过3天
- var date = new Date(e);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
- var Y = date.getFullYear() + '-';
- var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
- var D = date.getDate() + ' ';
- var h = date.getHours() + ':';
- var m = date.getMinutes() + ':';
- var ss = date.getSeconds();
- return h+m+ss;
- }
- }
- },
- methods:{
- linkTo(item) {
- this.$emit('linkTo',item)
- }
- }
- }
- </script>
- <style lang="scss">
- .item {
- width: 750rpx;
- height: 140rpx;
- display: flex;
- align-items: center;
- image {
- width: 96rpx;
- height: 96rpx;
- margin: 20rpx;
- border-radius: 12rpx;
- flex: 0 0 96rpx;
- }
- .right {
- overflow: hidden;
- flex: 1 0;
- padding: 20rpx 20rpx 40rpx 0;
- &_top {
- display: flex;
- justify-content: space-between;
- &_name {
- font-size: 28rpx;
- font-weight: 800;
- color: $u-main-color;
- flex: 0 0 450rpx;
- overflow: hidden;
- }
- &_time {
- font-size: 22rpx;
- color: $u-light-color;
- }
- }
- &_btm {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 22rpx;
- color: $u-tips-color;
- padding-top: 10rpx;
- }
- }
- }
- .bg_view {
- background-color: #fafafa;
- }
- .slot-wrap {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- }
- </style>
|