refactor:字典组件忽略大小写

Signed-off-by: 刘继东 <wwwliujidong@163.com>
pull/276/head
刘继东 3 years ago committed by Gitee
parent c759728269
commit 91b661c0d5
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

@ -1,7 +1,7 @@
<template> <template>
<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) || values.includes(item.value.toUpperCase())">
<span <span
v-if="item.raw.listClass == 'default' || item.raw.listClass == ''" v-if="item.raw.listClass == 'default' || item.raw.listClass == ''"
:key="item.value" :key="item.value"

Loading…
Cancel
Save