ProductFareTemp_Admin.js 14 KB

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