134 lines
3.1 KiB
Vue
134 lines
3.1 KiB
Vue
<template>
|
|
<div class="selection-wrapper">
|
|
<div class="box-title-text">
|
|
<a-input class="box-input"
|
|
:value="nameStr || value"
|
|
:title="value"
|
|
@input="indexClick($event)"
|
|
:disabled="disabled || selectOnly"
|
|
:max-length="500"
|
|
:placeholder="placeholder">
|
|
|
|
<a-icon v-if="(nameStr || value) && !disabled" slot="suffix" class="close-icon" type="close-circle" theme="filled" @click="clearInput" />
|
|
</a-input>
|
|
<a-button v-if="!disabled" type="primary" class="button-box" @click="standardClick">
|
|
{{ $t('standardSelect.standardSelection') }}
|
|
</a-button>
|
|
</div>
|
|
<split-standard-selection-modal ref="standardSelectionModal"
|
|
v-bind="$attrs"
|
|
:value="value"
|
|
@change="modalInput"
|
|
@nameChange="modalNameChange"
|
|
@listChange="modalListChange"></split-standard-selection-modal>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import SplitStandardSelectionModal from './SplitStandardSelectionModal'
|
|
export default {
|
|
name: 'SplitStandardSelection',
|
|
components: { SplitStandardSelectionModal },
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
// 是否只能选择
|
|
selectOnly: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false
|
|
},
|
|
// 自定义点击标准选择按钮的事件
|
|
customClickFunc: {
|
|
type: Function
|
|
},
|
|
// 回显内容的字符串
|
|
nameStr: {
|
|
type: String,
|
|
required: false,
|
|
default: null
|
|
}
|
|
},
|
|
methods: {
|
|
// 点击选择标准按钮
|
|
standardClick () {
|
|
if (this.customClickFunc && typeof this.customClickFunc === 'function') {
|
|
this.customClickFunc(() => {
|
|
this.$refs.standardSelectionModal.open()
|
|
})
|
|
return
|
|
}
|
|
this.$refs.standardSelectionModal.open()
|
|
},
|
|
// 清空输入框
|
|
clearInput () {
|
|
console.log('输入框清空了')
|
|
this.$emit('change', '')
|
|
this.$emit('nameChange', '')
|
|
this.$emit('listChange', [])
|
|
},
|
|
// 输入框输入监听
|
|
indexClick (event) {
|
|
this.$emit('change', event.target.value)
|
|
},
|
|
modalInput (value) {
|
|
this.$emit('change', value)
|
|
},
|
|
modalNameChange (value) {
|
|
this.$emit('nameChange', value)
|
|
},
|
|
modalListChange (value) {
|
|
this.$emit('listChange', value)
|
|
}
|
|
},
|
|
model: {
|
|
prop: 'value',
|
|
event: 'change'
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
|
|
@import '~@assets/less/common.less';
|
|
|
|
.selection-wrapper {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.box-title-text {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.box-input {
|
|
width: 100%;
|
|
}
|
|
|
|
.button-box {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.close-icon {
|
|
font-size: 12px;
|
|
color: rgba(0, 0, 0, 0.25);
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.close-icon:hover {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
</style>
|