This commit is contained in:
yanran200730
2023-04-06 10:02:25 +08:00
parent 89c406d802
commit ec189139b6
6 changed files with 19 additions and 13 deletions

View File

@@ -13,7 +13,7 @@
<template v-else>
<el-option v-for="(item, index) in ops" :key="index"
:label="item.dictName||item[actionProp.label]"
:value="item.dictValue>-1?item.dictValue:item[actionProp.value]"
:value="item.dictValue>-1 || item.dictValue ?item.dictValue:item[actionProp.value]"
:disabled="check(item[actionProp.value])"/>
</template>
</el-select>