ProfitObjectLevelKinds_Admin.js 14 KB

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