提交 7d0bf855 编写于 作者: Neuromancer255's avatar Neuromancer255

数据选择(下拉视图)调整 --fix2

上级 d4b708bf
......@@ -245,6 +245,14 @@ export default class AppSelectDropDown extends Vue {
*/
@Watch('value')
public onValueChange(newVal: any, oldVal: any) {
if (oldVal && !newVal) {
this.$nextTick(()=>{
let select :any = this.$refs[this.name+'select'];
if (select) {
select.value = null;
}
})
}
this.curvalue = newVal;
if (Object.is(this.editortype, 'dropdown') && this.valueitem) {
const value = this.data[this.valueitem];
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册