首先先安装依赖:
npm install v-viewer --save
然后全局引入,我这边是在main.js里面操作写的:
import Viewer from 'v-viewer'
import 'viewerjs/dist/viewer.css'
然后注册下:
1
2
3
4
|
Vue.use(Viewer) Viewer.setDefaults({ Options: { 'inline' : true , 'button' : true , 'navbar' : true , 'title' : true , 'toolbar' : true , 'tooltip' : true , 'movable' : true , 'zoomable' : true , 'rotatable' : true , 'scalable' : true , 'transition' : true , 'fullscreen' : true , 'keyboard' : true , 'url' : 'data-source' } }) |
使用的一个demo就是:
1
2
3
4
5
6
7
|
<viewer :images= "tupians" > <i-col span= "4" v- for = "item in tupians" > <div class= "detailed" > <img :src= "item.img" alt= "" > </div> </i-col> </viewer> |
其中item.img其实就是一个路径。
在回到iview表格中,
需要以
1
2
3
4
5
6
7
8
|
h( 'xxxx' , { props: { trigger: 'hover' , placement: 'top' , content: '二维码' } }, [ ]) |
这种格式渲染出来,第一个参数是标签,第二参数是标签里面可以含props(vue的v-bind),也可以包含属性。第三个参数是数组,表示子标签。子标签也是这种格式的,以此递归下去。
所以改写成这种格式的,在本人项目中的一个demo如下,就可以实现在表格中点击图片进行放大展示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ title: '二维码' , align: 'center' , render: (h, params) => { console.log( 'h, param' , params); let devicesArr = []; let photo = []; photo.push( '/erweima/' +params.row.pt_number+ '.png' ); devicesArr.push( h( 'Tooltip' , { props: { trigger: 'hover' , placement: 'top' , content: '二维码' } }, [ h( 'viewer' , { props:{ images:photo } }, [ h( 'img' , { attrs: { src:photo[0], style: 'width: 22px;margin-right:5px' }, }) ]) ]) ); return h( 'div' , devicesArr); } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/chenmz1995/p/12301268.html