city_price_record.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. layui.use([ 'laypage', 'layer', 'table', 'element','form','upload','laydate'], function(){
  2. var laypage = layui.laypage //分页
  3. ,$ = layui.jquery
  4. ,layer = layui.layer //弹层
  5. ,table = layui.table //表格
  6. ,form = layui.form
  7. ,laydate = layui.laydate;
  8. var cid = $('input[name="cid"]').val();
  9. //第二个实例--区域历史价格记录
  10. table.render({
  11. elem: '#recordcity'
  12. ,url: '/pricetrend/recordpriceform' //数据接口
  13. ,where:{token:csrfToken,city_id:cid}
  14. ,method:'post'
  15. ,page: true //开启分页
  16. ,text:'数据加载中'
  17. ,id:'tablerReloadss'
  18. ,limit:20
  19. ,cols: [[ //表头
  20. {type:'numbers'}
  21. ,{field: 'price', title: '价格',align:'center'}
  22. ,{field: 'price_at', title: '时间',align:'center'}
  23. ,{field: 'contrast', title: '价格对比',align:'center'}
  24. ,{field: 'trend', title: '趋势',align:'center'}
  25. ,{fixed: 'right',title:'操作', width: 165, align:'center', toolbar: '#operate'}
  26. ]]
  27. });
  28. //列表操作
  29. var indexs = table.on('tool(recordcity)', function(obj){
  30. var layEvent = obj.event,
  31. data = obj.data;
  32. if(layEvent === 'edit'){
  33. layer.open({
  34. type: 2,
  35. title: '修改',
  36. closeBtn: 1, //不显示关闭按钮
  37. area: ['550px', '400px'],
  38. anim: 2,
  39. content: '/pricetrend/priceedit?id='+data.id,
  40. end:function () {
  41. table.reload('tablerReloadss');
  42. }
  43. });
  44. } else if(layEvent === 'del') {
  45. layer.confirm('您确定要删除吗?',{ btn: ['确定', '取消']},function () {
  46. $.post('/pricetrend/pricedel',{'id':data.id},function (data) {
  47. if(data.data != null){
  48. layer.msg(ReturnInfo(data.data),{icon:5});
  49. return ;
  50. }
  51. layer.msg(data.msg);
  52. table.reload('tablerReloadss');
  53. });
  54. });
  55. }
  56. });
  57. //
  58. //
  59. // var $ = layui.$, active = {
  60. // addData: function(){ //获取选中数据
  61. // layer.open({
  62. // type: 2,
  63. // title: '添加价格',
  64. // closeBtn: 1, //不显示关闭按钮
  65. // shade: [0],
  66. // area: ['780px', '550px'],
  67. // anim: 2,
  68. // content: '/pricetrend/priceadd',
  69. // });
  70. // }
  71. // };
  72. //日期
  73. laydate.render({
  74. elem: '#date1'
  75. });
  76. $('.demoTable .layui-btn').on('click', function(){
  77. var type = $(this).data('type');
  78. active[type] ? active[type].call(this) : '';
  79. });
  80. // $('.The_house').focus(function(){
  81. // indexOpen = parent.layui.layer.open({
  82. // type: 2,
  83. // title: '选择需要添加的区域',
  84. // area: ['','100%'],
  85. // content: '/publicuse/city?type=1',
  86. // success:function (layero, index) {
  87. // },
  88. // end:function(){
  89. // }
  90. // });
  91. // parent.layui.layer.full(indexOpen);
  92. // //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
  93. // $(window).on("resize",function(){
  94. // parent.layui.layer.full(indexOpen);
  95. // })
  96. // })
  97. form.on('submit(editcity)', function(data){
  98. layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
  99. var formData = new FormData($('form')[0]);
  100. $.ajax({
  101. cache : true,
  102. type : "post",
  103. url : '/pricetrend/priceeditform',
  104. data : formData, // 你的formid
  105. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  106. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  107. error : function(request) {
  108. layer.alert("网络超时");
  109. },
  110. success : function(data) {
  111. if(data.data != null){
  112. layer.msg(ReturnInfo(data.data),{icon:5});
  113. return ;
  114. }
  115. layer.msg(data.msg);
  116. }
  117. });
  118. return false;
  119. });
  120. });