IndexIconList_Admin.js 15 KB

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