UnisKB/ui/src/components/common-list/index.vue

94 lines
1.9 KiB
Vue

<template>
<div class="common-list">
<ul v-if="data.length > 0">
<template v-for="(item, index) in data" :key="index">
<li
@click.stop="clickHandle(item, index)"
:class="current === item[props.valueKey] ? 'active' : ''"
class="cursor"
@mouseenter.stop="mouseenter(item)"
@mouseleave.stop="mouseleave()"
>
<slot :row="item" :index="index"> </slot>
</li>
</template>
</ul>
<slot name="empty" v-else>
<el-empty description="暂无数据" />
</slot>
</div>
</template>
<script setup lang="ts">
import { ref, watch } from 'vue'
defineOptions({ name: 'CommonList' })
const props = withDefaults(
defineProps<{
data: Array<any>
defaultActive?: string
valueKey?: string // 唯一标识的键名
}>(),
{
data: () => [],
defaultActive: '',
valueKey: 'id'
}
)
const current = ref<Number | String>(0)
watch(
() => props.defaultActive,
(val) => {
current.value = val
},
{ immediate: true }
)
const emit = defineEmits(['click', 'mouseenter', 'mouseleave'])
function mouseenter(row: any) {
emit('mouseenter', row)
}
function mouseleave() {
emit('mouseleave')
}
function clickHandle(row: any, index: number) {
current.value = row[props.valueKey]
emit('click', row)
}
function clearCurrent() {
current.value = 0
}
defineExpose({
clearCurrent
})
</script>
<style lang="scss" scoped>
/* 通用 ui li样式 */
.common-list {
li {
padding: 10px 16px;
font-weight: 400;
color: var(--el-text-color-regular);
font-size: 14px;
&.active {
background: var(--el-color-primary-light-9);
border-radius: 4px;
color: var(--el-color-primary);
font-weight: 500;
&:hover {
background: var(--el-color-primary-light-9);
}
}
&:hover {
border-radius: 4px;
background: var(--app-text-color-light-1);
}
}
}
</style>