2016-11-15 10:43:00 +08:00
|
|
|
<template>
|
2016-11-15 19:17:54 +08:00
|
|
|
<div :class="classes" v-clickoutside="handleClose">
|
2016-11-15 11:24:28 +08:00
|
|
|
<i-input
|
|
|
|
readonly
|
|
|
|
:disabled="disabled"
|
|
|
|
:value.sync="displayRender"
|
|
|
|
:size="size"
|
2016-11-15 19:17:54 +08:00
|
|
|
:placeholder="placeholder"
|
|
|
|
@on-focus="onFocus"></i-input>
|
|
|
|
<Icon type="ios-close" :class="[prefixCls + '-arrow']" v-show="showCloseIcon" @click.stop="clearSelect"></Icon>
|
|
|
|
<Icon type="arrow-down-b" :class="[prefixCls + '-arrow']"></Icon>
|
|
|
|
<Dropdown v-show="visible" transition="slide-up">
|
|
|
|
<div>
|
|
|
|
<Caspanel
|
|
|
|
:prefix-cls="prefixCls"
|
|
|
|
:data.sync="data"
|
|
|
|
:disabled="disabled"
|
|
|
|
:trigger="trigger"
|
|
|
|
@on-update-result="updateResult"></Caspanel>
|
|
|
|
</div>
|
|
|
|
</Dropdown>
|
2016-11-15 11:24:28 +08:00
|
|
|
</div>
|
2016-11-15 10:43:00 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2016-11-15 11:24:28 +08:00
|
|
|
import iInput from '../input/input.vue';
|
|
|
|
import Dropdown from '../select/dropdown.vue';
|
2016-11-15 19:17:54 +08:00
|
|
|
import Icon from '../icon/icon.vue';
|
|
|
|
import Caspanel from './caspanel.vue';
|
2016-11-15 11:24:28 +08:00
|
|
|
import clickoutside from '../../directives/clickoutside';
|
2016-11-15 19:17:54 +08:00
|
|
|
import { oneOf } from '../../utils/assist';
|
2016-11-15 11:24:28 +08:00
|
|
|
|
|
|
|
const prefixCls = 'ivu-cascader';
|
|
|
|
|
2016-11-15 10:43:00 +08:00
|
|
|
export default {
|
2016-11-15 19:17:54 +08:00
|
|
|
components: { iInput, Dropdown, Icon, Caspanel },
|
|
|
|
directives: { clickoutside },
|
2016-11-15 10:43:00 +08:00
|
|
|
props: {
|
2016-11-15 11:24:28 +08:00
|
|
|
data: {
|
|
|
|
type: Array,
|
|
|
|
default () {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
type: Array
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
clearable: {
|
|
|
|
type: Boolean,
|
2016-11-15 19:17:54 +08:00
|
|
|
default: true
|
2016-11-15 11:24:28 +08:00
|
|
|
},
|
|
|
|
placeholder: {
|
|
|
|
type: String,
|
|
|
|
default: '请选择'
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['small', 'large']);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
trigger: {
|
|
|
|
validator (value) {
|
|
|
|
return oneOf(value, ['click', 'hover']);
|
|
|
|
},
|
|
|
|
default: 'click'
|
|
|
|
},
|
|
|
|
changeOnSelect: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
renderFormat: {
|
|
|
|
type: Function,
|
2016-11-15 19:17:54 +08:00
|
|
|
default (label, selectedData) {
|
|
|
|
return label.join('/');
|
2016-11-15 11:24:28 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-15 10:43:00 +08:00
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
2016-11-15 11:24:28 +08:00
|
|
|
prefixCls: prefixCls,
|
2016-11-15 19:17:54 +08:00
|
|
|
visible: false,
|
|
|
|
selected: [],
|
|
|
|
tmpSelected: []
|
2016-11-15 10:43:00 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2016-11-15 19:17:54 +08:00
|
|
|
classes () {
|
|
|
|
return [
|
|
|
|
`${prefixCls}`,
|
|
|
|
{
|
|
|
|
[`${prefixCls}-show-clear`]: this.showCloseIcon
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
showCloseIcon () {
|
|
|
|
return this.value && this.value.length && this.clearable;
|
|
|
|
},
|
2016-11-15 11:24:28 +08:00
|
|
|
displayRender () {
|
|
|
|
let label = [];
|
|
|
|
for (let i = 0; i < this.selected.length; i++) {
|
|
|
|
label.push(this.selected[i].label);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.renderFormat(label);
|
|
|
|
}
|
2016-11-15 10:43:00 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2016-11-15 19:17:54 +08:00
|
|
|
clearSelect () {
|
|
|
|
|
|
|
|
},
|
|
|
|
handleClose () {
|
|
|
|
this.visible = false;
|
|
|
|
},
|
|
|
|
onFocus () {
|
|
|
|
this.visible = true;
|
|
|
|
},
|
|
|
|
updateResult (result) {
|
|
|
|
console.log(JSON.stringify(result))
|
|
|
|
this.selected = result;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ready () {
|
|
|
|
|
2016-11-15 10:43:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|