ErpCompanys_Admin.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/ErpCompanys/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("导入成功", {
  11. time: 2000
  12. }, function () {
  13. window.location.reload();
  14. });
  15. } else {
  16. layer.msg(data);
  17. }
  18. }
  19. });
  20. }
  21. layui.config({
  22. base: '/layuiadmin/' //静态资源所在路径
  23. }).extend({
  24. myexcel: 'layui/lay/modules/excel',
  25. index: 'lib/index' //主入口模块
  26. }).use(['index', 'table', 'excel', 'laydate'], function () {
  27. var $ = layui.$,
  28. form = layui.form,
  29. table = layui.table;
  30. //- 筛选条件-日期
  31. var laydate = layui.laydate;
  32. //excel导入
  33. var excel = layui.excel;
  34. $('#ExcelFile').change(function (e) {
  35. var files = e.target.files;
  36. excel.importExcel(files, {}, function (data) {
  37. ExcelData = data[0].Sheet1;
  38. });
  39. });
  40. //监听单元格编辑
  41. table.on('edit(LAY-list-manage)', function (obj) {
  42. var value = obj.value //得到修改后的值
  43. ,
  44. data = obj.data //得到所在行所有键值
  45. ,
  46. field = obj.field; //得到字段
  47. if (field == "Sort") {
  48. $.ajax({
  49. type: "POST",
  50. url: "/Admin/ErpCompanys/Sort?r=" + Math.random(1),
  51. data: "Id=" + data.Id + "&Sort=" + value,
  52. dataType: "text",
  53. success: function (data) {}
  54. });
  55. }
  56. });
  57. //列表数据
  58. table.render({
  59. elem: '#LAY-list-manage',
  60. url: '/Admin/ErpCompanys/IndexData' //模拟接口
  61. ,
  62. cols: [
  63. [{
  64. type: 'checkbox',
  65. fixed: 'left'
  66. }, {
  67. field: 'Id',
  68. fixed: 'left',
  69. title: 'ID',
  70. width: 80,
  71. sort: true,
  72. unresize: true
  73. }, {
  74. field: 'Name',
  75. title: '名称',
  76. sort: true
  77. }, {
  78. field: 'Code',
  79. title: '编码',
  80. sort: true
  81. }, {
  82. field: 'Phone',
  83. title: '客服电话',
  84. sort: true
  85. }, {
  86. field: 'Sort',
  87. fixed: 'right',
  88. title: '排序',
  89. width: 80,
  90. edit: 'text'
  91. }, {
  92. title: '操作',
  93. width: 150,
  94. align: 'center',
  95. fixed: 'right',
  96. toolbar: '#table-list-tools'
  97. }]
  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/ErpCompanys/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: true,
  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. //监听提交
  141. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  142. var field = data.field; //获取提交的字段
  143. var userdata = "";
  144. for (var prop in field) {
  145. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  146. }
  147. //提交 Ajax 成功后,静态更新表格中的数据
  148. //$.ajax({});
  149. $.ajax({
  150. type: "POST",
  151. url: "/Admin/ErpCompanys/Edit?r=" + Math.random(1),
  152. data: userdata,
  153. dataType: "text",
  154. success: function (data) {
  155. layer.close(index); //关闭弹层
  156. if (data == "success") {
  157. table.reload('LAY-list-manage'); //数据刷新
  158. } else {
  159. layer.msg(data);
  160. }
  161. }
  162. });
  163. });
  164. submit.trigger('click');
  165. },
  166. success: function (layero, index) {
  167. }
  168. });
  169. layer.full(perContent);
  170. }
  171. });
  172. //监听搜索
  173. form.on('submit(LAY-list-front-search)', function (data) {
  174. var field = data.field;
  175. //执行重载
  176. table.reload('LAY-list-manage', {
  177. where: field,
  178. page: {
  179. curr: 1
  180. }
  181. });
  182. });
  183. form.on('submit(LAY-list-front-searchall)', function (data) {
  184. table.reload('LAY-list-manage', {
  185. where: null,
  186. page: {
  187. curr: 1
  188. }
  189. });
  190. });
  191. //事件
  192. var active = {
  193. batchdel: function () {
  194. var checkStatus = table.checkStatus('LAY-list-manage'),
  195. data = checkStatus.data; //得到选中的数据
  196. if (data.length < 1) {
  197. parent.layer.msg("请选择要删除的项");
  198. } else {
  199. var ids = "";
  200. $.each(data, function (index, value) {
  201. ids += data[index].Id + ",";
  202. });
  203. ids = ids.substring(0, ids.length - 1);
  204. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  205. $.ajax({
  206. type: "POST",
  207. url: "/Admin/ErpCompanys/Delete?r=" + Math.random(1),
  208. data: "Id=" + ids,
  209. dataType: "text",
  210. success: function (data) {
  211. layer.close(index);
  212. if (data == "success") {
  213. table.reload('LAY-list-manage');
  214. } else {
  215. layer.msg(data);
  216. }
  217. }
  218. });
  219. });
  220. }
  221. },
  222. add: function () {
  223. var perContent = layer.open({
  224. type: 2,
  225. title: '快递公司-添加',
  226. content: 'Add',
  227. maxmin: true,
  228. area: ['500px', '450px'],
  229. btn: ['确定', '取消'],
  230. yes: function (index, layero) {
  231. var iframeWindow = window['layui-layer-iframe' + index],
  232. submitID = 'LAY-list-front-submit',
  233. submit = layero.find('iframe').contents().find('#' + submitID);
  234. //监听提交
  235. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  236. var field = data.field; //获取提交的字段
  237. var userdata = "";
  238. for (var prop in field) {
  239. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  240. }
  241. //提交 Ajax 成功后,静态更新表格中的数据
  242. //$.ajax({});
  243. $.ajax({
  244. type: "POST",
  245. url: "/Admin/ErpCompanys/Add?r=" + Math.random(1),
  246. data: userdata,
  247. dataType: "text",
  248. success: function (data) {
  249. layer.close(index); //关闭弹层
  250. if (data == "success") {
  251. table.reload('LAY-list-manage'); //数据刷新
  252. } else {
  253. layer.msg(data);
  254. }
  255. }
  256. });
  257. });
  258. submit.trigger('click');
  259. }
  260. });
  261. layer.full(perContent);
  262. },
  263. ImportData: function () {
  264. layer.open({
  265. type: 2,
  266. title: '导入',
  267. maxmin: false,
  268. area: ['460px', '180px'],
  269. content: $('#excelForm'),
  270. cancel: function () {}
  271. });
  272. },
  273. ExportExcel: function () {
  274. var userdata = $('#QueryForm').serialize();
  275. $.ajax({
  276. type: "POST",
  277. url: "/Admin/ErpCompanys/ExportExcel?r=" + Math.random(1),
  278. data: userdata,
  279. dataType: "json",
  280. success: function (data) {
  281. data.Obj.unshift(data.Fields);
  282. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  283. }
  284. });
  285. },
  286. Open: function () {
  287. var checkStatus = table.checkStatus('LAY-list-manage'),
  288. data = checkStatus.data; //得到选中的数据
  289. if (data.length < 1) {
  290. parent.layer.msg("请选择要开启的项");
  291. } else {
  292. var ids = "";
  293. $.each(data, function (index, value) {
  294. ids += data[index].Id + ",";
  295. });
  296. ids = ids.substring(0, ids.length - 1);
  297. var index = layer.confirm('确定要开启吗?', function (index) {
  298. $.ajax({
  299. type: "POST",
  300. url: "/Admin/ErpCompanys/Open?r=" + Math.random(1),
  301. data: "Id=" + ids,
  302. dataType: "text",
  303. success: function (data) {
  304. layer.close(index);
  305. if (data == "success") {
  306. table.reload('LAY-list-manage');
  307. } else {
  308. layer.msg(data);
  309. }
  310. }
  311. });
  312. });
  313. }
  314. },
  315. Close: function () {
  316. var checkStatus = table.checkStatus('LAY-list-manage'),
  317. data = checkStatus.data; //得到选中的数据
  318. if (data.length < 1) {
  319. parent.layer.msg("请选择要关闭的项");
  320. } else {
  321. var ids = "";
  322. $.each(data, function (index, value) {
  323. ids += data[index].Id + ",";
  324. });
  325. ids = ids.substring(0, ids.length - 1);
  326. var index = layer.confirm('确定要关闭吗?', function (index) {
  327. $.ajax({
  328. type: "POST",
  329. url: "/Admin/ErpCompanys/Close?r=" + Math.random(1),
  330. data: "Id=" + ids,
  331. dataType: "text",
  332. success: function (data) {
  333. layer.close(index);
  334. if (data == "success") {
  335. table.reload('LAY-list-manage');
  336. } else {
  337. layer.msg(data);
  338. }
  339. }
  340. });
  341. });
  342. }
  343. }
  344. };
  345. $('.layui-btn').on('click', function () {
  346. var type = $(this).data('type');
  347. active[type] ? active[type].call(this) : '';
  348. });
  349. });