var delFiles = []; //用于删除图片
var files ; //存储选择图片的数量
var fContainer= {}; //用于传父级传变量,格式 parent.fContainer
var depositImg =[];//用于存放弹窗图片
layui.use(['form','layer','laydate','table','laytpl','layedit','upload'],function(){
var form = layui.form,
// layer = parent.layer === undefined ? layui.layer : top.layer,
layer = layui.layer,
$ = layui.jquery,
laydate = layui.laydate,
laytpl = layui.laytpl,
table = layui.table,
layedit = layui.layedit
,upload = layui.upload;
var tableIds = 'newsList';
//楼盘列表
var tableIns = table.render({
elem: '#'+tableIds,
url : '/routinedecoration/homeform',
cellMinWidth : 95,
method:'post',
page : true,
height : 600,
limit : 20,
id:'tablerReload',
cols : [[
{type: "checkbox", width:50},
{type:'numbers'},
{field:'title', title: '标题',align:'center',templet:function(d){
return ''+d.title+''
}},
{field: 'name', title: '所属楼盘', align:'center',templet:function(d){
return ''+d.name+'';
}},
{field: 'click', title: '点击数',width:100,edit: 'text',align:'center',click:true,templet:"#clicksBox"},
{field: 'click_true', title: '真实点击数',width:100, align:'center'},
{field: 'count', title: '内容',width:100, event:'content', align:'center',templet:"#housesPhoto",templet:function(d){
return '['+d.count+']'
}},
// {field: 'clicks', title: '点击数',width:100, align:'center',sort: true},
{field: 'create_at', title: '添加时间',width:120, event:'sortData', align:'center',sort: true},
{field: 'is_show', title: '审核',width:75, event:'housesNews', align:'center',templet:function (d) {
if(d.is_show === '1'){
return ''
} else {
return ''
}
}},
{title: '操作', width:100, templet:'#housesListBar',fixed:"right",align:"center"}
]]
});
tableIns.reload('tablerReload'); //重新加载
//表格头部操作菜单
var $ = layui.$, active = {
addData: function(){ //获取选中数据
var index = layui.layer.open({
title : "添加资讯",
type : 2,
area:['80%','100%'],
maxmin: true,
content : "/routinedecoration/homeadd",
})
layui.layer.full(index);
//改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
$(window).on("resize",function(){
layui.layer.full(index);
})
},
reload:function () {
var form = pfgs_serialize($('form'));
// var name = '';
// var id = '';
// if(form.input_house == 'name'){
// name = form.input_house_text;
// } else if(form.input_house == 'id'){
// id = form.input_house_text;
// }
table.reload('tablerReload',{
where:{
title:form.input_house_text
}
})
}
};
$('.demoTable .layui-btn').on('click', function(){
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
/* 列表操作 edit 修改后执行 2018.7.24*/
table.on('edit('+tableIds+')', function(obj){
var data = obj.data;
// console.log(data)
$.post('/routinedecoration/homeshow',{id:data.id,type:'clicks',clicks:data.click},function (data) {
if(data.code == 200)
{
layer.msg(data.msg);
} else if(data.code == 300 ) {
layer.msg(data.msg);
}
})
})
// if(obj.event === 'clicksData'){
// layer.prompt({
// formType: 2
// ,title: '点击数'
// ,value: data.click
// }, function(value, index){
// $.post('/routinedecoration/homeshow',{id:data.id,type:'clicks',clicks:value},function (data) {
// layer.msg(data.msg);
// layer.close(index);
// table.reload('tablerReload');
// })
// });
// } else
//表格右边操作栏目
table.on('tool('+tableIds+')', function(obj){
var data = obj.data;
if(obj.event === 'edit'){ //编辑操作
var index = layui.layer.open({
title : "编辑",
type : 2,
area:['','100%'],
maxmin: true,
content : "/routinedecoration/homeedit?id="+data.id+'&name='+data.name
})
layui.layer.full(index);
//改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
$(window).on("resize",function(){
layui.layer.full(index);
})
}else if(obj.event === 'content'){
var index = layui.layer.open({
title : "["+data.title+"]添加栏目内容",
type : 2,
area:['','100%'],
maxmin: true,
content : "/routinedecoration/cont?id="+data.id+'&name='+data.title
})
layui.layer.full(index);
//改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
$(window).on("resize",function(){
layui.layer.full(index);
})
}
});
//监听指定开关
form.on('switch(switchTest)', function(data){
layer.confirm('确定要修改此操作吗?',{btn: ['确定', '取消']},function () {
$.post('/routinedecoration/homeshow',{id:data.value,type:'show'},function (data) {
layer.msg(data.msg);
table.reload('tablerReload');
})
},function (aa) {
table.reload('tablerReload');
})
});
// 列表点击放大图片
$('.layui-table-main').on('click','.layui_magnify', function(){
var _src = $(this).attr('src');
layui.layer.open({
type: 1,
title: false, //是否显示标题
area: ['95%', '55%'],
shade: 0.6, //透明度
closeBtn: 1, //按钮 1有,0无
shadeClose: true,
content: '',
});
});
//添加图片上传
upload.render({
elem: '#test1'
,url: '/house/createimg'
,data:{token:csrfToken}
,field:'img'
,size:1000 //限制上传图片的大小,单位为KB
,exts: 'png|jpg|jpeg' //只允许上传压缩文件
,auto:false
,bindAction:'#addcity'
,choose: function(obj){
obj.preview(function(index, file, result){
$('#breviary_img').attr('src', result); //图片链接(base64)
});
}
});
layer.photos({
photos: '#demo2'
,anim: 5 //0-6的选择,指定弹出图片动画类型,默认随机(请注意,3.0之前的版本用shift参数)
});
$('.The_house').focus(function(){
// $('form').append('');
indexOpen = parent.layui.layer.open({
type: 2,
title: '选择需要添加的楼盘',
area: ['','100%'],
content: '/publicuse/housename',
success:function (layero, index) {
},
end:function(){
}
});
parent.layui.layer.full(indexOpen);
//改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
$(window).on("resize",function(){
parent.layui.layer.full(indexOpen);
})
})
$('#layui_confirm').on('click',function(){
var doc = $('#demo2', window.parent.document); //JQ获取弹窗父层doc
var index = parent.layer.getFrameIndex(window.name); //获取窗口索引
if(depositImg.length > 3){
layer.msg('封面图只能选择3张!!',{time:1000,shade:0.5})
return false;
}
var _leng = doc.find('.layui-upload-img').length;
if(_leng < 3){
for(i in depositImg){
if(typeof depositImg[i] == "object"){
doc.append('