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

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

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