fixed vue file
This commit is contained in:
parent
0dccc6df70
commit
1411bd879c
@ -69,11 +69,11 @@
|
||||
v-if="group"
|
||||
v-for="(group_options, name) in sortOptions"
|
||||
:key="name"
|
||||
:disabled="disabledOptions.includes(value)"
|
||||
:label="name">
|
||||
<el-option
|
||||
v-for="(label, value) in group_options"
|
||||
:key="value"
|
||||
:disabled="disabledOptions.includes(value)"
|
||||
:label="label"
|
||||
:value="value">
|
||||
<span class="float-left">{{ label }}</span>
|
||||
|
@ -60,6 +60,7 @@
|
||||
|
||||
<el-option v-if="!group" v-for="(option, index) in sortOptions"
|
||||
:key="index"
|
||||
:disabled="disabledOptions.includes(option.key)"
|
||||
:label="option.value"
|
||||
:value="option.key">
|
||||
<span class="float-left">{{ option.value }}</span>
|
||||
@ -74,6 +75,7 @@
|
||||
<el-option
|
||||
v-for="(label, value) in group_options"
|
||||
:key="value"
|
||||
:disabled="disabledOptions.includes(value)"
|
||||
:label="label"
|
||||
:value="value">
|
||||
<span class="float-left">{{ label }}</span>
|
||||
|
Loading…
x
Reference in New Issue
Block a user