index.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <script setup>
  2. import SvgIcon from '@/components/SvgIcon';
  3. const props = defineProps({
  4. title: {
  5. type: String,
  6. default: ''
  7. },
  8. time: {
  9. type: String,
  10. default: ''
  11. },
  12. dataItem: {
  13. type: Object,
  14. default: {}
  15. }
  16. });
  17. const emit = defineEmits(['on-delete', 'on-click']);
  18. const handleCardClick = () => {
  19. emit('on-click', props.dataItem);
  20. }
  21. const handleDelete = async () => {
  22. emit('on-delete', props.dataItem.id);
  23. }
  24. </script>
  25. <template>
  26. <div class="recode-card-item" @click="handleCardClick">
  27. <p class="content">{{ title }}</p>
  28. <p class="time flex item-center justify-between w-full mt-[2px] hover:color-[red]">
  29. <span class="hover:color-[red]">{{ time }}</span>
  30. <SvgIcon name="tool-bucket-del" size="16" class="del-icon cursor-pointer hidden" @click.stop="handleDelete"></SvgIcon>
  31. </p>
  32. </div>
  33. </template>
  34. <style scoped lang="scss">
  35. .recode-card-item {
  36. position: relative;
  37. @include flex(y, start, center);
  38. height: 60px;
  39. padding: 0 10px 0 12px;
  40. transition: bakground .3s;
  41. cursor: pointer;
  42. .content {
  43. @include textLine(1);
  44. }
  45. }
  46. </style>