OpenRewardDetail_Admin.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. var ExcelData,ExcelKind;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/OpenRewardDetail/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: 'datetime',
  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. var layTradeDate = laydate.render({
  59. elem: '#TradeDate',
  60. trigger: 'click',
  61. type: 'datetime',
  62. range: true,
  63. change: function (value, date, endDate) {
  64. var op = true;
  65. if (date.year == endDate.year && endDate.month - date.month <= 1) {
  66. if (endDate.month - date.month == 1 && endDate.date > date.date) {
  67. op = false;
  68. layTradeDate.hint('日期范围请不要超过1个月');
  69. setTimeout(function () {
  70. $(".laydate-btns-confirm").addClass("laydate-disabled");
  71. }, 1);
  72. }
  73. } else {
  74. op = false;
  75. layTradeDate.hint('日期范围请不要超过1个月');
  76. setTimeout(function () {
  77. $(".laydate-btns-confirm").addClass("laydate-disabled");
  78. }, 1);
  79. }
  80. if (op) {
  81. $('#TradeDate').val(value);
  82. }
  83. }
  84. });
  85. //excel导入
  86. excel = layui.excel;
  87. $('#ExcelFile').change(function (e) {
  88. var files = e.target.files;
  89. excel.importExcel(files, { }, function (data) {
  90. ExcelData = data[0].sheet1;
  91. });
  92. });
  93. //监听单元格编辑
  94. table.on('edit(LAY-list-manage)', function(obj){
  95. var value = obj.value //得到修改后的值
  96. ,data = obj.data //得到所在行所有键值
  97. ,field = obj.field; //得到字段
  98. if(field == "Sort"){
  99. $.ajax({
  100. type: "POST",
  101. url: "/Admin/OpenRewardDetail/Sort?r=" + Math.random(1),
  102. data: "Id=" + data.Id + "&Sort=" + value,
  103. dataType: "text",
  104. success: function (data) {
  105. }
  106. });
  107. }
  108. });
  109. //列表数据
  110. table.render({
  111. elem: '#LAY-list-manage'
  112. , url: '/Admin/OpenRewardDetail/IndexData' //模拟接口
  113. , cols: [[
  114. { type: 'checkbox', fixed: 'left' }
  115. , {field:'Id', fixed: 'left', title:'ID', width:80, sort: true, unresize: true}
  116. ,{field:'CreateDate', width: 200, title:'创建时间', sort: true}
  117. ,{field:'TradeDate', width: 200, title:'达标日期', sort: true}
  118. ,{field:'UserId', width: 200, title:'创客', sort: true}
  119. ,{field:'BrandId', width: 200, title:'品牌', sort: true}
  120. ,{field:'MerchantId', width: 200, title:'商户', sort: true}
  121. ,{field:'DirectUserId', width: 200, title:'商户直属人', sort: true}
  122. ,{field:'SnNo', width: 200, title:'SN号', sort: true}
  123. ,{field:'MerNo', width: 200, title:'渠道商户号', sort: true}
  124. ,{field:'SnType', width: 200, title:'机具类型', sort: true}
  125. ,{field:'SnApplyUserId', width: 200, title:'机具申请人', sort: true}
  126. ,{field:'StandardDate', width: 200, title:'商户的激活日期', sort: true}
  127. ,{field:'SnStoreId', width: 200, title:'SN仓库', sort: true}
  128. ,{field:'MerBuddyType', width: 200, title:'商户创客类型', sort: true}
  129. ,{field:'RewardType', width: 200, title:'奖励类型', sort: true}
  130. ,{field:'CreditTradeAmt', width: 200, title:'贷记卡交易总金额', sort: true}
  131. ,{field:'DebitTradeAmt', width: 200, title:'借记卡交易总金额', sort: true}
  132. ,{field:'CreditRewardAmount', width: 200, title:'贷记卡交易奖励金额', sort: true}
  133. ,{field:'DebitRewardAmount', width: 200, title:'借记记卡交易奖励金额', sort: true}
  134. ,{field:'OpenRewardNo', width: 200, title:'开机奖励单号', sort: true}
  135. ,{field:'RewardDesc', width: 200, title:'奖励描述', sort: true}
  136. ,{field:'CheckStatus', width: 200, title:'同步状态', sort: true}
  137. , {field:'Sort', fixed: 'right', title:'排序', width:80, edit: 'text'}
  138. , { title: '操作', align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
  139. ]]
  140. , where: {
  141. }
  142. , page: true
  143. , limit: 30
  144. , height: 'full-220'
  145. , text: '对不起,加载出现异常!'
  146. , done: function (res, curr, count) {
  147. $(".layui-none").text("无数据");
  148. }
  149. });
  150. //监听工具条
  151. table.on('tool(LAY-list-manage)', function (obj) {
  152. var data = obj.data;
  153. if (obj.event === 'del') {
  154. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  155. $.ajax({
  156. type: "POST",
  157. url: "/Admin/OpenRewardDetail/Delete?r=" + Math.random(1),
  158. data: "Id=" + data.Id,
  159. dataType: "text",
  160. success: function (data) {
  161. if (data == "success") {
  162. obj.del();
  163. layer.close(index);
  164. } else {
  165. parent.layer.msg(data);
  166. }
  167. }
  168. });
  169. });
  170. } else if (obj.event === 'edit') {
  171. var tr = $(obj.tr);
  172. var perContent = layer.open({
  173. type: 2
  174. , title: '开机奖励明细-编辑'
  175. , content: 'Edit?Id=' + data.Id + ''
  176. , maxmin: true
  177. , area: ['500px', '450px']
  178. , btn: ['确定', '取消']
  179. , yes: function (index, layero) {
  180. var iframeWindow = window['layui-layer-iframe' + index]
  181. , submitID = 'LAY-list-front-submit'
  182. , submit = layero.find('iframe').contents().find('#' + submitID);
  183. setTimeout(function () {
  184. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  185. var errObj = $(this).find('.layui-form-danger');
  186. if (errObj.length > 0) {
  187. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  188. submit.click();
  189. }
  190. });
  191. }, 300);
  192. //监听提交
  193. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  194. var field = data.field; //获取提交的字段
  195. var userdata = "";
  196. for (var prop in field) {
  197. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  198. }
  199. //提交 Ajax 成功后,静态更新表格中的数据
  200. //$.ajax({});
  201. $.ajax({
  202. type: "POST",
  203. url: "/Admin/OpenRewardDetail/Edit?r=" + Math.random(1),
  204. data: userdata,
  205. dataType: "text",
  206. success: function (data) {
  207. layer.close(index); //关闭弹层
  208. if (data == "success") {
  209. table.reload('LAY-list-manage'); //数据刷新
  210. } else {
  211. layer.msg(data);
  212. }
  213. }
  214. });
  215. });
  216. submit.trigger('click');
  217. }
  218. , success: function (layero, index) {
  219. }
  220. });
  221. layer.full(perContent);
  222. }
  223. });
  224. //监听搜索
  225. form.on('submit(LAY-list-front-search)', function (data) {
  226. var field = data.field;
  227. //执行重载
  228. table.reload('LAY-list-manage', {
  229. where: field
  230. });
  231. });
  232. form.on('submit(LAY-list-front-searchall)', function (data) {
  233. table.reload('LAY-list-manage', {
  234. where: null
  235. });
  236. });
  237. //事件
  238. var active = {
  239. batchdel: function () {
  240. var checkStatus = table.checkStatus('LAY-list-manage')
  241. , data = checkStatus.data; //得到选中的数据
  242. if (data.length < 1) {
  243. parent.layer.msg("请选择要删除的项");
  244. } else {
  245. var ids = "";
  246. $.each(data, function (index, value) {
  247. ids += data[index].Id + ",";
  248. });
  249. ids = ids.substring(0, ids.length - 1);
  250. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  251. $.ajax({
  252. type: "POST",
  253. url: "/Admin/OpenRewardDetail/Delete?r=" + Math.random(1),
  254. data: "Id=" + ids,
  255. dataType: "text",
  256. success: function (data) {
  257. layer.close(index);
  258. if (data == "success") {
  259. table.reload('LAY-list-manage');
  260. } else {
  261. layer.msg(data);
  262. }
  263. }
  264. });
  265. });
  266. }
  267. }
  268. , add: function () {
  269. var perContent = layer.open({
  270. type: 2
  271. , title: '开机奖励明细-添加'
  272. , content: 'Add'
  273. , maxmin: true
  274. , area: ['500px', '450px']
  275. , btn: ['确定', '取消']
  276. , yes: function (index, layero) {
  277. var iframeWindow = window['layui-layer-iframe' + index]
  278. , submitID = 'LAY-list-front-submit'
  279. , submit = layero.find('iframe').contents().find('#' + submitID);
  280. setTimeout(function () {
  281. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  282. var errObj = $(this).find('.layui-form-danger');
  283. if (errObj.length > 0) {
  284. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  285. submit.click();
  286. }
  287. });
  288. }, 300);
  289. //监听提交
  290. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  291. var field = data.field; //获取提交的字段
  292. var userdata = "";
  293. for (var prop in field) {
  294. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  295. }
  296. //提交 Ajax 成功后,静态更新表格中的数据
  297. //$.ajax({});
  298. $.ajax({
  299. type: "POST",
  300. url: "/Admin/OpenRewardDetail/Add?r=" + Math.random(1),
  301. data: userdata,
  302. dataType: "text",
  303. success: function (data) {
  304. layer.close(index); //关闭弹层
  305. if (data == "success") {
  306. table.reload('LAY-list-manage'); //数据刷新
  307. } else {
  308. layer.msg(data);
  309. }
  310. }
  311. });
  312. });
  313. submit.trigger('click');
  314. }
  315. });
  316. layer.full(perContent);
  317. }
  318. , ImportData: function () {
  319. ExcelKind = 1;
  320. layer.open({
  321. type: 1,
  322. title: '导入',
  323. maxmin: false,
  324. area: ['460px', '280px'],
  325. content: $('#excelForm'),
  326. cancel: function () {
  327. }
  328. });
  329. $("#excelTemp").html('<a href="/excelfile/模板文件.xlsx">点击下载模板文件</a>');
  330. }
  331. , ExportExcel: function () {
  332. var userdata = '';
  333. $(".layuiadmin-card-header-auto input").each(function (i) {
  334. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  335. });
  336. $(".layuiadmin-card-header-auto select").each(function (i) {
  337. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  338. });
  339. $.ajax({
  340. type: "GET",
  341. url: "/Admin/OpenRewardDetail/ExportExcel?r=" + Math.random(1),
  342. data: userdata,
  343. dataType: "json",
  344. success: function (data) {
  345. data.Obj.unshift(data.Fields);
  346. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  347. }
  348. });
  349. }
  350. , Open: function () {
  351. var checkStatus = table.checkStatus('LAY-list-manage')
  352. , data = checkStatus.data; //得到选中的数据
  353. if(data.length < 1){
  354. parent.layer.msg("请选择要开启的项");
  355. }else{
  356. var ids = "";
  357. $.each(data, function (index, value) {
  358. ids += data[index].Id + ",";
  359. });
  360. ids = ids.substring(0, ids.length - 1);
  361. var index = layer.confirm('确定要开启吗?', function (index) {
  362. $.ajax({
  363. type: "POST",
  364. url: "/Admin/OpenRewardDetail/Open?r=" + Math.random(1),
  365. data: "Id=" + ids,
  366. dataType: "text",
  367. success: function (data) {
  368. layer.close(index);
  369. if (data == "success") {
  370. table.reload('LAY-list-manage');
  371. } else {
  372. layer.msg(data);
  373. }
  374. }
  375. });
  376. });
  377. }
  378. }
  379. , Close: function () {
  380. var checkStatus = table.checkStatus('LAY-list-manage')
  381. , data = checkStatus.data; //得到选中的数据
  382. if(data.length < 1){
  383. parent.layer.msg("请选择要关闭的项");
  384. }else{
  385. var ids = "";
  386. $.each(data, function (index, value) {
  387. ids += data[index].Id + ",";
  388. });
  389. ids = ids.substring(0, ids.length - 1);
  390. var index = layer.confirm('确定要关闭吗?', function (index) {
  391. $.ajax({
  392. type: "POST",
  393. url: "/Admin/OpenRewardDetail/Close?r=" + Math.random(1),
  394. data: "Id=" + ids,
  395. dataType: "text",
  396. success: function (data) {
  397. layer.close(index);
  398. if (data == "success") {
  399. table.reload('LAY-list-manage');
  400. } else {
  401. layer.msg(data);
  402. }
  403. }
  404. });
  405. });
  406. }
  407. }
  408. };
  409. $('.layui-btn').on('click', function () {
  410. var type = $(this).data('type');
  411. active[type] ? active[type].call(this) : '';
  412. });
  413. });