AppBottomNavs_Admin.js 16 KB

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