excel.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <script setup name="excel">
  2. import { ref, watch, defineEmits, withDefaults, defineProps } from "vue";
  3. const props = defineProps({
  4. data: { type: Array, default: () => [] },
  5. height: { type: String, default: "400px" },
  6. showCheckbox: { type: Boolean, default: false },
  7. checkIds: { type: Array, default: () => [] },
  8. currentIds: { type: String, default: "" },
  9. });
  10. // {
  11. // data: () => [],
  12. // height: "400px",
  13. // showCheckbox: false,
  14. // checkIds: () => [],
  15. // }
  16. const excelCheckIds = ref([]);
  17. const currentId = ref("");
  18. const emits = defineEmits(["excelChange", "checkChange"]);
  19. const funExcelChange = (obj) => {
  20. currentId.value = obj.id;
  21. emits("excelChange", obj);
  22. };
  23. watch(
  24. () => props.checkIds,
  25. (newVal, oldVal) => {
  26. //监听外部checkIds 赋值当前全选
  27. excelCheckIds.value = newVal;
  28. },
  29. { immediate: true }
  30. );
  31. const funCheckChange = (checkArr) => {
  32. emits("checkChange", { checkArr, data: props.data }); //抛出当前选择checkIds, 和当前的childs数据项
  33. };
  34. </script>
  35. <template>
  36. <div class="excel-wrapper">
  37. <el-empty v-if="!props.data.length" description="暂无数据" />
  38. <el-checkbox-group
  39. size="small"
  40. v-model="excelCheckIds"
  41. v-if="props.showCheckbox"
  42. @change="funCheckChange"
  43. >
  44. <el-checkbox
  45. :class="{ '!bg-[rgb(236,245,255)]': currentId === item.id }"
  46. size="small"
  47. class="hover:bg-[rgb(245,247,250)] !mr-0 py-[3px]"
  48. :label="item.id"
  49. v-for="item in props.data"
  50. :key="item.name"
  51. >
  52. <span
  53. class="whitespace-nowrap cursor-pointer font-bold text-[12px] align-middle inline-flex items-center"
  54. @click.stop="funExcelChange(item)"
  55. ><el-icon class="color:rgb(71, 179, 71)"><Document /></el-icon
  56. >{{ item.name }}</span
  57. >
  58. </el-checkbox>
  59. </el-checkbox-group>
  60. <div class="excel-list" v-else>
  61. <div
  62. class="excel-item"
  63. v-for="item in props.data"
  64. :key="item.name"
  65. :class="{ active: currentId === item.id }"
  66. @click="funExcelChange(item)"
  67. >
  68. <el-icon style="color: rgb(71, 179, 71); margin-right: 10px"
  69. ><Document /></el-icon
  70. >{{ item.name }}
  71. </div>
  72. </div>
  73. </div>
  74. </template>
  75. <style lang="less" scoped>
  76. .excel-wrapper {
  77. height: 100%;
  78. padding: 20px;
  79. width: 20%;
  80. margin-right: 20px;
  81. border-radius: 10px;
  82. box-shadow: 0 1px 3px 0 rgba(5, 187, 76, 1),
  83. 0 1px 2px -1px rgba(5, 187, 76, 1);
  84. .excel-list {
  85. height: 100%;
  86. width: 100%;
  87. padding: 10px;
  88. overflow: auto;
  89. .excel-item {
  90. padding: 10px;
  91. display: flex;
  92. align-items: center;
  93. color: #b3bdc0;
  94. &.active {
  95. background: rgba(97, 97, 90, 25%);
  96. }
  97. }
  98. }
  99. }
  100. </style>