国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Vue基于iview table展示圖片實(shí)現(xiàn)點(diǎn)擊放大

瀏覽:138日期:2022-12-15 15:10:46

首先先安裝依賴:

npm install v-viewer --save

然后全局引入,我這邊是在main.js里面操作寫的:

import Viewer from ’v-viewer’import ’viewerjs/dist/viewer.css’

然后注冊(cè)下:

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’ }})

使用的一個(gè)demo就是:

<viewer :images='tupians'> <i-col span='4' v-for='item in tupians'> <div class='detailed'> <img :src='http://www.intensediesel.com/bcjs/item.img' alt=''> </div> </i-col></viewer>

其中item.img其實(shí)就是一個(gè)路徑。

在回到iview表格中,

需要以

h(’xxxx’, {props: { trigger: ’hover’, placement: ’top’, content: ’二維碼’} }, [ ])

這種格式渲染出來,第一個(gè)參數(shù)是標(biāo)簽,第二參數(shù)是標(biāo)簽里面可以含props(vue的v-bind),也可以包含屬性。第三個(gè)參數(shù)是數(shù)組,表示子標(biāo)簽。子標(biāo)簽也是這種格式的,以此遞歸下去。

所以改寫成這種格式的,在本人項(xiàng)目中的一個(gè)demo如下,就可以實(shí)現(xiàn)在表格中點(diǎn)擊圖片進(jìn)行放大展示:

{ 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); }}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 新宁县| 高唐县| 游戏| 金秀| 通化县| 仁化县| 阳高县| 同江市| 莒南县| 新巴尔虎右旗| 彰武县| 什邡市| 西丰县| 宁波市| 子长县| 肥东县| 邵武市| 都匀市| 长治市| 仙游县| 滦平县| 天长市| 新泰市| 绥化市| 抚松县| 类乌齐县| 新疆| 伽师县| 横山县| 莱芜市| 财经| 沂源县| 故城县| 平潭县| 洪湖市| 福贡县| 阿克| 调兵山市| 如皋市| 泰州市| 阜阳市|