MerchantParamSet_Admin.js 14 KB

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