Merchants_Admin.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. var ExcelData;
  2. function ConfirmImport() {
  3. $.ajax({
  4. type: "POST",
  5. url: "/Admin/Merchants/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/Merchants/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/Merchants/IndexData' //模拟接口
  58. , cols: [[
  59. { type: 'checkbox', fixed: 'left' }
  60. , { field: 'Id', fixed: 'left', title: 'ID', width: 80, sort: true, unresize: true }
  61. , { field: 'Name', width: 200, title: '名称', sort: true }
  62. , { field: 'Logo', width: 200, title: 'Logo图片', width: 60, templet: '#imgTpl', unresize: true }
  63. , { field: 'Areas', width: 200, title: '所在地区', sort: true }
  64. , { field: 'Principal', width: 200, title: '负责人', sort: true }
  65. , { field: 'Phone', width: 200, title: '联系电话', sort: true }
  66. , { field: 'BusinessLicense', width: 200, title: '营业执照', width: 60, templet: '#imgTpl', unresize: true }
  67. , { field: 'StarNum1', width: 200, title: '快递包装评分', sort: true }
  68. , { field: 'FollowCount', width: 200, title: '关注数', sort: true }
  69. , { field: 'IsAuth', width: 200, title: '是否认证', sort: true }
  70. , { field: 'CommentCount', width: 200, title: '评论数', sort: true }
  71. , { field: 'Address', width: 200, title: '详细地址', sort: true }
  72. , { field: 'StarNum2', width: 200, title: '送货速度评分', sort: true }
  73. , { field: 'StarNum3', width: 200, title: '服务态度评分', sort: true }
  74. , { field: 'Sort', fixed: 'right', title: '排序', width: 80, edit: 'text' }
  75. , { title: '操作', width: 350, align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
  76. ]]
  77. , page: true
  78. , limit: 30
  79. , height: 'full-' + String($('.layui-card-header').height() + 130)
  80. , text: '对不起,加载出现异常!'
  81. , done: function (res, curr, count) {
  82. $(".layui-none").text("无数据");
  83. }
  84. });
  85. //监听工具条
  86. table.on('tool(LAY-list-manage)', function (obj) {
  87. var data = obj.data;
  88. if (obj.event === 'del') {
  89. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  90. $.ajax({
  91. type: "POST",
  92. url: "/Admin/Merchants/Delete?r=" + Math.random(1),
  93. data: "Id=" + data.Id,
  94. dataType: "text",
  95. success: function (data) {
  96. if (data == "success") {
  97. obj.del();
  98. layer.close(index);
  99. } else {
  100. parent.layer.msg(data);
  101. }
  102. }
  103. });
  104. });
  105. } else if (obj.event === 'edit') {
  106. var tr = $(obj.tr);
  107. var perContent = layer.open({
  108. type: 2
  109. , title: '商家-编辑'
  110. , content: 'Edit?Id=' + data.Id
  111. , maxmin: true
  112. , area: ['500px', '450px']
  113. , btn: ['确定', '取消']
  114. , yes: function (index, layero) {
  115. var iframeWindow = window['layui-layer-iframe' + index]
  116. , submitID = 'LAY-list-front-submit'
  117. , submit = layero.find('iframe').contents().find('#' + submitID);
  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/Merchants/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. page: {
  157. curr: 1
  158. }
  159. });
  160. });
  161. form.on('submit(LAY-list-front-searchall)', function (data) {
  162. table.reload('LAY-list-manage', {
  163. where: null,
  164. page: {
  165. curr: 1
  166. }
  167. });
  168. });
  169. //事件
  170. var active = {
  171. batchdel: function () {
  172. var checkStatus = table.checkStatus('LAY-list-manage')
  173. , data = checkStatus.data; //得到选中的数据
  174. if (data.length < 1) {
  175. parent.layer.msg("请选择要删除的项");
  176. } else {
  177. var ids = "";
  178. $.each(data, function (index, value) {
  179. ids += data[index].Id + ",";
  180. });
  181. ids = ids.substring(0, ids.length - 1);
  182. var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
  183. $.ajax({
  184. type: "POST",
  185. url: "/Admin/Merchants/Delete?r=" + Math.random(1),
  186. data: "Id=" + ids,
  187. dataType: "text",
  188. success: function (data) {
  189. layer.close(index);
  190. if (data == "success") {
  191. table.reload('LAY-list-manage');
  192. } else {
  193. layer.msg(data);
  194. }
  195. }
  196. });
  197. });
  198. }
  199. }
  200. , add: function () {
  201. var perContent = layer.open({
  202. type: 2
  203. , title: '商家-添加'
  204. , content: 'Add'
  205. , maxmin: true
  206. , area: ['500px', '450px']
  207. , btn: ['确定', '取消']
  208. , yes: function (index, layero) {
  209. var iframeWindow = window['layui-layer-iframe' + index]
  210. , submitID = 'LAY-list-front-submit'
  211. , submit = layero.find('iframe').contents().find('#' + submitID);
  212. //监听提交
  213. iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
  214. var field = data.field; //获取提交的字段
  215. var userdata = "";
  216. for (var prop in field) {
  217. userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
  218. }
  219. //提交 Ajax 成功后,静态更新表格中的数据
  220. //$.ajax({});
  221. $.ajax({
  222. type: "POST",
  223. url: "/Admin/Merchants/Add?r=" + Math.random(1),
  224. data: userdata,
  225. dataType: "text",
  226. success: function (data) {
  227. layer.close(index); //关闭弹层
  228. if (data == "success") {
  229. table.reload('LAY-list-manage'); //数据刷新
  230. } else {
  231. layer.msg(data);
  232. }
  233. }
  234. });
  235. });
  236. submit.trigger('click');
  237. }
  238. });
  239. layer.full(perContent);
  240. }
  241. , ImportData: function () {
  242. layer.open({
  243. type: 2,
  244. title: '导入',
  245. maxmin: false,
  246. area: ['460px', '180px'],
  247. content: $('#excelForm'),
  248. cancel: function () {
  249. }
  250. });
  251. }
  252. , ExportExcel: function () {
  253. var userdata = '';
  254. $(".layuiadmin-card-header-auto input").each(function (i) {
  255. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  256. });
  257. $(".layuiadmin-card-header-auto select").each(function (i) {
  258. userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
  259. });
  260. $.ajax({
  261. type: "GET",
  262. url: "/Admin/Merchants/ExportExcel?r=" + Math.random(1),
  263. data: userdata,
  264. dataType: "json",
  265. success: function (data) {
  266. data.Obj.unshift(data.Fields);
  267. excel.exportExcel(data.Obj, data.Info, 'xlsx');
  268. }
  269. });
  270. }
  271. , Open: function () {
  272. var checkStatus = table.checkStatus('LAY-list-manage')
  273. , data = checkStatus.data; //得到选中的数据
  274. if (data.length < 1) {
  275. parent.layer.msg("请选择要开启的项");
  276. } else {
  277. var ids = "";
  278. $.each(data, function (index, value) {
  279. ids += data[index].Id + ",";
  280. });
  281. ids = ids.substring(0, ids.length - 1);
  282. var index = layer.confirm('确定要开启吗?', function (index) {
  283. $.ajax({
  284. type: "POST",
  285. url: "/Admin/Merchants/Open?r=" + Math.random(1),
  286. data: "Id=" + ids,
  287. dataType: "text",
  288. success: function (data) {
  289. layer.close(index);
  290. if (data == "success") {
  291. table.reload('LAY-list-manage');
  292. } else {
  293. layer.msg(data);
  294. }
  295. }
  296. });
  297. });
  298. }
  299. }
  300. , Close: function () {
  301. var checkStatus = table.checkStatus('LAY-list-manage')
  302. , data = checkStatus.data; //得到选中的数据
  303. if (data.length < 1) {
  304. parent.layer.msg("请选择要关闭的项");
  305. } else {
  306. var ids = "";
  307. $.each(data, function (index, value) {
  308. ids += data[index].Id + ",";
  309. });
  310. ids = ids.substring(0, ids.length - 1);
  311. var index = layer.confirm('确定要关闭吗?', function (index) {
  312. $.ajax({
  313. type: "POST",
  314. url: "/Admin/Merchants/Close?r=" + Math.random(1),
  315. data: "Id=" + ids,
  316. dataType: "text",
  317. success: function (data) {
  318. layer.close(index);
  319. if (data == "success") {
  320. table.reload('LAY-list-manage');
  321. } else {
  322. layer.msg(data);
  323. }
  324. }
  325. });
  326. });
  327. }
  328. }
  329. };
  330. $('.layui-btn').on('click', function () {
  331. var type = $(this).data('type');
  332. active[type] ? active[type].call(this) : '';
  333. });
  334. });