ProductNormItem_Admin.js 13 KB

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