ErpCompanys_Admin.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  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-220',
  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. });
  179. });
  180. form.on('submit(LAY-list-front-searchall)', function (data) {
  181. table.reload('LAY-list-manage', {
  182. where: null
  183. });
  184. });
  185. //事件
  186. var active = {
  187. batchdel: function () {
  188. var checkStatus = table.checkStatus('LAY-list-manage'),
  189. data = checkStatus.data; //得到选中的数据
  190. if (data.length < 1) {
  191. parent.layer.msg("请选择要删除的项");
  192. } else {
  193. var ids = "";
  194. $.each(data, function (index, value) {
  195. ids += data[index].Id + ",";
  196. });
  197. ids = ids.substring(0, ids.length - 1);
  198. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  199. $.ajax({
  200. type: "POST",
  201. url: "/Admin/ErpCompanys/Delete?r=" + Math.random(1),
  202. data: "Id=" + ids,
  203. dataType: "text",
  204. success: function (data) {
  205. layer.close(index);
  206. if (data == "success") {
  207. table.reload('LAY-list-manage');
  208. } else {
  209. layer.msg(data);
  210. }
  211. }
  212. });
  213. });
  214. }
  215. },
  216. add: function () {
  217. var perContent = layer.open({
  218. type: 2,
  219. title: '快递公司-添加',
  220. content: 'Add',
  221. maxmin: true,
  222. area: ['500px', '450px'],
  223. btn: ['确定', '取消'],
  224. yes: function (index, layero) {
  225. var iframeWindow = window['layui-layer-iframe' + index],
  226. submitID = 'LAY-list-front-submit',
  227. submit = layero.find('iframe').contents().find('#' + submitID);
  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/ErpCompanys/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. ExportExcel: function () {
  268. var userdata = $('#QueryForm').serialize();
  269. $.ajax({
  270. type: "POST",
  271. url: "/Admin/ErpCompanys/ExportExcel?r=" + Math.random(1),
  272. data: userdata,
  273. dataType: "json",
  274. success: function (data) {
  275. data.Obj.unshift(data.Fields);
  276. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  277. }
  278. });
  279. },
  280. Open: function () {
  281. var checkStatus = table.checkStatus('LAY-list-manage'),
  282. data = checkStatus.data; //得到选中的数据
  283. if (data.length < 1) {
  284. parent.layer.msg("请选择要开启的项");
  285. } else {
  286. var ids = "";
  287. $.each(data, function (index, value) {
  288. ids += data[index].Id + ",";
  289. });
  290. ids = ids.substring(0, ids.length - 1);
  291. var index = layer.confirm('确定要开启吗?', function (index) {
  292. $.ajax({
  293. type: "POST",
  294. url: "/Admin/ErpCompanys/Open?r=" + Math.random(1),
  295. data: "Id=" + ids,
  296. dataType: "text",
  297. success: function (data) {
  298. layer.close(index);
  299. if (data == "success") {
  300. table.reload('LAY-list-manage');
  301. } else {
  302. layer.msg(data);
  303. }
  304. }
  305. });
  306. });
  307. }
  308. },
  309. Close: function () {
  310. var checkStatus = table.checkStatus('LAY-list-manage'),
  311. data = checkStatus.data; //得到选中的数据
  312. if (data.length < 1) {
  313. parent.layer.msg("请选择要关闭的项");
  314. } else {
  315. var ids = "";
  316. $.each(data, function (index, value) {
  317. ids += data[index].Id + ",";
  318. });
  319. ids = ids.substring(0, ids.length - 1);
  320. var index = layer.confirm('确定要关闭吗?', function (index) {
  321. $.ajax({
  322. type: "POST",
  323. url: "/Admin/ErpCompanys/Close?r=" + Math.random(1),
  324. data: "Id=" + ids,
  325. dataType: "text",
  326. success: function (data) {
  327. layer.close(index);
  328. if (data == "success") {
  329. table.reload('LAY-list-manage');
  330. } else {
  331. layer.msg(data);
  332. }
  333. }
  334. });
  335. });
  336. }
  337. }
  338. };
  339. $('.layui-btn').on('click', function () {
  340. var type = $(this).data('type');
  341. active[type] ? active[type].call(this) : '';
  342. });
  343. });