Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/lib/components/al-selector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<Row :gutter="gutterNum">
<Col :span="span" v-if="show(0)">
<Select
<Select
ref="prov"
v-model="currPro"
@on-change="hasChange"
Expand Down Expand Up @@ -32,7 +32,7 @@
</Select>
</Col>
<Col :span="span" v-if="show(2)">
<Select
<Select
ref="coun"
v-model="currCou"
@on-change="hasChange"
Expand All @@ -47,7 +47,7 @@
</Select>
</Col>
<Col :span="span" v-if="show(3)">
<Select
<Select
ref="stre"
v-model="currStr"
@on-change="hasChange"
Expand Down Expand Up @@ -354,7 +354,7 @@ export default {
} else if (Array.isArray(this.disabled)) {
let i = 0;
let isDis = false;
while (this.disabled[i]) {
while (typeof this.disabled[i] === 'number') {
if (this.disabled[i] === level) {
isDis = true;
break;
Expand Down