截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

function.js 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. var lock = {};
  2. var load = {};
  3. var like = {
  4. ajax: function (json) {
  5. var load_index = null;
  6. if (json.beforeSend === undefined) {
  7. if (lock[json.url.replace("/", "_")] !== undefined) {
  8. return
  9. }
  10. lock[json.url.replace("/", "_")] = true;
  11. json.beforeSend = function () {
  12. load[json.url.replace("/", "_")] = setTimeout(function () {
  13. load_index = layer.load(1, {shade: [0.1, "#fff"]})
  14. }, 1500)
  15. }
  16. }
  17. if (json.error === undefined) {
  18. json.error = function (res) {
  19. layer.msg("网络错误", {offset: "240px", icon: 2, time: 1500}, function () {
  20. return
  21. })
  22. }
  23. }
  24. if (json.timeout === undefined) {
  25. json.timeout = 30000
  26. }
  27. if (json.type === undefined) {
  28. json.type = "get"
  29. }
  30. json.complete = function (xhr, status) {
  31. delete lock[json.url.replace("/", "_")];
  32. if (status == "timeout") {
  33. layer.msg("请求超时,请重试", {offset: "240px", icon: 2, time: 1500}, function () {
  34. if (load_index !== undefined) {
  35. layer.close(load_index)
  36. }
  37. return
  38. });
  39. return
  40. }
  41. clearTimeout(load[json.url.replace("/", "_")]);
  42. if (load_index !== undefined) {
  43. layer.close(load_index)
  44. }
  45. res = xhr.responseJSON;
  46. if (res !== undefined && res.code == -1) {
  47. window.location.href = window.location.href
  48. }
  49. if (res !== undefined && res.code == 0 && res.show == 1) {
  50. layer.msg(res.msg, {offset: "240px", icon: 2, time: 1500}, function () {
  51. return;
  52. })
  53. }
  54. };
  55. $.ajax(json);
  56. },
  57. tableLists: function (elem, url, cols, where,page = true) {
  58. where = where === undefined ? {} : where;
  59. page = page === undefined ? true : page;
  60. layui.use(['table'], function () {
  61. var table = layui.table;
  62. table.render({
  63. elem: elem
  64. , url: url
  65. , cols: [cols]
  66. , where: where
  67. , text: {none: '暂无相关数据'}
  68. , response: {
  69. statusCode: 1
  70. }
  71. , page: page
  72. , parseData: function (res) {
  73. return {
  74. "code": res.code,
  75. "msg": res.msg,
  76. "count": res.data.count,
  77. "data": res.data.lists
  78. };
  79. }
  80. , done: function () {
  81. setTimeout(function () {
  82. $(".layui-table-main tr").each(function (index, val) {
  83. $($(".layui-table-fixed-l .layui-table-body tbody tr")[index]).height($(val).height());
  84. $($(".layui-table-fixed-r .layui-table-body tbody tr")[index]).height($(val).height());
  85. });
  86. }, 200);
  87. }
  88. });
  89. });
  90. },
  91. keyUpClick: function (elem, target) {
  92. $(elem).keyup(function (event) {
  93. if (event.keyCode === 13) {
  94. $(target).trigger('click');
  95. }
  96. });
  97. },
  98. eventClick: function (active) {
  99. $(document).on("click", ".layEvent", function () {
  100. var type = $(this).attr("lay-event");
  101. var obj = $(this).attr("lay-data");
  102. active[type] ? active[type].call(this, obj) : "";
  103. });
  104. layui.use(["table"], function () {
  105. layui.table.on("tool(like-table-lists)", function(obj){
  106. var type = obj.event;
  107. active[type] ? active[type].call(this, obj) : "";
  108. });
  109. });
  110. },
  111. setSelect: function (defaultId, data, targetName, optionName) {
  112. layui.use(['form'], function () {
  113. var form = layui.form;
  114. var selectHtml = '<option value="">请选择'+optionName+'</option>';
  115. for (var i in data) {
  116. selectHtml += '<option value="' + data[i]['id'] + '">' + data[i]['name'] + '</option>';
  117. }
  118. $('select[name=' + targetName + ']').html(selectHtml);
  119. $('select[name=' + targetName + ']').val(defaultId);
  120. form.render('select');
  121. });
  122. },
  123. /**
  124. * 上传图片
  125. * @author fzr
  126. * @param options
  127. */
  128. imageUpload: function (options) {
  129. var that = options.that;
  130. var limit = options.limit || 1;
  131. var field = options.field || "image";
  132. var content = options.content || '/cY0aK2sG/file/lists?type=10&&shop_id=0';
  133. var isSpecImage = options.isSpecImage || false;
  134. parent.layer.open({
  135. type: 2
  136. ,title: "上传图片"
  137. ,shadeClose: true
  138. ,maxmin: true
  139. ,anim: 1
  140. ,shade: 0.3
  141. ,area: ["90%", "90%"]
  142. ,content: content,
  143. success: function (layero, index) {
  144. var iframeNode = $(layero).find("iframe").contents();
  145. iframeNode.find("#okFile").click(function () {
  146. var fileUrls = iframeNode.find("#fileUrl").val();
  147. var urls = fileUrls.split(',');
  148. if (urls.length <= 0) {
  149. parent.layer.msg("请至少选择一张图片");
  150. return false;
  151. }
  152. if (urls.length > limit) {
  153. parent.layer.msg("限制只能选"+limit+"张");
  154. return false;
  155. }
  156. if (isSpecImage) {
  157. urls.forEach(function (url) {
  158. // 商品多规格特殊处理
  159. var template = '<div class="upload-image-div">';
  160. template += '<img src="'+url+'" alt="img">';
  161. template += '<div class="del-upload-btn">x</div>';
  162. that.parent().before(template);
  163. that.parent().parent().find(".upload-spec-image").val(url);
  164. });
  165. } else {
  166. urls.forEach(function (url) {
  167. var template = '<div class="upload-image-div" draggable="true">';
  168. template += '<img src="'+url+'" alt="img">';
  169. template += '<input type="hidden" name="'+field+'" value="'+url+'">';
  170. template += '<div class="del-upload-btn">x</div>';
  171. that.parent().before(template);
  172. });
  173. }
  174. if (limit === 1) that.parent().hide();
  175. parent.layer.close(index);
  176. });
  177. }
  178. });
  179. },
  180. /**
  181. * 上传视频
  182. * @author fzr
  183. * @param options
  184. */
  185. videoUpload: function (options) {
  186. var that = options.that;
  187. var limit = options.limit || 1;
  188. var field = options.field || "video";
  189. var content = options.content || '/cY0aK2sG/file/lists?type=20';
  190. parent.layer.open({
  191. type: 2
  192. ,title: "上传视频"
  193. ,shadeClose: true
  194. ,maxmin: true
  195. ,anim: 1
  196. ,shade: 0.3
  197. ,area: ["90%", "90%"]
  198. ,content: content
  199. ,success: function (layero, index) {
  200. var iframeNode = $(layero).find("iframe").contents();
  201. iframeNode.find("#okFile").click(function () {
  202. var urls = [];
  203. iframeNode.find(".warehouse li.on").each(function () {
  204. urls.push($(this).attr("lay-href"));
  205. });
  206. if (urls.length <= 0) {
  207. parent.layer.msg("请至少选择一个视频");
  208. return false;
  209. }
  210. if (urls.length > limit) {
  211. parent.layer.msg("限制只能选"+limit+"个");
  212. return false;
  213. }
  214. urls.forEach(function (url) {
  215. var template = '<div class="upload-video-div">';
  216. template += '<video src="'+url+'"></video>';
  217. template += '<input type="hidden" name="'+field+'" value="'+url+'">';
  218. template += '<div class="del-upload-btn">x</div>';
  219. that.parent().parent().prepend(template);
  220. });
  221. if (limit === 1) that.parent().hide();
  222. parent.layer.close(index);
  223. });
  224. }
  225. });
  226. },
  227. /**
  228. * 删除上传文件
  229. * @author fzr
  230. */
  231. delUpload: function () {
  232. $(document).on("click", ".del-upload-btn", function () {
  233. $(this).parent().parent().find(".upload-image-elem").show();
  234. $(this).parent().parent().find(".upload-spec-image").val(''); // 商品多规格特殊处理
  235. $(this).parent().remove();
  236. });
  237. },
  238. /**
  239. * 放大图片
  240. */
  241. showImg: function (url, xp) {
  242. function getImageWidth(url, callback) {
  243. var img = new Image();
  244. img.src = url;
  245. if (img.complete) {
  246. callback(img.width, img.height)
  247. } else {
  248. img.onload = function () {
  249. callback(img.width, img.height)
  250. }
  251. }
  252. }
  253. xp === undefined ? 500 : xp;
  254. getImageWidth(url, function (width, height) {
  255. if (height > xp) {
  256. var ratio = width / height;
  257. height = xp;
  258. width = height * ratio
  259. }
  260. if (width > xp) {
  261. var ratio = height / width;
  262. width = xp;
  263. height = width * ratio
  264. }
  265. layer.closeAll();
  266. layer.open({
  267. type: 1,
  268. closeBtn: 1,
  269. shade: false,
  270. title: false,
  271. shadeClose: false,
  272. area: ["auth", "auth"],
  273. content: '<img src="' + url + '" width="' + width + 'px" height="' + height + 'px">'
  274. })
  275. })
  276. },
  277. certUpload:function (element, url, domain) {
  278. layui.upload.render({
  279. elem: element
  280. ,url: url
  281. ,accept:'file'
  282. ,exts:'pem|txt|doc'
  283. ,done: function(res, index, upload) {
  284. var html = '<div class="pay-li">\n' +
  285. '<img class="pay-img" ' +
  286. 'src="/static/common/image/default/upload.png">' +
  287. '<a class="pay-img-del-x" style="display: none">x</a>' +
  288. '</div>';
  289. $(element).prev().val(res.data[1].uri);
  290. $(element).after(html);
  291. $(element).css('display','none');
  292. }
  293. });
  294. }
  295. };