refactor:字典组件忽略大小写
Signed-off-by: 刘继东 <wwwliujidong@163.com>
This commit is contained in:
parent
c759728269
commit
91b661c0d5
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<template v-for="(item, index) in options">
|
||||
<template v-if="values.includes(item.value)">
|
||||
<template v-if="values.includes(item.value) || values.includes(item.value.toUpperCase())">
|
||||
<span
|
||||
v-if="item.raw.listClass == 'default' || item.raw.listClass == ''"
|
||||
:key="item.value"
|
||||
|
|
|
|||
Loading…
Reference in New Issue