字典新增是否显示value值

This commit is contained in:
不做码农 2022-01-19 17:59:31 +08:00
parent 92755a26c8
commit 6c8e78d666

View File

@ -2,9 +2,11 @@
<div>
<template v-for="(item, index) in options">
<template v-if="values.includes(item.dictValue)">
<span v-if="item.listClass == 'default' || item.listClass == ''" :key="item.dictValue" :index="index" :class="item.cssClass">{{ item.dictLabel }}</span>
<el-tag size="mini" v-else :disable-transitions="true" :key="item.dictValue" :index="index" :type="item.listClass == 'primary' ? '' : item.listClass" :class="item.cssClass">
{{ item.dictLabel }}
<span v-if="item.listClass == 'default' || item.listClass == ''" :key="item.dictValue" :index="index" :class="item.cssClass">
{{ item.dictLabel }} <i v-if="showValue">#{{item.dictValue}}</i></span>
<el-tag size="mini" v-else :disable-transitions="true" :key="item.dictValue" :index="index"
:type="item.listClass == 'primary' ? '' : item.listClass" :class="item.cssClass">
{{ item.dictLabel }}<i v-if="showValue">#{{item.dictValue}}</i>
</el-tag>
</template>
</template>
@ -20,6 +22,7 @@ export default {
default: null,
},
value: [Number, String, Array, Boolean],
showValue: false,
},
computed: {
values() {