HelpProfitMerchantForUser_Admin.js 15 KB

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