You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
497 lines
11 KiB
497 lines
11 KiB
4 years ago
|
<template>
|
||
|
<!-- #ifdef APP-NVUE -->
|
||
|
<cell>
|
||
|
<!-- #endif -->
|
||
|
<view :hover-class="!clickable && !link ? '' : 'uni-list-chat--hover'" class="uni-list-chat" @click.stop="onClick">
|
||
|
<view :class="{ 'uni-list--border': border, 'uni-list-chat--first': isFirstChild }"></view>
|
||
|
<view class="uni-list-chat__container">
|
||
|
<view class="uni-list-chat__header-warp">
|
||
|
<view v-if="avatarCircle || avatarList.length === 0" class="uni-list-chat__header" :class="{ 'header--circle': avatarCircle }">
|
||
|
<image class="uni-list-chat__header-image" :src="avatar" mode="aspectFill"></image>
|
||
|
</view>
|
||
|
<!-- 头像组 -->
|
||
|
<view v-else class="uni-list-chat__header">
|
||
|
<view v-for="(item, index) in avatarList" :key="index" class="uni-list-chat__header-box" :class="computedAvatar" :style="{ width: imageWidth + 'px', height: imageWidth + 'px' }">
|
||
|
<image class="uni-list-chat__header-image" :style="{ width: imageWidth + 'px', height: imageWidth + 'px' }" :src="item.url" mode="aspectFill"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view v-if="badgeText && badgePositon === 'left'" class="uni-list-chat__badge uni-list-chat__badge-pos" :class="[isSingle]">
|
||
|
<text class="uni-list-chat__badge-text">{{ badgeText === 'dot' ? '' : badgeText }}</text>
|
||
|
</view>
|
||
|
<view class="uni-list-chat__content">
|
||
|
<view class="uni-list-chat__content-main">
|
||
|
<text class="uni-list-chat__content-title uni-ellipsis">{{ title }}</text>
|
||
|
<text class="uni-list-chat__content-note uni-ellipsis">{{ note }}</text>
|
||
|
</view>
|
||
|
<view class="uni-list-chat__content-extra">
|
||
|
<slot>
|
||
|
<text class="uni-list-chat__content-extra-text">{{ time }}</text>
|
||
|
<view v-if="badgeText && badgePositon === 'right'" class="uni-list-chat__badge" :class="[isSingle, badgePositon === 'right' ? 'uni-list-chat--right' : '']">
|
||
|
<text class="uni-list-chat__badge-text">{{ badgeText === 'dot' ? '' : badgeText }}</text>
|
||
|
</view>
|
||
|
</slot>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<!-- #ifdef APP-NVUE -->
|
||
|
</cell>
|
||
|
<!-- #endif -->
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
// 头像大小
|
||
|
const avatarWidth = 45;
|
||
|
|
||
|
/**
|
||
|
* ListChat 聊天列表
|
||
|
* @description 聊天列表,用于创建聊天类列表
|
||
|
* @tutorial https://ext.dcloud.net.cn/plugin?id=24
|
||
|
* @property {String} title 标题
|
||
|
* @property {String} note 描述
|
||
|
* @property {Boolean} clickable = [true|false] 是否开启点击反馈,默认为false
|
||
|
* @property {String} badgeText 数字角标内容
|
||
|
* @property {String} badgePositon = [left|right] 角标位置,默认为 right
|
||
|
* @property {String} link = [false|navigateTo|redirectTo|reLaunch|switchTab] 是否展示右侧箭头并开启点击反馈,默认为false
|
||
|
* @value false 不开启
|
||
|
* @value navigateTo 同 uni.navigateTo()
|
||
|
* @value redirectTo 同 uni.redirectTo()
|
||
|
* @value reLaunch 同 uni.reLaunch()
|
||
|
* @value switchTab 同 uni.switchTab()
|
||
|
* @property {String | PageURIString} to 跳转目标页面
|
||
|
* @property {String} time 右侧时间显示
|
||
|
* @property {Boolean} avatarCircle = [true|false] 是否显示圆形头像,默认为false
|
||
|
* @property {String} avatar 头像地址,avatarCircle 不填时生效
|
||
|
* @property {Array} avatarList 头像组,格式为 [{url:''}]
|
||
|
* @event {Function} click 点击 uniListChat 触发事件
|
||
|
*/
|
||
|
export default {
|
||
|
name: 'UniListChat',
|
||
|
props: {
|
||
|
title: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
note: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
clickable: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
link: {
|
||
|
type: [Boolean, String],
|
||
|
default: false
|
||
|
},
|
||
|
to: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
badgeText: {
|
||
|
type: [String, Number],
|
||
|
default: ''
|
||
|
},
|
||
|
badgePositon: {
|
||
|
type: String,
|
||
|
default: 'right'
|
||
|
},
|
||
|
time: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
avatarCircle: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
avatar: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
avatarList: {
|
||
|
type: Array,
|
||
|
default () {
|
||
|
return [];
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
// inject: ['list'],
|
||
|
computed: {
|
||
|
isSingle() {
|
||
|
if (this.badgeText === 'dot') {
|
||
|
return 'uni-badge--dot';
|
||
|
} else {
|
||
|
const badgeText = this.badgeText.toString();
|
||
|
if (badgeText.length > 1) {
|
||
|
return 'uni-badge--complex';
|
||
|
} else {
|
||
|
return 'uni-badge--single';
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
computedAvatar() {
|
||
|
if (this.avatarList.length > 4) {
|
||
|
this.imageWidth = avatarWidth * 0.31;
|
||
|
return 'avatarItem--3';
|
||
|
} else if (this.avatarList.length > 1) {
|
||
|
this.imageWidth = avatarWidth * 0.47;
|
||
|
return 'avatarItem--2';
|
||
|
} else {
|
||
|
this.imageWidth = avatarWidth;
|
||
|
return 'avatarItem--1';
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
isFirstChild: false,
|
||
|
border: true,
|
||
|
// avatarList: 3,
|
||
|
imageWidth: 50
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
this.list = this.getForm()
|
||
|
if (this.list) {
|
||
|
if (!this.list.firstChildAppend) {
|
||
|
this.list.firstChildAppend = true;
|
||
|
this.isFirstChild = true;
|
||
|
}
|
||
|
this.border = this.list.border;
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
/**
|
||
|
* 获取父元素实例
|
||
|
*/
|
||
|
getForm(name = 'uniList') {
|
||
|
let parent = this.$parent;
|
||
|
let parentName = parent.$options.name;
|
||
|
while (parentName !== name) {
|
||
|
parent = parent.$parent;
|
||
|
if (!parent) return false
|
||
|
parentName = parent.$options.name;
|
||
|
}
|
||
|
return parent;
|
||
|
},
|
||
|
onClick() {
|
||
|
if (this.to !== '') {
|
||
|
this.openPage();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (this.clickable || this.link) {
|
||
|
this.$emit('click', {
|
||
|
data: {}
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
openPage() {
|
||
|
if (['navigateTo', 'redirectTo', 'reLaunch', 'switchTab'].indexOf(this.link) !== -1) {
|
||
|
this.pageApi(this.link);
|
||
|
} else {
|
||
|
this.pageApi('navigateTo');
|
||
|
}
|
||
|
},
|
||
|
pageApi(api) {
|
||
|
uni[api]({
|
||
|
url: this.to,
|
||
|
success: res => {
|
||
|
this.$emit('click', {
|
||
|
data: res
|
||
|
});
|
||
|
},
|
||
|
fail: err => {
|
||
|
this.$emit('click', {
|
||
|
data: err
|
||
|
});
|
||
|
console.error(err.errMsg);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.uni-list-chat {
|
||
|
font-size: 16px;
|
||
|
position: relative;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat--hover {
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
|
||
|
.uni-list--border {
|
||
|
position: relative;
|
||
|
margin-left: 15px;
|
||
|
/* #ifdef APP-PLUS */
|
||
|
border-top-color: #e5e5e5;
|
||
|
border-top-style: solid;
|
||
|
border-top-width: 0.5px;
|
||
|
/* #endif */
|
||
|
}
|
||
|
|
||
|
/* #ifndef APP-NVUE */
|
||
|
.uni-list--border:after {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
left: 0;
|
||
|
height: 1px;
|
||
|
content: "";
|
||
|
-webkit-transform: scaleY(0.5);
|
||
|
transform: scaleY(0.5);
|
||
|
background-color: #e5e5e5;
|
||
|
}
|
||
|
|
||
|
.uni-list-item--first:after {
|
||
|
height: 0px;
|
||
|
}
|
||
|
|
||
|
/* #endif */
|
||
|
.uni-list-chat--first {
|
||
|
border-top-width: 0px;
|
||
|
}
|
||
|
|
||
|
.uni-ellipsis {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
/* #endif */
|
||
|
/* #ifdef APP-NVUE */
|
||
|
lines: 1;
|
||
|
/* #endif */
|
||
|
}
|
||
|
|
||
|
.uni-ellipsis-2 {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
display: -webkit-box;
|
||
|
-webkit-line-clamp: 2;
|
||
|
-webkit-box-orient: vertical;
|
||
|
/* #endif */
|
||
|
/* #ifdef APP-NVUE */
|
||
|
lines: 2;
|
||
|
/* #endif */
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__container {
|
||
|
position: relative;
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: row;
|
||
|
flex: 1;
|
||
|
padding: 10px 15px;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__header-warp {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__header {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
align-content: center;
|
||
|
/* #endif */
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-wrap: wrap-reverse;
|
||
|
/* #ifdef APP-NVUE */
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
/* #endif */
|
||
|
/* #ifndef APP-NVUE */
|
||
|
width: 45px;
|
||
|
height: 45px;
|
||
|
/* #endif */
|
||
|
border-radius: 5px;
|
||
|
border-color: #eee;
|
||
|
border-width: 1px;
|
||
|
border-style: solid;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__header-box {
|
||
|
/* #ifndef APP-PLUS */
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
width: 45px;
|
||
|
height: 45px;
|
||
|
/* #endif */
|
||
|
/* #ifdef APP-NVUE */
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
/* #endif */
|
||
|
overflow: hidden;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__header-image {
|
||
|
margin: 1px;
|
||
|
/* #ifdef APP-NVUE */
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
/* #endif */
|
||
|
/* #ifndef APP-NVUE */
|
||
|
width: 45px;
|
||
|
height: 45px;
|
||
|
/* #endif */
|
||
|
}
|
||
|
|
||
|
/* #ifndef APP-NVUE */
|
||
|
.uni-list-chat__header-image {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.avatarItem--1 {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.avatarItem--2 {
|
||
|
width: 47%;
|
||
|
height: 47%;
|
||
|
}
|
||
|
|
||
|
.avatarItem--3 {
|
||
|
width: 32%;
|
||
|
height: 32%;
|
||
|
}
|
||
|
|
||
|
/* #endif */
|
||
|
.header--circle {
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__content {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: row;
|
||
|
flex: 1;
|
||
|
overflow: hidden;
|
||
|
padding: 2px 0;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__content-main {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
padding-left: 10px;
|
||
|
flex: 1;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__content-title {
|
||
|
font-size: 16px;
|
||
|
color: #3b4144;
|
||
|
font-weight: normal;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__content-note {
|
||
|
margin-top: 3px;
|
||
|
color: #999;
|
||
|
font-size: 12px;
|
||
|
font-weight: normal;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__content-extra {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
flex-shrink: 0;
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
align-items: flex-end;
|
||
|
margin-left: 5px;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__content-extra-text {
|
||
|
color: #999;
|
||
|
font-size: 12px;
|
||
|
font-weight: normal;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__badge-pos {
|
||
|
position: absolute;
|
||
|
/* #ifdef APP-NVUE */
|
||
|
left: 55px;
|
||
|
top: 3px;
|
||
|
/* #endif */
|
||
|
/* #ifndef APP-NVUE */
|
||
|
left: calc(45px + 10px - 6px + 0px);
|
||
|
top: calc(10px/ 2 + 1px + 0px);
|
||
|
/* #endif */
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__badge {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
border-radius: 100px;
|
||
|
background-color: #ff5a5f;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat__badge-text {
|
||
|
color: #fff;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
.uni-badge--single {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
/* #endif */
|
||
|
width: 18px;
|
||
|
height: 18px;
|
||
|
}
|
||
|
|
||
|
.uni-badge--complex {
|
||
|
/* #ifdef APP-NVUE */
|
||
|
left: 50px;
|
||
|
/* #endif */
|
||
|
/* #ifndef APP-NVUE */
|
||
|
width: auto;
|
||
|
/* #endif */
|
||
|
height: 18px;
|
||
|
padding: 0 6px;
|
||
|
}
|
||
|
|
||
|
.uni-badge--dot {
|
||
|
/* #ifdef APP-NVUE */
|
||
|
left: 60px;
|
||
|
top: 6px;
|
||
|
/* #endif */
|
||
|
/* #ifndef APP-NVUE */
|
||
|
left: calc(45px + 15px - 10px/ 2 + 1px + 0px);
|
||
|
/* #endif */
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.uni-list-chat--right {
|
||
|
/* #ifdef APP-NVUE */
|
||
|
left: 0;
|
||
|
/* #endif */
|
||
|
}
|
||
|
</style>
|