FirstPosIndex_Admin.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/PosMerchantInfoList/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. var excel;
  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. var layCreateDate = laydate.render({
  32. elem: '#CreateDate',
  33. type: 'date',
  34. range: true,
  35. trigger: 'click',
  36. change: function (value, date, endDate) {
  37. var op = true;
  38. if (date.year == endDate.year && endDate.month - date.month <= 1) {
  39. if (endDate.month - date.month == 1 && endDate.date > date.date) {
  40. op = false;
  41. layCreateDate.hint('日期范围请不要超过1个月');
  42. setTimeout(function () {
  43. $(".laydate-btns-confirm").addClass("laydate-disabled");
  44. }, 1);
  45. }
  46. } else {
  47. op = false;
  48. layCreateDate.hint('日期范围请不要超过1个月');
  49. setTimeout(function () {
  50. $(".laydate-btns-confirm").addClass("laydate-disabled");
  51. }, 1);
  52. }
  53. if (op) {
  54. $('#CreateDate').val(value);
  55. }
  56. }
  57. });
  58. //excel导入
  59. excel = layui.excel;
  60. $('#ExcelFile').change(function (e) {
  61. var files = e.target.files;
  62. excel.importExcel(files, {}, function (data) {
  63. ExcelData = data[0].sheet1;
  64. });
  65. });
  66. //监听单元格编辑
  67. table.on('edit(LAY-list-manage)', function (obj) {
  68. var value = obj.value //得到修改后的值
  69. , data = obj.data //得到所在行所有键值
  70. , field = obj.field; //得到字段
  71. if (field == "Sort") {
  72. $.ajax({
  73. type: "POST",
  74. url: "/Admin/PosMerchantInfoList/Sort?r=" + Math.random(1),
  75. data: "Id=" + data.Id + "&Sort=" + value,
  76. dataType: "text",
  77. success: function (data) {
  78. }
  79. });
  80. }
  81. });
  82. //列表数据
  83. table.render({
  84. elem: '#LAY-list-manage'
  85. , url: '/Admin/PosMerchantInfoList/FirstPosIndexData' //模拟接口
  86. , cols: [[
  87. { type: 'checkbox', fixed: 'left' }
  88. , { field: 'PosSn', width: 200, title: '机具SN', sort: true }
  89. , { field: 'MerchantName', width: 200, title: '商户名称', sort: true }
  90. , { field: 'MerchantMobile', width: 200, title: '商户手机号', sort: true }
  91. , { field: 'MerIdcardNo', width: 200, title: '商户身份证号', sort: true }
  92. , { field: 'IsFirstName', width: 200, title: '是否首台(服务费领取)', sort: true }
  93. , { field: 'PosIsFirstName', width: 200, title: '是否首台(机具奖励发放)', sort: true }
  94. , { field: 'BindingTime', width: 200, title: '绑定时间', sort: true }
  95. , { field: 'ActivationTime', width: 200, title: '激活时间', sort: true }
  96. , { title: '操作', align: 'left', toolbar: '#table-list-tools', fixed: 'right' }
  97. ]]
  98. , where: {
  99. }
  100. , page: true
  101. , limit: 30
  102. , height: 'full-' + String($('.layui-card-header').height() + 130)
  103. , text: '对不起,加载出现异常!'
  104. , done: function (res, curr, count) {
  105. $(".layui-none").text("无数据或该机具对应商户信息不全");
  106. }
  107. });
  108. //监听工具条
  109. table.on('tool(LAY-list-manage)', function (obj) {
  110. var data = obj.data;
  111. if (obj.event === 'del') {
  112. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  113. $.ajax({
  114. type: "POST",
  115. url: "/Admin/PosMerchantInfoList/Delete?r=" + Math.random(1),
  116. data: "Id=" + data.Id,
  117. dataType: "text",
  118. success: function (data) {
  119. if (data == "success") {
  120. obj.del();
  121. layer.close(index);
  122. } else {
  123. parent.layer.msg(data);
  124. }
  125. }
  126. });
  127. });
  128. }
  129. else if (obj.event === 'SetFirstPos') {
  130. var index = layer.confirm('确定要设置为首台吗?', function (index) {
  131. $.ajax({
  132. type: "POST",
  133. url: "/Admin/PosMerchantInfoList/SetFirstPos?r=" + Math.random(1),
  134. data: "PosSn=" + data.PosSn,
  135. dataType: "text",
  136. success: function (data) {
  137. layer.close(index);
  138. if (data == "success") {
  139. layer.msg("设置成功");
  140. table.reload('LAY-list-manage');
  141. } else {
  142. layer.msg(data);
  143. }
  144. }
  145. });
  146. });
  147. }
  148. });
  149. //监听搜索
  150. form.on('submit(LAY-list-front-search)', function (data) {
  151. var field = data.field;
  152. //执行重载
  153. table.reload('LAY-list-manage', {
  154. where: field,
  155. page: {
  156. curr: 1
  157. }
  158. });
  159. });
  160. form.on('submit(LAY-list-front-searchall)', function (data) {
  161. table.reload('LAY-list-manage', {
  162. where: null,
  163. page: {
  164. curr: 1
  165. }
  166. });
  167. });
  168. //事件
  169. var active = {
  170. batchdel: function () {
  171. var checkStatus = table.checkStatus('LAY-list-manage')
  172. , data = checkStatus.data; //得到选中的数据
  173. if (data.length < 1) {
  174. parent.layer.msg("请选择要删除的项");
  175. } else {
  176. var ids = "";
  177. $.each(data, function (index, value) {
  178. ids += data[index].Id + ",";
  179. });
  180. ids = ids.substring(0, ids.length - 1);
  181. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  182. $.ajax({
  183. type: "POST",
  184. url: "/Admin/PosMerchantInfoList/Delete?r=" + Math.random(1),
  185. data: "Id=" + ids,
  186. dataType: "text",
  187. success: function (data) {
  188. layer.close(index);
  189. if (data == "success") {
  190. table.reload('LAY-list-manage');
  191. } else {
  192. layer.msg(data);
  193. }
  194. }
  195. });
  196. });
  197. }
  198. }
  199. , add: function () {
  200. var perContent = layer.open({
  201. type: 2
  202. , title: '商户-添加'
  203. , content: 'Add'
  204. , maxmin: true
  205. , area: ['500px', '450px']
  206. , btn: ['确定', '取消']
  207. , yes: function (index, layero) {
  208. var iframeWindow = window['layui-layer-iframe' + index]
  209. , submitID = 'LAY-list-front-submit'
  210. , submit = layero.find('iframe').contents().find('#' + submitID);
  211. setTimeout(function () {
  212. layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
  213. var errObj = $(this).find('.layui-form-danger');
  214. if (errObj.length > 0) {
  215. iframeWindow.element.tabChange('mytabbar', String(i + 1));
  216. submit.click();
  217. }
  218. });
  219. }, 300);
  220. //监听提交
  221. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  222. var field = data.field; //获取提交的字段
  223. var userdata = "";
  224. for (var prop in field) {
  225. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  226. }
  227. //提交 Ajax 成功后,静态更新表格中的数据
  228. //$.ajax({});
  229. $.ajax({
  230. type: "POST",
  231. url: "/Admin/PosMerchantInfoList/Add?r=" + Math.random(1),
  232. data: userdata,
  233. dataType: "text",
  234. success: function (data) {
  235. layer.close(index); //关闭弹层
  236. if (data == "success") {
  237. table.reload('LAY-list-manage'); //数据刷新
  238. } else {
  239. layer.msg(data);
  240. }
  241. }
  242. });
  243. });
  244. submit.trigger('click');
  245. }
  246. });
  247. layer.full(perContent);
  248. }
  249. , ImportData: function () {
  250. layer.open({
  251. type: 1,
  252. title: '导入',
  253. maxmin: false,
  254. area: ['460px', '180px'],
  255. content: $('#excelForm'),
  256. cancel: function () {
  257. }
  258. });
  259. }
  260. , ExportExcel: function () {
  261. var userdata = '';
  262. $(".layuiadmin-card-header-auto input").each(function (i) {
  263. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  264. });
  265. $(".layuiadmin-card-header-auto select").each(function (i) {
  266. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  267. });
  268. $.ajax({
  269. type: "GET",
  270. url: "/Admin/PosMerchantInfoList/ExportExcel?r=" + Math.random(1),
  271. data: userdata,
  272. dataType: "json",
  273. success: function (data) {
  274. data.Obj.unshift(data.Fields);
  275. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  276. }
  277. });
  278. }
  279. , Open: function () {
  280. var checkStatus = table.checkStatus('LAY-list-manage')
  281. , data = checkStatus.data; //得到选中的数据
  282. if (data.length < 1) {
  283. parent.layer.msg("请选择要开启的项");
  284. } else {
  285. var ids = "";
  286. $.each(data, function (index, value) {
  287. ids += data[index].Id + ",";
  288. });
  289. ids = ids.substring(0, ids.length - 1);
  290. var index = layer.confirm('确定要开启吗?', function (index) {
  291. $.ajax({
  292. type: "POST",
  293. url: "/Admin/PosMerchantInfoList/Open?r=" + Math.random(1),
  294. data: "Id=" + ids,
  295. dataType: "text",
  296. success: function (data) {
  297. layer.close(index);
  298. if (data == "success") {
  299. table.reload('LAY-list-manage');
  300. } else {
  301. layer.msg(data);
  302. }
  303. }
  304. });
  305. });
  306. }
  307. }
  308. , Close: function () {
  309. var checkStatus = table.checkStatus('LAY-list-manage')
  310. , data = checkStatus.data; //得到选中的数据
  311. if (data.length < 1) {
  312. parent.layer.msg("请选择要关闭的项");
  313. } else {
  314. var ids = "";
  315. $.each(data, function (index, value) {
  316. ids += data[index].Id + ",";
  317. });
  318. ids = ids.substring(0, ids.length - 1);
  319. var index = layer.confirm('确定要关闭吗?', function (index) {
  320. $.ajax({
  321. type: "POST",
  322. url: "/Admin/PosMerchantInfoList/Close?r=" + Math.random(1),
  323. data: "Id=" + ids,
  324. dataType: "text",
  325. success: function (data) {
  326. layer.close(index);
  327. if (data == "success") {
  328. table.reload('LAY-list-manage');
  329. } else {
  330. layer.msg(data);
  331. }
  332. }
  333. });
  334. });
  335. }
  336. }
  337. };
  338. $('.layui-btn').on('click', function () {
  339. var type = $(this).data('type');
  340. active[type] ? active[type].call(this) : '';
  341. });
  342. });