全体邮件发送失败问题修复
This commit is contained in:
parent
af527f2248
commit
7542801721
@ -278,10 +278,12 @@
|
||||
$('[name="uids"]').val('');
|
||||
$('[name="pids"]').val('');
|
||||
if(data.value==4){
|
||||
$('#person').val('0').hide();
|
||||
$('#person').hide();
|
||||
$('[name="person_name"]').val('0');
|
||||
}
|
||||
else{
|
||||
$('#person').val('').show();
|
||||
$('#person').show();
|
||||
$('[name="person_name"]').val('');
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -206,6 +206,14 @@ layui.define([], function (exports) {
|
||||
data: data
|
||||
}, callback);
|
||||
},
|
||||
sideClose(delay){
|
||||
if(parent.layui.tool){
|
||||
parent.layui.tool.close(delay);
|
||||
}
|
||||
else{
|
||||
console.log('父页面没引用tool模块');
|
||||
}
|
||||
},
|
||||
tabAdd:function(url,title){
|
||||
if(parent.layui.admin){
|
||||
parent.layui.admin.sonAdd(url,title);
|
||||
@ -222,14 +230,29 @@ layui.define([], function (exports) {
|
||||
console.log('父页面没引用admin模块');
|
||||
}
|
||||
},
|
||||
tabDelete:function(id){
|
||||
if(parent.layui.admin){
|
||||
parent.layui.admin.tabDelete(id);
|
||||
}
|
||||
else{
|
||||
console.log('父页面没引用admin模块');
|
||||
}
|
||||
},
|
||||
tabChange:function(id){
|
||||
if(parent.layui.admin){
|
||||
parent.layui.admin.tabChange(id);
|
||||
}
|
||||
else{
|
||||
console.log('父页面没引用admin模块');
|
||||
}
|
||||
},
|
||||
tabRefresh:function(id){
|
||||
if(parent.layui.admin){
|
||||
parent.layui.admin.refresh(id);
|
||||
}
|
||||
else{
|
||||
console.log('父页面没引用admin模块');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
$('body').on('click', '.tab-a', function () {
|
||||
|
Loading…
x
Reference in New Issue
Block a user