/**
* 放大图片方法
* @param e
* @param photoimgId
* @returns
*/
function openFile(e,photoimgId){
var src = "<img src='"+$(e).attr('src')+"' style='max-width:100%; max-height:100%' />";
layer.open({
type: 1,
title: false,
closeBtn: 0,
skin: 'layui-layer-nobg', //没有背景色
shadeClose: true,
content: src
});
}