DictTag组件,当value没有匹配的值时,展示value
This commit is contained in:
parent
46e7d070a2
commit
9b6cd8b047
@ -2,13 +2,9 @@
|
|||||||
<div>
|
<div>
|
||||||
<template v-for="(item, index) in options">
|
<template v-for="(item, index) in options">
|
||||||
<template v-if="values.includes(item.value)">
|
<template v-if="values.includes(item.value)">
|
||||||
<span
|
<span v-if="item.elTagType == 'default' || item.elTagType == ''" :key="item.value" :index="index" :class="item.elTagClass">
|
||||||
v-if="item.elTagType == 'default' || item.elTagType == ''"
|
{{ item.label + " " }}
|
||||||
:key="item.value"
|
</span>
|
||||||
:index="index"
|
|
||||||
:class="item.elTagClass"
|
|
||||||
>{{ item.label }}</span
|
|
||||||
>
|
|
||||||
<el-tag
|
<el-tag
|
||||||
v-else
|
v-else
|
||||||
:disable-transitions="true"
|
:disable-transitions="true"
|
||||||
@ -16,33 +12,85 @@
|
|||||||
:index="index"
|
:index="index"
|
||||||
:type="item.elTagType === 'primary' ? '' : item.elTagType"
|
:type="item.elTagType === 'primary' ? '' : item.elTagType"
|
||||||
:class="item.elTagClass"
|
:class="item.elTagClass"
|
||||||
>{{ item.label }}</el-tag
|
|
||||||
>
|
>
|
||||||
|
{{ item.label + " " }}
|
||||||
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
<template v-if="unmatch && showValue">
|
||||||
|
{{ unmatchArray }}
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { PropType } from 'vue';
|
import { PropType } from 'vue';
|
||||||
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
// 数据
|
// 数据
|
||||||
options: {
|
options: {
|
||||||
type: Array as PropType<DictDataOption[]>,
|
type: Array as PropType<DictDataOption[]>,
|
||||||
default: null,
|
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(() => {
|
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)];
|
return Array.isArray(props.value) ? props.value : [String(props.value)];
|
||||||
} else {
|
} else {
|
||||||
return [];
|
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>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user