index.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div>
  3. <template v-for="(item, index) in options">
  4. <template v-if="values.includes(item.value)">
  5. <span
  6. v-if="item.elTagType == 'default' || item.elTagType == ''"
  7. :key="item.value"
  8. :index="index"
  9. :class="item.elTagClass"
  10. >{{ item.label + " " }}</span
  11. >
  12. <el-tag
  13. v-else
  14. :disable-transitions="true"
  15. :key="item.value + ''"
  16. :index="index"
  17. :type="item.elTagType === 'primary' ? '' : item.elTagType"
  18. :class="item.elTagClass"
  19. >{{ item.label + " " }}</el-tag
  20. >
  21. </template>
  22. </template>
  23. <template v-if="unmatch && showValue">
  24. {{ unmatchArray | handleArray }}
  25. </template>
  26. </div>
  27. </template>
  28. <script setup>
  29. // // 记录未匹配的项
  30. const unmatchArray = ref([]);
  31. const props = defineProps({
  32. // 数据
  33. options: {
  34. type: Array,
  35. default: null,
  36. },
  37. // 当前的值
  38. value: [Number, String, Array],
  39. // 当未找到匹配的数据时,显示value
  40. showValue: {
  41. type: Boolean,
  42. default: true,
  43. },
  44. });
  45. const values = computed(() => {
  46. if (props.value !== null && typeof props.value !== "undefined") {
  47. return Array.isArray(props.value) ? props.value : [String(props.value)];
  48. } else {
  49. return [];
  50. }
  51. });
  52. const unmatch = computed(() => {
  53. unmatchArray.value = [];
  54. if (props.value !== null && typeof props.value !== "undefined") {
  55. // 传入值为非数组
  56. if (!Array.isArray(props.value)) {
  57. if (props.options.some((v) => v.value == props.value)) return false;
  58. unmatchArray.value.push(props.value);
  59. return true;
  60. }
  61. // 传入值为Array
  62. props.value.forEach((item) => {
  63. if (!props.options.some((v) => v.value == item))
  64. unmatchArray.value.push(item);
  65. });
  66. return true;
  67. }
  68. // 没有value不显示
  69. return false;
  70. });
  71. function handleArray(array) {
  72. if (array.length === 0) return "";
  73. return array.reduce((pre, cur) => {
  74. return pre + " " + cur;
  75. });
  76. }
  77. </script>
  78. <style scoped>
  79. .el-tag + .el-tag {
  80. margin-left: 10px;
  81. }
  82. </style>