兰宝车间质量管理系统-前端
LiuHao
2023-04-02 251d2411f235e23209d57173857e05b637729ce8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<script setup lang="ts">
import { PropType } from 'vue';
 
const props = defineProps({
  // 数据
  options: {
    type: Array as PropType<DictDataOption[]>,
    default: null,
  },
  // 当前的值
  value: [Number, String, Array],
})
 
const values = computed(() => {
    if (props.value !== null && typeof props.value !== 'undefined') {
        return Array.isArray(props.value) ? props.value : [String(props.value)];
    } else {
        return [];
    }
})
</script>
 
<template>
    <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
                >
                <el-tag
                    v-else
                    :disable-transitions="true"
                    :key="item.value + ''"
                    :index="index"
                    :type="item.elTagType === 'primary' ? '' : item.elTagType"
                    :class="item.elTagClass"
                    >{{ item.label }}</el-tag
                >
            </template>
        </template>
    </div>
</template>
 
<style scoped>
.el-tag + .el-tag {
  margin-left: 10px;
}
</style>