layui 테이블에 그림을 표시하는 방법:
그림은 template.templet을 사용해야 합니다.
div는 생략할 수 없습니다. 48px는 div의 높이를 나타냅니다. img 사진의 높이, 스타일
<script type="text/javascript"> layui.use('table',function () { var table= layui.table; table.render({ elem:'#needstable' ,url:'{:url()}' ,method:'post' ,cellMinWidth:80 ,page:true ,cols:[[ {field:'needs_id',title:'id',fixed:'left',width:80} ,{field:'wx_username',title:'昵称',fixed:'left',width:80} ,{field:'wx_headimg',title:'头像',fixed:'left',templet:'<div><img src="{{ d.wx_headimg}}"></div>',style:'height:48px;width:48px;line-height:48px!important;'}
css를 별도로 디자인해야 하며, headimg
<style type="text/css">.layui-table-fixed-r td{height:58px!important;} .layui-table-fixed-r th{height:58px!important;} .layui-table img { max-width: 48px;min-height: 48px; } .laytable-cell-3-wx_headimg ,.laytable-cell-1-wx_headimg,.laytable-cell-2-wx_headimg,.laytable-cell-3-wx_headimg,.laytable-cell-4-wx_headimg,.laytable-cell-5-wx_headimg,.laytable-cell-6-wx_headimg,.laytable-cell-7-wx_headimg,.laytable-cell-8-wx_headimg,.laytable-cell-9-wx_headimg,.laytable-cell-10-wx_headimg,.laytable-cell-11-wx_headimg,.laytable-cell-12-wx_headimg,.laytable-cell-13-wx_headimg,.laytable-cell-14-wx_headimg{ width: 48px!important;;padding:0px!important;height: 48px!important;; line-height: 48px!important;; } </style>
교체에 주의하세요. 권장 사항: layui 프레임워크 튜토리얼
위 내용은 Layui 목록에 사진을 표시하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!