MerchantCol_Admin.js 15 KB

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