UserSwapWhite_Admin.js 16 KB

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