PublicAccountSet_Admin.js 13 KB

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