首页 > 其他 > 详细

iview table行render渲染不同的组件

时间:2018-09-05 19:15:34      阅读:367      评论:0      收藏:0      [点我收藏+]

table不同的行,相同的列渲染不同的组件,如图1:第一行渲染selece,第二行渲染input

render:(h,params)=>{
if(params.index === 0){ //以params.index为条件渲染
return h(‘div‘,[
h(‘Input‘,{
props:{

},
style:{},
on:{
‘on-change‘:(e)=>{
console.log(e.target.value)
}
}
})
])
};
if(params.index === 1){
return h(‘div‘,[
h(‘Select‘,{
props:{

},
style:{},
on:{
‘on-change‘:(e)=>{
console.log(e.target.value)
}
}
})
])
};
if(params.index === 2){
return h(‘div‘,[
h(‘InputNumber‘,{
props:{
min:0
},
style:{
width:‘100%‘
},
on:{
‘on-change‘:(e)=>{
console.log(e.target.value)
}
}
})
])
};
}
技术分享图片

iview table行render渲染不同的组件

原文:https://www.cnblogs.com/web-zqk/p/9593672.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!