BankInfo_Admin.js 15 KB

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