提交 2dd7c0d9 编写于 作者: zhangkang's avatar zhangkang

zk——app-picker组件

上级 845ca4d8
...@@ -124,6 +124,16 @@ export default class AppPicker extends Vue { ...@@ -124,6 +124,16 @@ export default class AppPicker extends Vue {
*/ */
public inputState: boolean = false; public inputState: boolean = false;
/**
* 当前选择的值
*
* @type {string}
* @memberof AppAutocomplete
*/
public selectValue = "";
/** /**
* 项绘制 * 项绘制
* *
...@@ -260,6 +270,7 @@ export default class AppPicker extends Vue { ...@@ -260,6 +270,7 @@ export default class AppPicker extends Vue {
* @param item * @param item
*/ */
public onACSelect(item: any): void { public onACSelect(item: any): void {
this.selectValue = item[this.deMajorField];
if (this.name) { if (this.name) {
this.$emit('formitemvaluechange', { name: this.name, value: item.text }); this.$emit('formitemvaluechange', { name: this.name, value: item.text });
} }
...@@ -292,6 +303,7 @@ export default class AppPicker extends Vue { ...@@ -292,6 +303,7 @@ export default class AppPicker extends Vue {
this.onACSelect({ text: val, value: '' }); this.onACSelect({ text: val, value: '' });
} }
this.$forceUpdate(); this.$forceUpdate();
this.curvalue = this.selectValue;
} }
/** /**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册