DictTag组件,当value没有匹配的值时,展示value

This commit is contained in:
LiuHao 2023-05-05 11:34:55 +08:00
parent 46e7d070a2
commit 9b6cd8b047

View File

@ -2,13 +2,9 @@
<div>
<template v-for="(item, index) in options">
<template v-if="values.includes(item.value)">
<span
v-if="item.elTagType == 'default' || item.elTagType == ''"
:key="item.value"
:index="index"
:class="item.elTagClass"
>{{ item.label }}</span
>
<span v-if="item.elTagType == 'default' || item.elTagType == ''" :key="item.value" :index="index" :class="item.elTagClass">
{{ item.label + " " }}
</span>
<el-tag
v-else
:disable-transitions="true"
@ -16,16 +12,21 @@
:index="index"
:type="item.elTagType === 'primary' ? '' : item.elTagType"
:class="item.elTagClass"
>{{ item.label }}</el-tag
>
{{ item.label + " " }}
</el-tag>
</template>
</template>
<template v-if="unmatch && showValue">
{{ unmatchArray }}
</template>
</div>
</template>
<script setup lang="ts">
import { PropType } from 'vue';
const props = defineProps({
//
options: {
@ -33,16 +34,63 @@ const props = defineProps({
default: null,
},
//
value: [Number, String, Array],
})
value: [Number, String, Array] as PropType<number | string | Array<number | string>>,
// value
showValue: {
type: Boolean as PropType<boolean>,
default: true,
},
});
const values = computed(() => {
if (props.value !== null && typeof props.value !== 'undefined') {
if (props.value !== null && typeof props.value !== "undefined") {
return Array.isArray(props.value) ? props.value : [String(props.value)];
} else {
return [];
}
})
});
const unmatch = computed(() => {
if (props.value !== null && typeof props.value !== "undefined") {
//
if (!Array.isArray(props.value)) {
if (props.options.some((v) => v.value == props.value)) {
return false;
}
return true;
}
return true;
}
// value
return false;
});
const unmatchArray = computed(() => {
//
const itemUnmatchArray: Array<string | number> = [];
if (props.value !== null && typeof props.value !== "undefined") {
//
if (!Array.isArray(props.value)) {
itemUnmatchArray.push(props.value);
} else {
// Array
props.value.forEach((item) => {
if (!props.options.some((v) => v.value == item)) {
itemUnmatchArray.push(item);
}
});
}
}
// value
return handleArray(itemUnmatchArray);
});
const handleArray = (array: Array<string | number>) => {
if (array.length === 0) return "";
return array.reduce((pre, cur) => {
return pre + " " + cur;
});
}
</script>
<style scoped>