正在显示
1 个修改的文件
包含
16 行增加
和
0 行删除
@@ -371,6 +371,22 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | @@ -371,6 +371,22 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin | ||
371 | $(this).removeClass("more-ellipsis-after"); | 371 | $(this).removeClass("more-ellipsis-after"); |
372 | } | 372 | } |
373 | }); | 373 | }); |
374 | + // 售后图片放大 | ||
375 | + $(document).on("click", ".record-images img", function () { | ||
376 | + var data = []; | ||
377 | + $(".record-images img").each(function (index, value) { | ||
378 | + data.push({ | ||
379 | + src: $(this).attr('src'), | ||
380 | + }); | ||
381 | + }); | ||
382 | + Layer.photos({ | ||
383 | + photos: { | ||
384 | + "start": $(this).index(), | ||
385 | + "data": data | ||
386 | + }, | ||
387 | + anim: 5 //0-6的选择,指定弹出图片动画类型,默认随机(请注意,3.0之前的版本用shift参数) | ||
388 | + }); | ||
389 | + }); | ||
374 | Controller.api.bindevent(); | 390 | Controller.api.bindevent(); |
375 | }, | 391 | }, |
376 | add: function () { | 392 | add: function () { |
-
请 注册 或 登录 后发表评论