refactor:字典组件忽略大小写

Signed-off-by: 刘继东 <wwwliujidong@163.com>
This commit is contained in:
刘继东 2022-10-28 05:01:11 +00:00 committed by Gitee
parent c759728269
commit 91b661c0d5
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -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"