CouponsForUser_Admin.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/CouponsForUser/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. layui.config({
  20. base: '/layuiadmin/' //静态资源所在路径
  21. }).extend({
  22. myexcel: 'layui/lay/modules/excel',
  23. index: 'lib/index' //主入口模块
  24. }).use(['index', 'table', 'excel', 'laydate'], function () {
  25. var $ = layui.$
  26. , form = layui.form
  27. , table = layui.table;
  28. //- 筛选条件-日期
  29. var laydate = layui.laydate;
  30. var layCreateDate = laydate.render({
  31. elem: '#CreateDate',
  32. type: 'date',
  33. range: true,
  34. change: function (value, date, endDate) {
  35. var op = true;
  36. if (date.year == endDate.year && endDate.month - date.month <= 1) {
  37. if (endDate.month - date.month == 1 && endDate.date > date.date) {
  38. op = false;
  39. layCreateDate.hint('日期范围请不要超过1个月');
  40. setTimeout(function () {
  41. $(".laydate-btns-confirm").addClass("laydate-disabled");
  42. }, 1);
  43. }
  44. } else {
  45. op = false;
  46. layCreateDate.hint('日期范围请不要超过1个月');
  47. setTimeout(function () {
  48. $(".laydate-btns-confirm").addClass("laydate-disabled");
  49. }, 1);
  50. }
  51. if (op) {
  52. $('#CreateDate').val(value);
  53. }
  54. }
  55. });
  56. //excel导入
  57. var excel = layui.excel;
  58. $('#ExcelFile').change(function (e) {
  59. var files = e.target.files;
  60. excel.importExcel(files, { }, function (data) {
  61. ExcelData = data[0].Sheet1;
  62. });
  63. });
  64. //监听单元格编辑
  65. table.on('edit(LAY-list-manage)', function(obj){
  66. var value = obj.value //得到修改后的值
  67. ,data = obj.data //得到所在行所有键值
  68. ,field = obj.field; //得到字段
  69. if(field == "Sort"){
  70. $.ajax({
  71. type: "POST",
  72. url: "/Admin/CouponsForUser/Sort?r=" + Math.random(1),
  73. data: "Id=" + data.Id + "&Sort=" + value,
  74. dataType: "text",
  75. success: function (data) {
  76. }
  77. });
  78. }
  79. });
  80. //列表数据
  81. table.render({
  82. elem: '#LAY-list-manage'
  83. , url: '/Admin/CouponsForUser/IndexData' //模拟接口
  84. , cols: [[
  85. { type: 'checkbox', fixed: 'left' }
  86. , {field:'Id', fixed: 'left', title:'ID', width:80, sort: true, unresize: true}
  87. ,{field:'CreateDate', title:'创建时间', sort: true}
  88. ,{field:'IsUse', title:'是否使用', sort: true}
  89. ,{field:'IsLock', title:'是否锁定', sort: true}
  90. ,{field:'UseDate', title:'使用时间', sort: true}
  91. , {field:'Sort', fixed: 'right', title:'排序', width:80, edit: 'text'}
  92. , { title: '操作', align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
  93. ]]
  94. , page: true
  95. , limit: 30
  96. , height: 'full-' + String($('.layui-card-header').height() + 130)
  97. , text: '对不起,加载出现异常!'
  98. , done: function (res, curr, count) {
  99. $(".layui-none").text("无数据");
  100. }
  101. });
  102. //监听工具条
  103. table.on('tool(LAY-list-manage)', function (obj) {
  104. var data = obj.data;
  105. if (obj.event === 'del') {
  106. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  107. $.ajax({
  108. type: "POST",
  109. url: "/Admin/CouponsForUser/Delete?r=" + Math.random(1),
  110. data: "Id=" + data.Id,
  111. dataType: "text",
  112. success: function (data) {
  113. if (data == "success") {
  114. obj.del();
  115. layer.close(index);
  116. } else {
  117. parent.layer.msg(data);
  118. }
  119. }
  120. });
  121. });
  122. } else if (obj.event === 'edit') {
  123. var tr = $(obj.tr);
  124. var perContent = layer.open({
  125. type: 2
  126. , title: '优惠券领取记录-编辑'
  127. , content: 'Edit?Id=' + data.Id + ''
  128. , maxmin: true
  129. , area: ['500px', '450px']
  130. , btn: ['确定', '取消']
  131. , yes: function (index, layero) {
  132. var iframeWindow = window['layui-layer-iframe' + index]
  133. , submitID = 'LAY-list-front-submit'
  134. , submit = layero.find('iframe').contents().find('#' + submitID);
  135. setTimeout(function () {
  136. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  137. var errObj = $(this).find('.layui-form-danger');
  138. if (errObj.length > 0) {
  139. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  140. submit.click();
  141. }
  142. });
  143. }, 300);
  144. //监听提交
  145. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  146. var field = data.field; //获取提交的字段
  147. var userdata = "";
  148. for (var prop in field) {
  149. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  150. }
  151. //提交 Ajax 成功后,静态更新表格中的数据
  152. //$.ajax({});
  153. $.ajax({
  154. type: "POST",
  155. url: "/Admin/CouponsForUser/Edit?r=" + Math.random(1),
  156. data: userdata,
  157. dataType: "text",
  158. success: function (data) {
  159. layer.close(index); //关闭弹层
  160. if (data == "success") {
  161. table.reload('LAY-list-manage'); //数据刷新
  162. } else {
  163. layer.msg(data);
  164. }
  165. }
  166. });
  167. });
  168. submit.trigger('click');
  169. }
  170. , success: function (layero, index) {
  171. }
  172. });
  173. layer.full(perContent);
  174. }
  175. });
  176. //监听搜索
  177. form.on('submit(LAY-list-front-search)', function (data) {
  178. var field = data.field;
  179. //执行重载
  180. table.reload('LAY-list-manage', {
  181. where: field
  182. });
  183. });
  184. form.on('submit(LAY-list-front-searchall)', function (data) {
  185. table.reload('LAY-list-manage', {
  186. where: null
  187. });
  188. });
  189. //事件
  190. var active = {
  191. batchdel: function () {
  192. var checkStatus = table.checkStatus('LAY-list-manage')
  193. , data = checkStatus.data; //得到选中的数据
  194. if (data.length < 1) {
  195. parent.layer.msg("请选择要删除的项");
  196. } else {
  197. var ids = "";
  198. $.each(data, function (index, value) {
  199. ids += data[index].Id + ",";
  200. });
  201. ids = ids.substring(0, ids.length - 1);
  202. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  203. $.ajax({
  204. type: "POST",
  205. url: "/Admin/CouponsForUser/Delete?r=" + Math.random(1),
  206. data: "Id=" + ids,
  207. dataType: "text",
  208. success: function (data) {
  209. layer.close(index);
  210. if (data == "success") {
  211. table.reload('LAY-list-manage');
  212. } else {
  213. layer.msg(data);
  214. }
  215. }
  216. });
  217. });
  218. }
  219. }
  220. , add: function () {
  221. var perContent = layer.open({
  222. type: 2
  223. , title: '优惠券领取记录-添加'
  224. , content: 'Add'
  225. , maxmin: true
  226. , area: ['500px', '450px']
  227. , btn: ['确定', '取消']
  228. , yes: function (index, layero) {
  229. var iframeWindow = window['layui-layer-iframe' + index]
  230. , submitID = 'LAY-list-front-submit'
  231. , submit = layero.find('iframe').contents().find('#' + submitID);
  232. setTimeout(function () {
  233. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  234. var errObj = $(this).find('.layui-form-danger');
  235. if (errObj.length > 0) {
  236. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  237. submit.click();
  238. }
  239. });
  240. }, 300);
  241. //监听提交
  242. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  243. var field = data.field; //获取提交的字段
  244. var userdata = "";
  245. for (var prop in field) {
  246. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  247. }
  248. //提交 Ajax 成功后,静态更新表格中的数据
  249. //$.ajax({});
  250. $.ajax({
  251. type: "POST",
  252. url: "/Admin/CouponsForUser/Add?r=" + Math.random(1),
  253. data: userdata,
  254. dataType: "text",
  255. success: function (data) {
  256. layer.close(index); //关闭弹层
  257. if (data == "success") {
  258. table.reload('LAY-list-manage'); //数据刷新
  259. } else {
  260. layer.msg(data);
  261. }
  262. }
  263. });
  264. });
  265. submit.trigger('click');
  266. }
  267. });
  268. layer.full(perContent);
  269. }
  270. , ImportData: function () {
  271. layer.open({
  272. type: 2,
  273. title: '导入',
  274. maxmin: false,
  275. area: ['460px', '180px'],
  276. content: $('#excelForm'),
  277. cancel: function () {
  278. }
  279. });
  280. }
  281. , ExportExcel: function () {
  282. var userdata = '';
  283. $(".layuiadmin-card-header-auto input").each(function (i) {
  284. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  285. });
  286. $(".layuiadmin-card-header-auto select").each(function (i) {
  287. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  288. });
  289. $.ajax({
  290. type: "GET",
  291. url: "/Admin/CouponsForUser/ExportExcel?r=" + Math.random(1),
  292. data: userdata,
  293. dataType: "json",
  294. success: function (data) {
  295. data.Obj.unshift(data.Fields);
  296. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  297. }
  298. });
  299. }
  300. , Open: function () {
  301. var checkStatus = table.checkStatus('LAY-list-manage')
  302. , data = checkStatus.data; //得到选中的数据
  303. if(data.length < 1){
  304. parent.layer.msg("请选择要开启的项");
  305. }else{
  306. var ids = "";
  307. $.each(data, function (index, value) {
  308. ids += data[index].Id + ",";
  309. });
  310. ids = ids.substring(0, ids.length - 1);
  311. var index = layer.confirm('确定要开启吗?', function (index) {
  312. $.ajax({
  313. type: "POST",
  314. url: "/Admin/CouponsForUser/Open?r=" + Math.random(1),
  315. data: "Id=" + ids,
  316. dataType: "text",
  317. success: function (data) {
  318. layer.close(index);
  319. if (data == "success") {
  320. table.reload('LAY-list-manage');
  321. } else {
  322. layer.msg(data);
  323. }
  324. }
  325. });
  326. });
  327. }
  328. }
  329. , Close: function () {
  330. var checkStatus = table.checkStatus('LAY-list-manage')
  331. , data = checkStatus.data; //得到选中的数据
  332. if(data.length < 1){
  333. parent.layer.msg("请选择要关闭的项");
  334. }else{
  335. var ids = "";
  336. $.each(data, function (index, value) {
  337. ids += data[index].Id + ",";
  338. });
  339. ids = ids.substring(0, ids.length - 1);
  340. var index = layer.confirm('确定要关闭吗?', function (index) {
  341. $.ajax({
  342. type: "POST",
  343. url: "/Admin/CouponsForUser/Close?r=" + Math.random(1),
  344. data: "Id=" + ids,
  345. dataType: "text",
  346. success: function (data) {
  347. layer.close(index);
  348. if (data == "success") {
  349. table.reload('LAY-list-manage');
  350. } else {
  351. layer.msg(data);
  352. }
  353. }
  354. });
  355. });
  356. }
  357. }
  358. };
  359. $('.layui-btn').on('click', function () {
  360. var type = $(this).data('type');
  361. active[type] ? active[type].call(this) : '';
  362. });
  363. });