OrderProduct_Admin.js 14 KB

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