提交 171b5900 编写于 作者: Neuromancer255's avatar Neuromancer255

下拉列表(单选)值回显问题

上级 dec408de
...@@ -43,12 +43,10 @@ export default class AppSelect extends Vue { ...@@ -43,12 +43,10 @@ export default class AppSelect extends Vue {
* @memberof AppSelect * @memberof AppSelect
*/ */
get curValue(){ get curValue(){
return this.value return this.value;
} }
set curValue(value:any){ set curValue(value:any){}
this.$emit("change", value.detail.value);
}
/** /**
* 监听表单请求完成 * 监听表单请求完成
...@@ -208,8 +206,6 @@ export default class AppSelect extends Vue { ...@@ -208,8 +206,6 @@ export default class AppSelect extends Vue {
if (Object.is(this.codeListType, "STATIC")) { if (Object.is(this.codeListType, "STATIC")) {
this.overload = true; this.overload = true;
this.options = this.$store.getters.getCodeListItems(this.tag); this.options = this.$store.getters.getCodeListItems(this.tag);
} else {
this.load();
} }
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册