UserCashLeaderRecord_Admin.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/UserCashRecord/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("导入成功", {
  11. time: 2000
  12. }, function () {
  13. window.location.reload();
  14. });
  15. } else {
  16. layer.msg(data);
  17. }
  18. }
  19. });
  20. }
  21. function CheckImport(table, key, loadindex, index) {
  22. $.ajax({
  23. url: "/Admin/UserCashRecord/CheckImport?r=" + Math.random(1),
  24. data: "key=" + key,
  25. dataType: "text",
  26. success: function (data) {
  27. if (data.indexOf('success') == 0) {
  28. layer.msg("成功操作" + data.split('|')[1] + "笔提现申请", { time: 2000 }, function () {
  29. layer.close(index); //关闭弹层
  30. layer.close(loadindex);
  31. table.reload('LAY-list-manage'); //数据刷新
  32. });
  33. } else {
  34. layer.msg(data, { time: 1000 }, function () {
  35. CheckImport(table, key, loadindex, index);
  36. });
  37. }
  38. }
  39. });
  40. }
  41. var excel;
  42. layui.config({
  43. base: '/layuiadmin/' //静态资源所在路径
  44. }).extend({
  45. myexcel: 'layui/lay/modules/excel',
  46. index: 'lib/index' //主入口模块
  47. }).use(['index', 'table', 'excel', 'laydate'], function () {
  48. var $ = layui.$,
  49. form = layui.form,
  50. table = layui.table;
  51. //- 筛选条件-日期
  52. var laydate = layui.laydate;
  53. var layCreateDate = laydate.render({
  54. elem: '#CreateDate',
  55. type: 'date',
  56. range: true,
  57. trigger: 'click',
  58. change: function (value, date, endDate) {
  59. var op = true;
  60. if (date.year == endDate.year && endDate.month - date.month <= 1) {
  61. if (endDate.month - date.month == 1 && endDate.date > date.date) {
  62. op = false;
  63. layCreateDate.hint('日期范围请不要超过1个月');
  64. setTimeout(function () {
  65. $(".laydate-btns-confirm").addClass("laydate-disabled");
  66. }, 1);
  67. }
  68. } else {
  69. op = false;
  70. layCreateDate.hint('日期范围请不要超过1个月');
  71. setTimeout(function () {
  72. $(".laydate-btns-confirm").addClass("laydate-disabled");
  73. }, 1);
  74. }
  75. if (op) {
  76. $('#CreateDate').val(value);
  77. }
  78. }
  79. });
  80. //excel导入
  81. excel = layui.excel;
  82. $('#ExcelFile').change(function (e) {
  83. var files = e.target.files;
  84. excel.importExcel(files, {}, function (data) {
  85. ExcelData = data[0].sheet1;
  86. });
  87. });
  88. //监听单元格编辑
  89. table.on('edit(LAY-list-manage)', function (obj) {
  90. var value = obj.value //得到修改后的值
  91. ,
  92. data = obj.data //得到所在行所有键值
  93. ,
  94. field = obj.field; //得到字段
  95. if (field == "Sort") {
  96. $.ajax({
  97. type: "POST",
  98. url: "/Admin/UserCashRecord/Sort?r=" + Math.random(1),
  99. data: "Id=" + data.Id + "&Sort=" + value,
  100. dataType: "text",
  101. success: function (data) {}
  102. });
  103. }
  104. });
  105. //列表数据
  106. table.render({
  107. elem: '#LAY-list-manage',
  108. url: '/Admin/UserCashRecord/LeaderIndexData' //模拟接口
  109. ,
  110. cols: [
  111. [{
  112. type: 'checkbox',
  113. fixed: 'left'
  114. }, {
  115. field: 'CashOrderNo',
  116. width: 200,
  117. title: '提现单号',
  118. sort: true
  119. }, {
  120. field: 'UserId',
  121. width: 200,
  122. title: '创客Id',
  123. sort: true
  124. }, {
  125. field: 'MakerCode',
  126. width: 200,
  127. title: '创客编码',
  128. sort: true
  129. }, {
  130. field: 'RealName',
  131. width: 200,
  132. title: '创客名称',
  133. sort: true
  134. }, {
  135. field: 'IdCardNo',
  136. width: 200,
  137. title: '身份证号',
  138. sort: true
  139. }, {
  140. field: 'SettleBankCardNo',
  141. width: 200,
  142. title: '提现卡号',
  143. sort: true
  144. }, {
  145. field: 'SettleBankName',
  146. width: 200,
  147. title: '银行名称',
  148. sort: true
  149. }, {
  150. field: 'TradeType',
  151. width: 200,
  152. title: '交易类型',
  153. sort: true
  154. }, {
  155. field: 'TradeAmount',
  156. width: 200,
  157. title: '提现金额(元)',
  158. sort: true
  159. }, {
  160. field: 'ActualTradeAmount',
  161. width: 200,
  162. title: '发佣金额(元)',
  163. sort: true
  164. }, {
  165. field: 'StatusName',
  166. width: 200,
  167. title: '订单状态',
  168. templet: '#StatusTpl',
  169. sort: true
  170. }, {
  171. field: 'LockName',
  172. width: 200,
  173. title: '提现标记',
  174. sort: true
  175. }, {
  176. field: 'ReturnCode',
  177. width: 200,
  178. title: '提现服务返回编码',
  179. sort: true
  180. }, {
  181. field: 'ReturnMsg',
  182. width: 200,
  183. title: '提现服务返回信息',
  184. sort: true
  185. }, {
  186. field: 'SeoKeyword',
  187. width: 200,
  188. title: '备注',
  189. sort: true
  190. }, {
  191. field: 'Remark',
  192. width: 200,
  193. title: '代付返回信息',
  194. sort: true
  195. }, {
  196. field: 'CreateDate',
  197. width: 200,
  198. title: '创建时间',
  199. sort: true
  200. }, { title: '操作', align: 'center', width: 300, fixed: 'right', toolbar: '#table-list-tools' }
  201. ]
  202. ],
  203. where: {
  204. },
  205. page: true,
  206. limit: 30,
  207. height: 'full-' + String($('.layui-card-header').height() + 130),
  208. text: '对不起,加载出现异常!',
  209. done: function (res, curr, count) {
  210. $("#SuccessAmount").text(res.other.SuccessAmount);
  211. $("#FailAmount").text(res.other.FailAmount);
  212. $("#WaitAmount").text(res.other.WaitAmount);
  213. $(".layui-none").text("无数据");
  214. }
  215. });
  216. //监听工具条
  217. table.on('tool(LAY-list-manage)', function (obj) {
  218. var data = obj.data;
  219. if (obj.event === 'del') {
  220. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  221. $.ajax({
  222. type: "POST",
  223. url: "/Admin/UserCashRecord/Delete?r=" + Math.random(1),
  224. data: "Id=" + data.Id,
  225. dataType: "text",
  226. success: function (data) {
  227. if (data == "success") {
  228. obj.del();
  229. layer.close(index);
  230. } else {
  231. parent.layer.msg(data);
  232. }
  233. }
  234. });
  235. });
  236. } else if (obj.event === 'cancel') {
  237. var index = layer.confirm('确定要解除吗?操作后不能恢复!', function (index) {
  238. $.ajax({
  239. type: "POST",
  240. url: "/Admin/UserCashRecord/Cancel?r=" + Math.random(1),
  241. data: "Id=" + data.Id,
  242. dataType: "text",
  243. success: function (data) {
  244. layer.close(index);
  245. if (data == "success") {
  246. parent.layer.msg('已解除');
  247. table.reload('LAY-list-manage'); //数据刷新
  248. } else {
  249. parent.layer.msg(data);
  250. }
  251. }
  252. });
  253. });
  254. } else if (obj.event === 'edit') {
  255. var tr = $(obj.tr);
  256. var perContent = layer.open({
  257. type: 2,
  258. title: '提现记录-编辑',
  259. content: 'Edit?Id=' + data.Id + '',
  260. maxmin: true,
  261. area: ['500px', '450px'],
  262. btn: ['确定', '取消'],
  263. yes: function (index, layero) {
  264. var iframeWindow = window['layui-layer-iframe' + index],
  265. submitID = 'LAY-list-front-submit',
  266. submit = layero.find('iframe').contents().find('#' + submitID);
  267. setTimeout(function () {
  268. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  269. var errObj = $(this).find('.layui-form-danger');
  270. if (errObj.length > 0) {
  271. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  272. submit.click();
  273. }
  274. });
  275. }, 300);
  276. //监听提交
  277. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  278. var field = data.field; //获取提交的字段
  279. var userdata = "";
  280. for (var prop in field) {
  281. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  282. }
  283. //提交 Ajax 成功后,静态更新表格中的数据
  284. //$.ajax({});
  285. $.ajax({
  286. type: "POST",
  287. url: "/Admin/UserCashRecord/Edit?r=" + Math.random(1),
  288. data: userdata,
  289. dataType: "text",
  290. success: function (data) {
  291. layer.close(index); //关闭弹层
  292. if (data == "success") {
  293. table.reload('LAY-list-manage'); //数据刷新
  294. } else {
  295. layer.msg(data);
  296. }
  297. }
  298. });
  299. });
  300. submit.trigger('click');
  301. },
  302. success: function (layero, index) {
  303. }
  304. });
  305. layer.full(perContent);
  306. } else if (obj.event === 'reduce') {
  307. var tr = $(obj.tr);
  308. var perContent = layer.open({
  309. type: 2,
  310. title: '拒绝处理',
  311. content: 'Reduce?Id=' + data.Id + '',
  312. maxmin: true,
  313. area: ['500px', '450px'],
  314. btn: ['确定', '取消'],
  315. yes: function (index, layero) {
  316. var iframeWindow = window['layui-layer-iframe' + index],
  317. submitID = 'LAY-list-front-submit',
  318. submit = layero.find('iframe').contents().find('#' + submitID);
  319. setTimeout(function () {
  320. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  321. var errObj = $(this).find('.layui-form-danger');
  322. if (errObj.length > 0) {
  323. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  324. submit.click();
  325. }
  326. });
  327. }, 300);
  328. //监听提交
  329. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  330. var field = data.field; //获取提交的字段
  331. var userdata = "";
  332. for (var prop in field) {
  333. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  334. }
  335. //提交 Ajax 成功后,静态更新表格中的数据
  336. //$.ajax({});
  337. $.ajax({
  338. type: "POST",
  339. url: "/Admin/UserCashRecord/ReduceDo?r=" + Math.random(1),
  340. data: userdata,
  341. dataType: "text",
  342. success: function (data) {
  343. layer.close(index); //关闭弹层
  344. if (data == "success") {
  345. table.reload('LAY-list-manage'); //数据刷新
  346. } else {
  347. layer.msg(data);
  348. }
  349. }
  350. });
  351. });
  352. submit.trigger('click');
  353. },
  354. success: function (layero, index) {
  355. }
  356. });
  357. }
  358. });
  359. //监听搜索
  360. form.on('submit(LAY-list-front-search)', function (data) {
  361. var field = data.field;
  362. //执行重载
  363. table.reload('LAY-list-manage', {
  364. where: field,
  365. page: {
  366. curr: 1
  367. }
  368. });
  369. });
  370. form.on('submit(LAY-list-front-searchall)', function (data) {
  371. table.reload('LAY-list-manage', {
  372. where: null,
  373. page: {
  374. curr: 1
  375. }
  376. });
  377. });
  378. //事件
  379. var active = {
  380. batchdel: function () {
  381. var checkStatus = table.checkStatus('LAY-list-manage'),
  382. data = checkStatus.data; //得到选中的数据
  383. if (data.length < 1) {
  384. parent.layer.msg("请选择要删除的项");
  385. } else {
  386. var ids = "";
  387. $.each(data, function (index, value) {
  388. ids += data[index].Id + ",";
  389. });
  390. ids = ids.substring(0, ids.length - 1);
  391. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  392. $.ajax({
  393. type: "POST",
  394. url: "/Admin/UserCashRecord/Delete?r=" + Math.random(1),
  395. data: "Id=" + ids,
  396. dataType: "text",
  397. success: function (data) {
  398. layer.close(index);
  399. if (data == "success") {
  400. table.reload('LAY-list-manage');
  401. } else {
  402. layer.msg(data);
  403. }
  404. }
  405. });
  406. });
  407. }
  408. },
  409. add: function () {
  410. var perContent = layer.open({
  411. type: 2,
  412. title: '提现记录-添加',
  413. content: 'Add',
  414. maxmin: true,
  415. area: ['500px', '450px'],
  416. btn: ['确定', '取消'],
  417. yes: function (index, layero) {
  418. var iframeWindow = window['layui-layer-iframe' + index],
  419. submitID = 'LAY-list-front-submit',
  420. submit = layero.find('iframe').contents().find('#' + submitID);
  421. setTimeout(function () {
  422. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  423. var errObj = $(this).find('.layui-form-danger');
  424. if (errObj.length > 0) {
  425. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  426. submit.click();
  427. }
  428. });
  429. }, 300);
  430. //监听提交
  431. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  432. var field = data.field; //获取提交的字段
  433. var userdata = "";
  434. for (var prop in field) {
  435. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  436. }
  437. //提交 Ajax 成功后,静态更新表格中的数据
  438. //$.ajax({});
  439. $.ajax({
  440. type: "POST",
  441. url: "/Admin/UserCashRecord/Add?r=" + Math.random(1),
  442. data: userdata,
  443. dataType: "text",
  444. success: function (data) {
  445. layer.close(index); //关闭弹层
  446. if (data == "success") {
  447. table.reload('LAY-list-manage'); //数据刷新
  448. } else {
  449. layer.msg(data);
  450. }
  451. }
  452. });
  453. });
  454. submit.trigger('click');
  455. }
  456. });
  457. layer.full(perContent);
  458. },
  459. ImportData: function () {
  460. var perContent = layer.open({
  461. type: 2
  462. , title: '提现结果导入'
  463. , content: 'Import'
  464. , maxmin: true
  465. , area: ['650px', '350px']
  466. , btn: ['确定', '取消']
  467. , yes: function (index, layero) {
  468. var iframeWindow = window['layui-layer-iframe' + index]
  469. , submitID = 'LAY-list-front-submit'
  470. , submit = layero.find('iframe').contents().find('#' + submitID);
  471. //监听提交
  472. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  473. var field = data.field; //获取提交的字段
  474. var userdata = "";
  475. for (var prop in field) {
  476. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  477. }
  478. //提交 Ajax 成功后,静态更新表格中的数据
  479. //$.ajax({});
  480. var loadindex = layer.load(1, {
  481. shade: [0.5, '#000']
  482. });
  483. $.ajax({
  484. type: "POST",
  485. url: "/Admin/UserCashRecord/ImportPost?r=" + Math.random(1),
  486. data: userdata,
  487. dataType: "text",
  488. success: function (data) {
  489. if (data.indexOf("success") == 0) {
  490. var datalist = data.split('|');
  491. var key = datalist[1];
  492. CheckImport(table, key, loadindex, index);
  493. } else {
  494. layer.msg(data);
  495. }
  496. }
  497. });
  498. });
  499. submit.trigger('click');
  500. }
  501. });
  502. },
  503. ExportExcel: function () {
  504. var userdata = '';
  505. $(".layuiadmin-card-header-auto input").each(function (i) {
  506. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  507. });
  508. $(".layuiadmin-card-header-auto select").each(function (i) {
  509. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  510. });
  511. // $.ajax({
  512. // type: "GET",
  513. // url: "/Admin/UserCashRecord/LeaderExportExcel?r=" + Math.random(1),
  514. // data: userdata,
  515. // dataType: "json",
  516. // success: function (data) {
  517. // data.Obj.unshift(data.Fields);
  518. // excel.exportExcel(data.Obj, data.Info, 'xlsx');
  519. // }
  520. // });
  521. var index = layer.confirm('确定导出吗?', function (index) {
  522. var indexs = layer.load(1, {
  523. shade: [0.5, '#000']
  524. });
  525. $.ajax({
  526. type: "POST",
  527. url: "/Admin/UserCashRecord/LeaderQuickExportExcelDo?r=" + Math.random(1),
  528. data: userdata,
  529. dataType: "text",
  530. success: function (data) {
  531. layer.close(index); //关闭弹层
  532. if (data == "success") {
  533. layer.close(indexs); //关闭弹层
  534. layer.msg('导出成功,请到我的下载中点击下载文件', {
  535. time: 1000
  536. }, function () {
  537. window.location.reload();
  538. });
  539. } else {
  540. layer.close(indexs); //关闭弹层
  541. layer.msg(data);
  542. }
  543. }
  544. });
  545. });
  546. },
  547. Open: function () {
  548. var checkStatus = table.checkStatus('LAY-list-manage'),
  549. data = checkStatus.data; //得到选中的数据
  550. if (data.length < 1) {
  551. parent.layer.msg("请选择要开启的项");
  552. } else {
  553. var ids = "";
  554. $.each(data, function (index, value) {
  555. ids += data[index].Id + ",";
  556. });
  557. ids = ids.substring(0, ids.length - 1);
  558. var index = layer.confirm('确定要开启吗?', function (index) {
  559. $.ajax({
  560. type: "POST",
  561. url: "/Admin/UserCashRecord/Open?r=" + Math.random(1),
  562. data: "Id=" + ids,
  563. dataType: "text",
  564. success: function (data) {
  565. layer.close(index);
  566. if (data == "success") {
  567. table.reload('LAY-list-manage');
  568. } else {
  569. layer.msg(data);
  570. }
  571. }
  572. });
  573. });
  574. }
  575. },
  576. Close: function () {
  577. var checkStatus = table.checkStatus('LAY-list-manage'),
  578. data = checkStatus.data; //得到选中的数据
  579. if (data.length < 1) {
  580. parent.layer.msg("请选择要关闭的项");
  581. } else {
  582. var ids = "";
  583. $.each(data, function (index, value) {
  584. ids += data[index].Id + ",";
  585. });
  586. ids = ids.substring(0, ids.length - 1);
  587. var index = layer.confirm('确定要关闭吗?', function (index) {
  588. $.ajax({
  589. type: "POST",
  590. url: "/Admin/UserCashRecord/Close?r=" + Math.random(1),
  591. data: "Id=" + ids,
  592. dataType: "text",
  593. success: function (data) {
  594. layer.close(index);
  595. if (data == "success") {
  596. table.reload('LAY-list-manage');
  597. } else {
  598. layer.msg(data);
  599. }
  600. }
  601. });
  602. });
  603. }
  604. },
  605. };
  606. $('.layui-btn').on('click', function () {
  607. var type = $(this).data('type');
  608. active[type] ? active[type].call(this) : '';
  609. });
  610. });