fixes in the ui

This commit is contained in:
ori
2019-07-19 10:30:16 -07:00
parent b19a34bb29
commit 7d5666bfb8
3 changed files with 18 additions and 9 deletions

View File

@@ -4,7 +4,7 @@
<h4>{{title.charAt(0).toUpperCase() + title.slice(1)}} :</h4>
</Col>
<Col span="4">
<i-select v-model="value" size="small" @on-change="handleInput">
<i-select v-model="value" size="small" @on-change="handleInput" :disabled="isDisabled" @on-query-change="$emit('change')">
<i-option v-for="item in list" :value="item" :key="item">{{item}}</i-option>
</i-select>
</Col>
@@ -17,7 +17,8 @@
props:{
title: String,
list: Array,
Xkey: String
Xkey: String,
isDisabled:Boolean
},
data() {
return {