|
@@ -79,7 +79,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
<el-option v-for="dictLabalitem in showDictLabal(item)" :key="dictLabalitem.id"
|
|
<el-option v-for="dictLabalitem in showDictLabal(item)" :key="dictLabalitem.id"
|
|
|
:label="dictLabalitem.name"
|
|
:label="dictLabalitem.name"
|
|
|
- :value="['车辆类型', '交强不浮动原因', '商业不浮动原因'].includes(item.attrName) ? dictLabalitem.code : dictLabalitem.name" />
|
|
|
|
|
|
|
+ :value="['车辆类型', '交强不浮动原因', '商业不浮动原因','车牌号'].includes(item.attrName) ? dictLabalitem.code : dictLabalitem.name" />
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</template>
|
|
</template>
|
|
|
<template v-if="item.attrType == 'inputTag'">
|
|
<template v-if="item.attrType == 'inputTag'">
|
|
@@ -210,7 +210,7 @@ const handleCheckAll = (item, index: number, val: boolean) => {
|
|
|
if (val) {
|
|
if (val) {
|
|
|
let arr = item.dictLabal
|
|
let arr = item.dictLabal
|
|
|
if (item.dictLabalFilter) arr = item.dictLabalFilter
|
|
if (item.dictLabalFilter) arr = item.dictLabalFilter
|
|
|
- item.minArray = arr.map((_) => ['车辆类型', '交强不浮动原因', '商业不浮动原因'].includes(_.attrName) ? _.code : _.name)
|
|
|
|
|
|
|
+ item.minArray = arr.map((_) => ['车辆类型', '交强不浮动原因', '商业不浮动原因','车牌号'].includes(_.attrName) ? _.code : _.name)
|
|
|
} else {
|
|
} else {
|
|
|
item.minArray = []
|
|
item.minArray = []
|
|
|
}
|
|
}
|