提交 3ce29b8f 编写于 作者: zhujiamin's avatar zhujiamin

debug 数据不回显

上级 cc7c7759
......@@ -42,6 +42,18 @@
*/
@Prop() public value ? : string;
/**
* 回填值
* @memberof AppCheckList
*/
@Watch('value')
valueChange(newValue: string, oldValue: string) {
this.value = newValue
const select:any = this.$refs.checkList;
let arr = this.value.split(',')
select.value = arr;
}
/**
* 当前选中值
* @memberof AppCheckList
......@@ -157,15 +169,6 @@
this.$emit('change', this.curValue);
}
/**
* 回填值
* @memberof AppCheckList
*/
public mounted(){
const select:any = this.$refs.checkList;
select.value = this.curValue;
}
/**
* 处理额外参数
*/
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册