FileUpdateInfo_Admin.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/FileUpdateInfo/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/FileUpdateInfo/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/FileUpdateInfo/IndexData' //模拟接口
  58. , cols: [[
  59. { type: 'checkbox', fixed: 'left' }
  60. , { field: 'Id', fixed: 'left', title: 'ID', width: 80, sort: true, unresize: true }
  61. , { field: 'Version', title: '更新版本', sort: true }
  62. , { field: 'Path', title: '路径', sort: true }
  63. , { field: 'FileName', title: '文件名', sort: true }
  64. , { field: 'Sort', fixed: 'right', title: '排序', width: 80, edit: 'text' }
  65. , { title: '操作', width: 250, align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
  66. ]]
  67. , page: true
  68. , limit: 10000
  69. , height: 'full-100'
  70. , text: '对不起,加载出现异常!'
  71. , done: function (res, curr, count) {
  72. $(".layui-none").text("无数据");
  73. }
  74. });
  75. //监听工具条
  76. table.on('tool(LAY-list-manage)', function (obj) {
  77. var data = obj.data;
  78. if (obj.event === 'del') {
  79. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  80. $.ajax({
  81. type: "POST",
  82. url: "/Admin/FileUpdateInfo/Delete?r=" + Math.random(1),
  83. data: "Id=" + data.Id,
  84. dataType: "text",
  85. success: function (data) {
  86. if (data == "success") {
  87. obj.del();
  88. layer.close(index);
  89. } else {
  90. parent.layer.msg(data);
  91. }
  92. }
  93. });
  94. });
  95. } else if (obj.event === 'edit') {
  96. var tr = $(obj.tr);
  97. var perContent = layer.open({
  98. type: 2
  99. , title: '资源文件更新信息-编辑'
  100. , content: 'Edit?Id=' + data.Id
  101. , maxmin: true
  102. , area: ['500px', '450px']
  103. , btn: ['确定', '取消']
  104. , yes: function (index, layero) {
  105. var iframeWindow = window['layui-layer-iframe' + index]
  106. , submitID = 'LAY-list-front-submit'
  107. , submit = layero.find('iframe').contents().find('#' + submitID);
  108. //监听提交
  109. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  110. var field = data.field; //获取提交的字段
  111. var userdata = "";
  112. for (var prop in field) {
  113. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  114. }
  115. //提交 Ajax 成功后,静态更新表格中的数据
  116. //$.ajax({});
  117. $.ajax({
  118. type: "POST",
  119. url: "/Admin/FileUpdateInfo/Edit?r=" + Math.random(1),
  120. data: userdata,
  121. dataType: "text",
  122. success: function (data) {
  123. layer.close(index); //关闭弹层
  124. if (data == "success") {
  125. table.reload('LAY-list-manage'); //数据刷新
  126. } else {
  127. layer.msg(data);
  128. }
  129. }
  130. });
  131. });
  132. submit.trigger('click');
  133. }
  134. , success: function (layero, index) {
  135. }
  136. });
  137. layer.full(perContent);
  138. } else if (obj.event === 'updateversion') {
  139. $.ajax({
  140. type: "POST",
  141. url: "/Admin/FileUpdateInfo/UpdateVersion?r=" + Math.random(1),
  142. data: "Id=" + data.Id,
  143. dataType: "text",
  144. success: function (res) {
  145. if (res == "success") {
  146. obj.update({
  147. Version: Number(data.Version) + 1,
  148. });
  149. }
  150. }
  151. });
  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/FileUpdateInfo/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. //监听提交
  211. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  212. var field = data.field; //获取提交的字段
  213. var userdata = "";
  214. for (var prop in field) {
  215. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  216. }
  217. //提交 Ajax 成功后,静态更新表格中的数据
  218. //$.ajax({});
  219. $.ajax({
  220. type: "POST",
  221. url: "/Admin/FileUpdateInfo/Add?r=" + Math.random(1),
  222. data: userdata,
  223. dataType: "text",
  224. success: function (data) {
  225. layer.close(index); //关闭弹层
  226. if (data == "success") {
  227. table.reload('LAY-list-manage'); //数据刷新
  228. } else {
  229. layer.msg(data);
  230. }
  231. }
  232. });
  233. });
  234. submit.trigger('click');
  235. }
  236. , ExportExcel: function () {
  237. var userdata = '';
  238. $(".layuiadmin-card-header-auto input").each(function (i) {
  239. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  240. });
  241. $(".layuiadmin-card-header-auto select").each(function (i) {
  242. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  243. });
  244. $.ajax({
  245. type: "GET",n () {
  246. layer.open({
  247. type: 2,
  248. title: '导入',
  249. maxmin: false,
  250. area: ['460px', '180px'],
  251. content: $('#excelForm'),
  252. cancel: function () {
  253. }
  254. });
  255. }
  256. , ExportExcel: function () {
  257. var userdata = $('#QueryForm').serialize();
  258. $.ajax({
  259. type: "POST",
  260. url: "/Admin/FileUpdateInfo/ExportExcel?r=" + Math.random(1),
  261. data: userdata,
  262. dataType: "json",
  263. success: function (data) {
  264. data.Obj.unshift(data.Fields);
  265. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  266. }
  267. });
  268. }
  269. , Open: function () {
  270. var checkStatus = table.checkStatus('LAY-list-manage')
  271. , data = checkStatus.data; //得到选中的数据
  272. if (data.length < 1) {
  273. parent.layer.msg("请选择要开启的项");
  274. } else {
  275. var ids = "";
  276. $.each(data, function (index, value) {
  277. ids += data[index].Id + ",";
  278. });
  279. ids = ids.substring(0, ids.length - 1);
  280. var index = layer.confirm('确定要开启吗?', function (index) {
  281. $.ajax({
  282. type: "POST",
  283. url: "/Admin/FileUpdateInfo/Open?r=" + Math.random(1),
  284. data: "Id=" + ids,
  285. dataType: "text",
  286. success: function (data) {
  287. layer.close(index);
  288. if (data == "success") {
  289. table.reload('LAY-list-manage');
  290. } else {
  291. layer.msg(data);
  292. }
  293. }
  294. });
  295. });
  296. }
  297. }
  298. , Close: function () {
  299. var checkStatus = table.checkStatus('LAY-list-manage')
  300. , data = checkStatus.data; //得到选中的数据
  301. if (data.length < 1) {
  302. parent.layer.msg("请选择要关闭的项");
  303. } else {
  304. var ids = "";
  305. $.each(data, function (index, value) {
  306. ids += data[index].Id + ",";
  307. });
  308. ids = ids.substring(0, ids.length - 1);
  309. var index = layer.confirm('确定要关闭吗?', function (index) {
  310. $.ajax({
  311. type: "POST",
  312. url: "/Admin/FileUpdateInfo/Close?r=" + Math.random(1),
  313. data: "Id=" + ids,
  314. dataType: "text",
  315. success: function (data) {
  316. layer.close(index);
  317. if (data == "success") {
  318. table.reload('LAY-list-manage');
  319. } else {
  320. layer.msg(data);
  321. }
  322. }
  323. });
  324. });
  325. }
  326. }
  327. , template: function () {
  328. var index = layer.load(1, {
  329. shade: [0.5, '#000']
  330. });
  331. $.ajax({
  332. type: "POST",
  333. url: "/Admin/FileUpdateInfo/UpdateFile?r=" + Math.random(1),
  334. data: "",
  335. dataType: "text",
  336. success: function (data) {
  337. layer.close(index);
  338. if (data == "success") {
  339. table.reload('LAY-list-manage');
  340. } else {
  341. layer.msg(data);
  342. }
  343. }
  344. });
  345. }
  346. };
  347. $('.layui-btn').on('click', function () {
  348. var type = $(this).data('type');
  349. active[type] ? active[type].call(this) : '';
  350. });
  351. });