1、select无法显示或选择,则在弹窗加载完成时,使用form.render('select');
2、input表单无法动态赋值,则使用$("input").attr('value', 值);(千万别这样赋值,这样赋值的话,value是有值了,页面的表单不显示值,尴了个尬,还是要这样赋值:$("input").val(值))
3、父界面给子界面赋值方法:$($(data.elem).parent().parent().parent().find("#sup_ship_fee")).val(res.data.fee)
4、防止确认按钮重复点击,则:
content赋值内容必须为元素对象($("#openContent")),不能是元素标签html内容($("#openContent").html())
var lock = false;
layer.open({
type: 1,
title: '设置仓库',
content: content,
btn: ['确认', '取消'],
btn1: function (index, layero) {
console.log("确认");
var formData = $(layero).find("#openForm").serializeArray(); // 获取弹窗表单值
var postData = {id: id};
$.each(formData, function (i, v) {postData[v.name] = v.value;});
if (!lock) {
lock = true; // 防止重复点击
var res = base.ajaxSubmit(postData, '请求日志', 'post');
if (res !== null) {
layer.close(index);
base.queryList('listTable');
} else {
lock = false;
}
}
return false;
}, btn2: function (index) {
console.log("取消");
}, success: function (layero, index) {
form.render('select');
}
});