提交 8a10a0b5 编写于 作者: RedPing97's avatar RedPing97

优化隐藏下拉框组件

上级 5b1e9d53
...@@ -388,6 +388,7 @@ export default class DropDownList extends Vue { ...@@ -388,6 +388,7 @@ export default class DropDownList extends Vue {
this.items = []; this.items = [];
try{ try{
items.forEach((item: any)=>{ items.forEach((item: any)=>{
if(!item.disabled){
const type = this.$util.typeOf(item.value); const type = this.$util.typeOf(item.value);
if(type != this.valueType){ if(type != this.valueType){
matching = true; matching = true;
...@@ -402,6 +403,9 @@ export default class DropDownList extends Vue { ...@@ -402,6 +403,9 @@ export default class DropDownList extends Vue {
} }
} }
this.items.push(item); this.items.push(item);
}
}); });
if(matching){ if(matching){
console.warn(`代码表 ${ this.tag } 值类型和属性类型不匹配,已自动强制转换,请修正代码表值类型和属性类型匹配`); console.warn(`代码表 ${ this.tag } 值类型和属性类型不匹配,已自动强制转换,请修正代码表值类型和属性类型匹配`);
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册