var id=web.getUrlVars("id"); layui.define(['layer', 'form'], function (exports) { var $ = layui.jquery,layer = layui.layer,form = layui.form; if(id){ getById(); } //获取用户 function getById(){ web.ajaxPost(base+"/userFeedback/getById",{id:id},function(json){ web.toForm(form,json.data); var picList=[]; if(json.data.img1){ picList.push(imgUrl+json.data.img1); } if(json.data.img2){ picList.push(imgUrl+json.data.img2); } if(json.data.img3){ picList.push(imgUrl+json.data.img3); } web.loadImage('list',picList,'','',true); }); } //关闭窗口 $('#btn-close').on('click',function(){ var index = parent.layer.getFrameIndex(window.name); parent.layer.close(index); return false; }); exports('userFeedbackForm', {}); });