作者:塘迅人要更名_544 | 来源:互联网 | 2023-08-14 17:04
项目中列表显现缩略图,决议做一个双击的图片弹窗结果,项目用的iview的UI框架,用到Modal组件的,以下是render函数天生的图片弹框的原始代码。双击行动挪用showLarg
项目中列表显现缩略图,决议做一个双击的图片弹窗结果,项目用的iview的UI框架,用到Modal组件的,以下是render函数天生的图片弹框的原始代码。双击行动挪用showLargeImage要领,以下是双击行动的原始代码
showLargeImage(item){
console.log(111);
if(!item.img_url){
this.$Message('未获取到图片!');
return;
}
this.$Modal.confirm({
width:444,
render: (h) => {
return h('img', {
'class':'render_img',
attrs: {
src: this.api.baseURL+item.img_url,
width:400,
},
})
}
})
},
render中第一个箭头函数的参数h就是createElement要领,createElement的第一个字符串情势的参数img是标签。
第二个参数是一个对象,定义了图片的class,attrs里src是图片途径,width定义了图片显现的宽度,这个宽度值能够依据Modal宽度大小对应做调解。