PosCouponExchangeRecord_Admin.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. var ExcelData, ExcelKind;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/PosCouponExchangeRecord/Import?r=" + Math.random(1),
  6. data: "ExcelData=" + encodeURIComponent(JSON.stringify(ExcelData)),
  7. dataType: "text",
  8. success: function (data) {
  9. if (data == "success") {
  10. layer.msg("导入成功", { time: 2000 }, function () {
  11. window.location.reload();
  12. });
  13. } else {
  14. layer.msg(data);
  15. }
  16. }
  17. });
  18. }
  19. var excel;
  20. layui.config({
  21. base: '/layuiadmin/' //静态资源所在路径
  22. }).extend({
  23. myexcel: 'layui/lay/modules/excel',
  24. index: 'lib/index' //主入口模块
  25. }).use(['index', 'table', 'excel', 'laydate'], function () {
  26. var $ = layui.$
  27. , form = layui.form
  28. , table = layui.table;
  29. //- 筛选条件-日期
  30. var laydate = layui.laydate;
  31. var layCreateDate = laydate.render({
  32. elem: '#CreateDate',
  33. type: 'date',
  34. range: true,
  35. trigger: 'click',
  36. change: function (value, date, endDate) {
  37. var op = true;
  38. if (date.year == endDate.year && endDate.month - date.month <= 1) {
  39. if (endDate.month - date.month == 1 && endDate.date > date.date) {
  40. op = false;
  41. layCreateDate.hint('日期范围请不要超过1个月');
  42. setTimeout(function () {
  43. $(".laydate-btns-confirm").addClass("laydate-disabled");
  44. }, 1);
  45. }
  46. } else {
  47. op = false;
  48. layCreateDate.hint('日期范围请不要超过1个月');
  49. setTimeout(function () {
  50. $(".laydate-btns-confirm").addClass("laydate-disabled");
  51. }, 1);
  52. }
  53. if (op) {
  54. $('#CreateDate').val(value);
  55. }
  56. }
  57. });
  58. //excel导入
  59. excel = layui.excel;
  60. $('#ExcelFile').change(function (e) {
  61. var files = e.target.files;
  62. excel.importExcel(files, {}, function (data) {
  63. ExcelData = data[0].sheet1;
  64. });
  65. });
  66. //监听单元格编辑
  67. table.on('edit(LAY-list-manage)', function (obj) {
  68. var value = obj.value //得到修改后的值
  69. , data = obj.data //得到所在行所有键值
  70. , field = obj.field; //得到字段
  71. if (field == "Sort") {
  72. $.ajax({
  73. type: "POST",
  74. url: "/Admin/PosCouponExchangeRecord/Sort?r=" + Math.random(1),
  75. data: "Id=" + data.Id + "&Sort=" + value,
  76. dataType: "text",
  77. success: function (data) {
  78. }
  79. });
  80. }
  81. });
  82. //列表数据
  83. table.render({
  84. elem: '#LAY-list-manage'
  85. , url: '/Admin/PosCouponExchangeRecord/IndexData' //模拟接口
  86. , cols: [[
  87. { type: 'checkbox', fixed: 'left' }
  88. , { field: 'Id', fixed: 'left', title: 'ID', width: 80, sort: true, unresize: true }
  89. , { field: 'CreateDate', width: 200, title: '创建时间', sort: true }
  90. , { field: 'UserIdMakerCode', width: 200, title: '创客编号', sort: true }
  91. , { field: 'UserIdRealName', width: 200, title: '真实姓名', sort: true }
  92. , { field: 'SourceCount', width: 200, title: '来源券数量', sort: true }
  93. , { field: 'ToCount', width: 200, title: '兑换券数量', sort: true }
  94. , { field: 'SourceCoupons', width: 300, title: '来源券', sort: true }
  95. , { field: 'ToCoupons', width: 300, title: '兑换券', sort: true }
  96. ]]
  97. , where: {
  98. }
  99. , page: true
  100. , limit: 30
  101. , height: 'full-220'
  102. , text: '对不起,加载出现异常!'
  103. , done: function (res, curr, count) {
  104. $(".layui-none").text("无数据");
  105. }
  106. });
  107. //监听工具条
  108. table.on('tool(LAY-list-manage)', function (obj) {
  109. var data = obj.data;
  110. });
  111. //监听搜索
  112. form.on('submit(LAY-list-front-search)', function (data) {
  113. var field = data.field;
  114. //执行重载
  115. table.reload('LAY-list-manage', {
  116. where: field,
  117. page: {
  118. curr: 1
  119. }
  120. });
  121. });
  122. form.on('submit(LAY-list-front-searchall)', function (data) {
  123. table.reload('LAY-list-manage', {
  124. where: null,
  125. page: {
  126. curr: 1
  127. }
  128. });
  129. });
  130. //事件
  131. var active = {
  132. };
  133. $('.layui-btn').on('click', function () {
  134. var type = $(this).data('type');
  135. active[type] ? active[type].call(this) : '';
  136. });
  137. });