提交 9f456eb0 编写于 作者: Neuromancer255's avatar Neuromancer255

下拉列表(单选)调整 --fix2

上级 e3396b90
......@@ -42,17 +42,16 @@ export default class AppSelect extends Vue {
* 当前选中值
* @memberof AppSelect
*/
get curValue(){
if(this.options.length > 0){
let index = this.options.indexOf(this.value)
if (index !== -1) {
return this.value;
get curValue() {
if (this.value && this.options.length > 0) {
let isIncluded = this.options.some((option:any)=>{return option.value === this.value})
if (isIncluded) {
return this.value;
} else {
return ""
}
return "";
}
}
return ""
return "";
}
set curValue(value:any){
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册