123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- layui.use([ 'laypage', 'layer', 'table', 'element','form'], function(){
- var laypage = layui.laypage //分页
- ,$ = layui.jquery
- ,layer = layui.layer //弹层
- ,table = layui.table //表格
- ,form = layui.form;
- var tableId = 'citylist';
- var dataObj = {};
- //第一个实例
- table.render({
- elem: '#'+tableId
- ,url: '/routinecomment/morecommentform' //数据接口
- ,where:{token:csrfToken,hid:$('input[name="hid"]').val()}
- ,method:'post'
- ,page: true //开启分页
- ,text:'数据加载中'
- ,id:'tablerReload'
- ,limit:20
- ,cols: [[ //表头
- // {field: 'id', title: 'ID', width:80, sort: true,align:'center'}
- {field: 'mobile', title: '手机号',align:'center'}
- // ,{field: 'content', title: '点评内容',align:'center'}
- // ,{field: 'diduan', title: '地段',align:'center'}
- // ,{field: 'jiaotong', title: '交通',align:'center'}
- // ,{field: 'peitao', title: '配套',align:'center'}
- // ,{field: 'huanjing', title: '环境',align:'center'}
- // ,{field: 'xingjiabi', title: '性价比',align:'center'}
- ,{field: 'read', title: '阅读状态',width:100,align:'center',sort: true,templet:function (e) {
- var str = '';
- if(e.read == '已读'){
- str = '<span >'+e.read+' </span>';
- }else if(e.read == '未读'){
- str = '<span style="color: red">'+e.read+' </span>';
- }
- return str;
- }}
- ,{field: 'reply', title: '回复状态',width:200,align:'center',sort: true,templet:function (e) {
- var str = '';
- if(e.reply == 1){
- str = '<span style="color: red" > 未回复 </span>';
- }else if(e.reply == 2){
- str = '<span >已回复 </span>';
- }
- return str;
- }}
- ,{field: 'is_show', title: '审核',width:80, align:'center', templet:"#Toexamine",templet:function(d){
- if(d.is_show == 2){
- return '<input type="checkbox" value="'+d.id+'" name="'+d.is_show+'" show="" lay-skin="switch" lay-filter="switchTest" lay-text="|">'
- } else {
- return '<input type="checkbox" checked value="'+d.id+'" name="'+d.is_show+'" show="" lay-skin="switch" lay-filter="switchTest" lay-text="|">'
- }
- }}
- ,{field: 'create_at', title: '添加时间', width:200,align:'center'}
- ,{fixed: 'right',title:'操作', width: 165, align:'center', toolbar: '#operate'}
- ]]
- });
- //监听指定开关
- form.on('switch(switchTest)', function(data){
- var show;
- switch (data.elem.name){
- case '1':
- show = 2;
- break;
- case '2':
- show = 1;
- break;
- }
- layer.confirm('确定要修改此操作吗?',{btn: ['确定', '取消']},function () {
- $.post('/routinecomment/delandshow',{id:data.value,is_show:show},function (data) {
- layer.msg(data.msg);
- table.reload('tablerReload');
- })
- },function (aa) {
- table.reload('tablerReload'); //重新加载
- })
- });
- //table.reload('tablerReload'); //重新加载
- //列表操作
- table.on('tool('+tableId+')', function(obj){
- var layEvent = obj.event,
- data = obj.data;
- switch (layEvent){
- case 'yuedu': //阅读
- var index = layer.open({
- type: 2,
- title: false,
- area: ['70%', '100%'],
- content: '/routinecomment/read?id='+data.id,
- end:function(){
- table.reload('tablerReload');
- }
- });
- // layer.full(index);
- // //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
- // $(window).on("resize",function(){
- // layer.full(index);
- // })
- break;
- case 'edit'://修改
- var index = layui.layer.open({
- type: 2,
- title: '修改点评信息',
- maxmin: true,
- area: ['', '100%'],
- content: '/routinecomment/edit?id='+data.id,
- });
- layui.layer.full(index);
- //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
- $(window).on("resize",function(){
- layui.layer.full(index);
- })
- break;
- case 'del': //删除
- layer.confirm('确定要修改此操作吗?',{btn: ['确定', '取消']},function () {
- $.post('/routinecomment/delandshow',{id:data.id,del:2},function (data) {
- layer.msg(data.msg);
- table.reload('tablerReload');
- })
- })
- break;
- }
- });
- $('.The_house').click(function(){
- // $('form').append('<input type="hidden" name="aa" value="aaa">');
- indexOpen = parent.layui.layer.open({
- type: 2,
- title: '选择需要添加的楼盘',
- area: ['60%','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);
- // })
- })
- var $ = layui.$, active = {
- reload:function () {
- var formdara = pfgs_serialize($('form'));
- table.reload('tablerReload',{
- where:{
- content_status:formdara.content_status,
- reply_status:formdara.reply_status,
- }
- })
- }
- };
- $('.demoTable .layui-btn').on('click', function(){
- var type = $(this).data('type');
- active[type] ? active[type].call(this) : '';
- });
- form.on('submit(editform)', function(data){
- var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
- var formData = new FormData($('form')[0]);
- $.ajax({
- type : "post",
- url : '/routinecomment/editform',
- data : formData, // 你的formid
- contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
- processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
- error : function(request) {
- layer.close(index); //关闭数据提交信息
- layer.alert("网络超时");
- },
- success : function(data) {
- // if(data.data != null){
- // layer.msg(ReturnInfo(data.data),{icon:5});
- // return ;
- // }
- layer.msg(data.msg);
- // parent.layui.table.reload('tablerReload');
- }
- });
- return false;
- });
- //添加
- form.on('submit(tijiao)', function(data){
- var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
- var formData = new FormData($('form')[0]);
- $.ajax({
- type : "post",
- url : '/routinecomment/createreply',
- data : formData, // 你的formid
- contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
- processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
- error : function(request) {
- layer.close(index); //关闭数据提交信息
- layer.alert("网络超时");
- },
- success : function(data) {
- if(data.data != null){
- layer.msg(ReturnInfo(data.data),{icon:5});
- return ;
- }
- layer.msg(data.msg);
- parent.layui.table.reload('tablerReload');
- }
- });
- return false;
- });
- // 满意程度
- /*
- * prevAll() 当前位置之前
- * nextAll() 当前位置之后
- * 以上两个都不包括当前位置
- */
- $('.w_up_degree_con dl dd').on('click',function(){
- var that = $(this);
- var txt = that.parent().attr('data-title');
- var subscript = that.index();
- that.addClass('in').prevAll('dd').addClass('in');
- that.nextAll().removeClass('in');
- FnSatisfaction(txt,(subscript + 1));
- console.log(subscript)
- })
- // 满意程度存储值
- function FnSatisfaction(label,index){
- switch(label)
- {
- case "地段":
- dataObj.diduan = index;
- $('#diduan').val(index);
- break;
- case "交通":
- dataObj.jiaotong = index;
- $('#jiaotong').val(index);
- break;
- case "配套":
- dataObj.peitao = index;
- $('#peitao').val(index);
- break;
- case "环境":
- dataObj.huanjing = index;
- $('#huanjing').val(index);
- break;
- case "性价比":
- dataObj.xingjiabi = index;
- $('#xingjiabi').val(index);
- break;
- }
- }
- });
|