ProductNorm_Admin.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. var clickFlag = true;
  2. var ExcelData;
  3. function ConfirmImport() {
  4. $.ajax({
  5. type: "POST",
  6. url: "/Admin/ProductNorm/Import?r=" + Math.random(1),
  7. data: "ExcelData=" + encodeURIComponent(JSON.stringify(ExcelData)),
  8. dataType: "text",
  9. success: function (data) {
  10. if (data == "success") {
  11. layer.msg("导入成功", { time: 2000 }, function () {
  12. window.location.reload();
  13. });
  14. } else {
  15. layer.msg(data);
  16. }
  17. }
  18. });
  19. }
  20. layui.config({
  21. base: '/layuiadmin/' //静态资源所在路径
  22. }).extend({
  23. myexcel: 'layui/lay/modules/excel',
  24. index: 'lib/index' //主入口模块
  25. }).use(['index', 'table', 'excel', 'laydate'], function () {
  26. var $ = layui.$
  27. , form = layui.form
  28. , table = layui.table;
  29. //- 筛选条件-日期
  30. var laydate = layui.laydate;
  31. //excel导入
  32. var excel = layui.excel;
  33. $('#ExcelFile').change(function (e) {
  34. var files = e.target.files;
  35. excel.importExcel(files, {}, function (data) {
  36. ExcelData = data[0].Sheet1;
  37. });
  38. });
  39. //监听单元格编辑
  40. table.on('edit(LAY-list-manage)', function (obj) {
  41. var value = obj.value //得到修改后的值
  42. , data = obj.data //得到所在行所有键值
  43. , field = obj.field; //得到字段
  44. if (field == "Sort") {
  45. $.ajax({
  46. type: "POST",
  47. url: "/Admin/ProductNorm/Sort?r=" + Math.random(1),
  48. data: "Id=" + data.Id + "&Sort=" + value,
  49. dataType: "text",
  50. success: function (data) {
  51. }
  52. });
  53. }
  54. });
  55. //列表数据
  56. table.render({
  57. elem: '#LAY-list-manage'
  58. , url: '/Admin/ProductNorm/IndexData' //模拟接口
  59. , cols: [[
  60. { type: 'checkbox', fixed: 'left' }
  61. , { field: 'Id', fixed: 'left', title: 'ID', width: 80, sort: true, unresize: true }
  62. , { field: 'ColName', width: 200, title: '名称', sort: true }
  63. , { field: 'Price', width: 200, title: '价格', sort: true }
  64. , { field: 'Integral', width: 200, title: '抵扣积分', sort: true }
  65. , { field: 'UserPrice', width: 200, title: '创客价', sort: true }
  66. , { field: 'UserIntegral', width: 200, title: '创客抵扣积分', sort: true }
  67. , { field: 'Stock', width: 200, title: '库存', sort: true }
  68. , { field: 'BuyCount', width: 200, title: '已购买数', sort: true }
  69. , { field: 'Code', width: 200, title: '编码', sort: true }
  70. // , { field: 'StartBuyCount', width: 200, title: '起购数量', sort: true }
  71. , { field: 'LimitCount', width: 200, title: '限购数量', sort: true }
  72. , { field: 'Sort', fixed: 'right', title: '排序', width: 80, edit: 'text' }
  73. , { title: '操作', width: 150, align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
  74. ]]
  75. , page: true
  76. , limit: 30
  77. , height: 'full-' + String($('.layui-card-header').height() + 130)
  78. , text: '对不起,加载出现异常!'
  79. , done: function (res, curr, count) {
  80. $(".layui-none").text("无数据");
  81. }
  82. });
  83. //监听工具条
  84. table.on('tool(LAY-list-manage)', function (obj) {
  85. var data = obj.data;
  86. if (obj.event === 'del') {
  87. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  88. $.ajax({
  89. type: "POST",
  90. url: "/Admin/ProductNorm/Delete?r=" + Math.random(1),
  91. data: "Id=" + data.Id,
  92. dataType: "text",
  93. success: function (data) {
  94. if (data == "success") {
  95. obj.del();
  96. layer.close(index);
  97. } else {
  98. parent.layer.msg(data);
  99. }
  100. }
  101. });
  102. });
  103. } else if (obj.event === 'edit') {
  104. var tr = $(obj.tr);
  105. var perContent = layer.open({
  106. type: 2
  107. , title: '商品规格-编辑'
  108. , content: 'Edit?Id=' + data.Id
  109. , maxmin: true
  110. , area: ['500px', '450px']
  111. , btn: ['确定', '取消']
  112. , yes: function (index, layero) {
  113. var iframeWindow = window['layui-layer-iframe' + index]
  114. , submitID = 'LAY-list-front-submit'
  115. , submit = layero.find('iframe').contents().find('#' + submitID);
  116. //监听提交
  117. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  118. if (clickFlag) {
  119. clickFlag = false;
  120. var field = data.field; //获取提交的字段
  121. var userdata = "";
  122. for (var prop in field) {
  123. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  124. }
  125. //提交 Ajax 成功后,静态更新表格中的数据
  126. //$.ajax({});
  127. $.ajax({
  128. type: "POST",
  129. url: "/Admin/ProductNorm/Edit?r=" + Math.random(1),
  130. data: userdata,
  131. dataType: "text",
  132. success: function (data) {
  133. clickFlag = true;
  134. layer.close(index); //关闭弹层
  135. if (data == "success") {
  136. table.reload('LAY-list-manage'); //数据刷新
  137. } else {
  138. layer.msg(data);
  139. }
  140. }
  141. });
  142. }
  143. });
  144. submit.trigger('click');
  145. }
  146. , success: function (layero, index) {
  147. }
  148. });
  149. layer.full(perContent);
  150. }
  151. });
  152. //监听搜索
  153. form.on('submit(LAY-list-front-search)', function (data) {
  154. var field = data.field;
  155. //执行重载
  156. table.reload('LAY-list-manage', {
  157. where: field,
  158. page: {
  159. curr: 1
  160. }
  161. });
  162. });
  163. form.on('submit(LAY-list-front-searchall)', function (data) {
  164. table.reload('LAY-list-manage', {
  165. where: null,
  166. page: {
  167. curr: 1
  168. }
  169. });
  170. });
  171. //事件
  172. var active = {
  173. batchdel: function () {
  174. var checkStatus = table.checkStatus('LAY-list-manage')
  175. , data = checkStatus.data; //得到选中的数据
  176. if (data.length < 1) {
  177. parent.layer.msg("请选择要删除的项");
  178. } else {
  179. var ids = "";
  180. $.each(data, function (index, value) {
  181. ids += data[index].Id + ",";
  182. });
  183. ids = ids.substring(0, ids.length - 1);
  184. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  185. $.ajax({
  186. type: "POST",
  187. url: "/Admin/ProductNorm/Delete?r=" + Math.random(1),
  188. data: "Id=" + ids,
  189. dataType: "text",
  190. success: function (data) {
  191. layer.close(index);
  192. if (data == "success") {
  193. table.reload('LAY-list-manage');
  194. } else {
  195. layer.msg(data);
  196. }
  197. }
  198. });
  199. });
  200. }
  201. }
  202. , add: function () {
  203. var perContent = layer.open({
  204. type: 2
  205. , title: '商品规格-添加'
  206. , content: 'Add'
  207. , maxmin: true
  208. , area: ['500px', '450px']
  209. , btn: ['确定', '取消']
  210. , yes: function (index, layero) {
  211. var iframeWindow = window['layui-layer-iframe' + index]
  212. , submitID = 'LAY-list-front-submit'
  213. , submit = layero.find('iframe').contents().find('#' + submitID);
  214. //监听提交
  215. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  216. if (clickFlag) {
  217. clickFlag = false;
  218. var field = data.field; //获取提交的字段
  219. var userdata = "";
  220. for (var prop in field) {
  221. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  222. }
  223. //提交 Ajax 成功后,静态更新表格中的数据
  224. //$.ajax({});
  225. $.ajax({
  226. type: "POST",
  227. url: "/Admin/ProductNorm/Add?r=" + Math.random(1),
  228. data: userdata,
  229. dataType: "text",
  230. success: function (data) {
  231. clickFlag = true;
  232. layer.close(index); //关闭弹层
  233. if (data == "success") {
  234. table.reload('LAY-list-manage'); //数据刷新
  235. } else {
  236. layer.msg(data);
  237. }
  238. }
  239. });
  240. }
  241. });
  242. submit.trigger('click');
  243. }
  244. });
  245. layer.full(perContent);
  246. }
  247. , ImportData: function () {
  248. layer.open({
  249. type: 2,
  250. title: '导入',
  251. maxmin: false,
  252. area: ['460px', '180px'],
  253. content: $('#excelForm'),
  254. cancel: function () {
  255. }
  256. });
  257. }
  258. , ExportExcel: function () {
  259. var userdata = '';
  260. $(".layuiadmin-card-header-auto input").each(function (i) {
  261. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  262. });
  263. $(".layuiadmin-card-header-auto select").each(function (i) {
  264. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  265. });
  266. $.ajax({
  267. type: "GET",
  268. url: "/Admin/ProductNorm/ExportExcel?r=" + Math.random(1),
  269. data: userdata,
  270. dataType: "json",
  271. success: function (data) {
  272. data.Obj.unshift(data.Fields);
  273. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  274. }
  275. });
  276. }
  277. , Open: function () {
  278. var checkStatus = table.checkStatus('LAY-list-manage')
  279. , data = checkStatus.data; //得到选中的数据
  280. if (data.length < 1) {
  281. parent.layer.msg("请选择要开启的项");
  282. } else {
  283. var ids = "";
  284. $.each(data, function (index, value) {
  285. ids += data[index].Id + ",";
  286. });
  287. ids = ids.substring(0, ids.length - 1);
  288. var index = layer.confirm('确定要开启吗?', function (index) {
  289. $.ajax({
  290. type: "POST",
  291. url: "/Admin/ProductNorm/Open?r=" + Math.random(1),
  292. data: "Id=" + ids,
  293. dataType: "text",
  294. success: function (data) {
  295. layer.close(index);
  296. if (data == "success") {
  297. table.reload('LAY-list-manage');
  298. } else {
  299. layer.msg(data);
  300. }
  301. }
  302. });
  303. });
  304. }
  305. }
  306. , Close: 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/ProductNorm/Close?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. };
  336. $('.layui-btn').on('click', function () {
  337. var type = $(this).data('type');
  338. active[type] ? active[type].call(this) : '';
  339. });
  340. });