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