Advertisment_Admin.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/Advertisment/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. layui.config({
  20. base: '/layuiadmin/' //静态资源所在路径
  21. }).extend({
  22. myexcel: 'layui/lay/modules/excel',
  23. index: 'lib/index' //主入口模块
  24. }).use(['index', 'table', 'excel', 'laydate'], function () {
  25. var $ = layui.$
  26. , form = layui.form
  27. , table = layui.table;
  28. //- 筛选条件-日期
  29. var laydate = layui.laydate;
  30. //excel导入
  31. var excel = layui.excel;
  32. $('#ExcelFile').change(function (e) {
  33. var files = e.target.files;
  34. excel.importExcel(files, {}, function (data) {
  35. ExcelData = data[0].Sheet1;
  36. });
  37. });
  38. //监听单元格编辑
  39. table.on('edit(LAY-list-manage)', function (obj) {
  40. var value = obj.value //得到修改后的值
  41. , data = obj.data //得到所在行所有键值
  42. , field = obj.field; //得到字段
  43. if (field == "Sort") {
  44. $.ajax({
  45. type: "POST",
  46. url: "/Admin/Advertisment/Sort?r=" + Math.random(1),
  47. data: "Id=" + data.Id + "&Sort=" + value,
  48. dataType: "text",
  49. success: function (data) {
  50. }
  51. });
  52. }
  53. });
  54. //列表数据
  55. table.render({
  56. elem: '#LAY-list-manage'
  57. , url: '/Admin/Advertisment/IndexData?CurColId=' + CurColId //模拟接口
  58. , cols: [[
  59. { type: 'checkbox', fixed: 'left' }
  60. , { field: 'Id', fixed: 'left', title: 'ID', width: 80, sort: true, unresize: true }
  61. , { field: 'Title', width: 220, title: '标题', sort: true }
  62. , { field: 'ColId', width: 220, title: '分类', sort: true }
  63. , { field: 'PicPath', width: 220, title: '图片', templet: '#imgTpl', unresize: true }
  64. , { field: 'Sort', fixed: 'right', title: '排序', width: 80, edit: 'text' }
  65. , { title: '操作', width: 420, align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
  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/Advertisment/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 + '&CurColId=' + CurColId
  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. //内容
  109. iframeWindow.Contentsedit.sync();
  110. //监听提交
  111. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  112. var field = data.field; //获取提交的字段
  113. var userdata = "";
  114. for (var prop in field) {
  115. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  116. }
  117. //提交 Ajax 成功后,静态更新表格中的数据
  118. //$.ajax({});
  119. $.ajax({
  120. type: "POST",
  121. url: "/Admin/Advertisment/Edit?r=" + Math.random(1),
  122. data: userdata,
  123. dataType: "text",
  124. success: function (data) {
  125. layer.close(index); //关闭弹层
  126. if (data == "success") {
  127. table.reload('LAY-list-manage'); //数据刷新
  128. } else {
  129. layer.msg(data);
  130. }
  131. }
  132. });
  133. });
  134. submit.trigger('click');
  135. }
  136. , success: function (layero, index) {
  137. }
  138. });
  139. layer.full(perContent);
  140. } else if (obj.event === 'open') {
  141. $.ajax({
  142. type: "POST",
  143. url: "/Admin/Advertisment/Open?r=" + Math.random(1),
  144. data: "Id=" + data.Id,
  145. dataType: "text",
  146. success: function (data) {
  147. if (data == "success") {
  148. table.reload('LAY-list-manage'); //数据刷新
  149. } else {
  150. parent.layer.msg(data);
  151. }
  152. }
  153. });
  154. } else if (obj.event === 'close') {
  155. $.ajax({
  156. type: "POST",
  157. url: "/Admin/Advertisment/Close?r=" + Math.random(1),
  158. data: "Id=" + data.Id,
  159. dataType: "text",
  160. success: function (data) {
  161. if (data == "success") {
  162. table.reload('LAY-list-manage'); //数据刷新
  163. } else {
  164. parent.layer.msg(data);
  165. }
  166. }
  167. });
  168. }
  169. });
  170. //监听搜索
  171. form.on('submit(LAY-list-front-search)', function (data) {
  172. var field = data.field;
  173. //执行重载
  174. table.reload('LAY-list-manage', {
  175. where: field
  176. });
  177. });
  178. form.on('submit(LAY-list-front-searchall)', function (data) {
  179. table.reload('LAY-list-manage', {
  180. where: null
  181. });
  182. });
  183. //事件
  184. var active = {
  185. batchdel: function () {
  186. var checkStatus = table.checkStatus('LAY-list-manage')
  187. , data = checkStatus.data; //得到选中的数据
  188. if (data.length < 1) {
  189. parent.layer.msg("请选择要删除的项");
  190. } else {
  191. var ids = "";
  192. $.each(data, function (index, value) {
  193. ids += data[index].Id + ",";
  194. });
  195. ids = ids.substring(0, ids.length - 1);
  196. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  197. $.ajax({
  198. type: "POST",
  199. url: "/Admin/Advertisment/Delete?r=" + Math.random(1),
  200. data: "Id=" + ids,
  201. dataType: "text",
  202. success: function (data) {
  203. layer.close(index);
  204. if (data == "success") {
  205. table.reload('LAY-list-manage');
  206. } else {
  207. layer.msg(data);
  208. }
  209. }
  210. });
  211. });
  212. }
  213. }
  214. , add: function () {
  215. var perContent = layer.open({
  216. type: 2
  217. , title: '广告位-添加'
  218. , content: 'Add?CurColId=' + CurColId
  219. , maxmin: true
  220. , area: ['500px', '450px']
  221. , btn: ['确定', '取消']
  222. , yes: function (index, layero) {
  223. var iframeWindow = window['layui-layer-iframe' + index]
  224. , submitID = 'LAY-list-front-submit'
  225. , submit = layero.find('iframe').contents().find('#' + submitID);
  226. //内容
  227. iframeWindow.Contentsedit.sync();
  228. //监听提交
  229. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  230. var field = data.field; //获取提交的字段
  231. var userdata = "";
  232. for (var prop in field) {
  233. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  234. }
  235. //提交 Ajax 成功后,静态更新表格中的数据
  236. //$.ajax({});
  237. $.ajax({
  238. type: "POST",
  239. url: "/Admin/Advertisment/Add?r=" + Math.random(1),
  240. data: userdata,
  241. dataType: "text",
  242. success: function (data) {
  243. layer.close(index); //关闭弹层
  244. if (data == "success") {
  245. table.reload('LAY-list-manage'); //数据刷新
  246. } else {
  247. layer.msg(data);
  248. }
  249. }
  250. });
  251. });
  252. submit.trigger('click');
  253. }
  254. });
  255. layer.full(perContent);
  256. }
  257. , ImportData: function () {
  258. layer.open({
  259. type: 2,
  260. title: '导入',
  261. maxmin: false,
  262. area: ['460px', '180px'],
  263. content: $('#excelForm'),
  264. cancel: function () {
  265. }
  266. });
  267. }
  268. , ExportExcel: function () {
  269. var userdata = '';
  270. $(".layuiadmin-card-header-auto input").each(function (i) {
  271. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  272. });
  273. $(".layuiadmin-card-header-auto select").each(function (i) {
  274. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  275. });
  276. $.ajax({
  277. type: "GET",
  278. url: "/Admin/Advertisment/ExportExcel?r=" + Math.random(1),
  279. data: userdata,
  280. dataType: "json",
  281. success: function (data) {
  282. data.Obj.unshift(data.Fields);
  283. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  284. }
  285. });
  286. }
  287. , Open: function () {
  288. var checkStatus = table.checkStatus('LAY-list-manage')
  289. , data = checkStatus.data; //得到选中的数据
  290. if (data.length < 1) {
  291. parent.layer.msg("请选择要开启的项");
  292. } else {
  293. var ids = "";
  294. $.each(data, function (index, value) {
  295. ids += data[index].Id + ",";
  296. });
  297. ids = ids.substring(0, ids.length - 1);
  298. var index = layer.confirm('确定要开启吗?', function (index) {
  299. $.ajax({
  300. type: "POST",
  301. url: "/Admin/Advertisment/Open?r=" + Math.random(1),
  302. data: "Id=" + ids,
  303. dataType: "text",
  304. success: function (data) {
  305. layer.close(index);
  306. if (data == "success") {
  307. table.reload('LAY-list-manage');
  308. } else {
  309. layer.msg(data);
  310. }
  311. }
  312. });
  313. });
  314. }
  315. }
  316. , Close: function () {
  317. var checkStatus = table.checkStatus('LAY-list-manage')
  318. , data = checkStatus.data; //得到选中的数据
  319. if (data.length < 1) {
  320. parent.layer.msg("请选择要关闭的项");
  321. } else {
  322. var ids = "";
  323. $.each(data, function (index, value) {
  324. ids += data[index].Id + ",";
  325. });
  326. ids = ids.substring(0, ids.length - 1);
  327. var index = layer.confirm('确定要关闭吗?', function (index) {
  328. $.ajax({
  329. type: "POST",
  330. url: "/Admin/Advertisment/Close?r=" + Math.random(1),
  331. data: "Id=" + ids,
  332. dataType: "text",
  333. success: function (data) {
  334. layer.close(index);
  335. if (data == "success") {
  336. table.reload('LAY-list-manage');
  337. } else {
  338. layer.msg(data);
  339. }
  340. }
  341. });
  342. });
  343. }
  344. }
  345. };
  346. $('.layui-btn').on('click', function () {
  347. var type = $(this).data('type');
  348. active[type] ? active[type].call(this) : '';
  349. });
  350. });