UserAddress_Admin.js 13 KB

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