多维表格
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.

86 lines
2.4 KiB

<script lang="ts" setup>
interface Props {
record: Record<string, string>
9 months ago
name: string
date?: string
color?: string
resize?: boolean
9 months ago
size?: 'small' | 'medium' | 'large'
showDate?: boolean
position?: 'leftRounded' | 'rightRounded' | 'rounded' | 'none'
}
withDefaults(defineProps<Props>(), {
name: '',
date: '',
resize: true,
color: 'blue',
size: 'small',
showDate: true,
position: 'rounded',
9 months ago
})
const emit = defineEmits(['resize-start'])
</script>
<template>
9 months ago
<div
:class="{
'min-h-9': size === 'small',
'min-h-10': size === 'medium',
'min-h-12': size === 'large',
'rounded-l-lg ml-3': position === 'leftRounded',
'rounded-r-lg mr-3': position === 'rightRounded',
'rounded-lg mx-3': position === 'rounded',
'rounded-none': position === 'none',
'bg-maroon-50': color === 'maroon',
'bg-blue-50': color === 'blue',
'bg-green-50': color === 'green',
'bg-yellow-50': color === 'yellow',
'bg-pink-50': color === 'pink',
'bg-purple-50': color === 'purple',
9 months ago
}"
class="relative"
9 months ago
>
<div class="h-full absolute py-2">
<div
v-if="position === 'leftRounded' || position === 'rounded'"
:class="{
'bg-maroon-500': color === 'maroon',
'bg-blue-500': color === 'blue',
'bg-green-500': color === 'green',
'bg-yellow-500': color === 'yellow',
'bg-pink-500': color === 'pink',
'bg-purple-500': color === 'purple',
}"
class="block h-full min-h-5 ml-1 w-1 rounded mr-2"
></div>
</div>
<span
v-if="resize"
class="absolute -left-1 resize mt-1.5 h-9 w-2"
@mousedown.stop="emit('resize-start', 'left', $event, record)"
>
</span>
<div class="ml-3 mt-2 text-ellipsis overflow-hidden w-full h-6 absolute">
<span v-if="position === 'rightRounded' || position === 'none'"> .... </span>
<span class="text-sm font-bold text-gray-800">{{ name }}</span>
<span v-if="showDate" class="text-xs ml-1 text-gray-600">{{ date }}</span>
<span v-if="position === 'leftRounded' || position === 'none'" class="absolute my-0 right-5"> .... </span>
</div>
<span
v-if="resize"
class="absolute mt-1.5 right-1 w-2 h-9 px-1 resize"
@mousedown.stop="emit('resize-start', 'right', $event, record)"
>
</span>
</div>
</template>
<style lang="scss" scoped>
.resize {
cursor: ew-resize;
}
</style>