SystemSet_Admin.js 15 KB

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