...
|
...
|
@@ -371,6 +371,22 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
$(this).removeClass("more-ellipsis-after");
|
|
|
}
|
|
|
});
|
|
|
// 售后图片放大
|
|
|
$(document).on("click", ".record-images img", function () {
|
|
|
var data = [];
|
|
|
$(".record-images img").each(function (index, value) {
|
|
|
data.push({
|
|
|
src: $(this).attr('src'),
|
|
|
});
|
|
|
});
|
|
|
Layer.photos({
|
|
|
photos: {
|
|
|
"start": $(this).index(),
|
|
|
"data": data
|
|
|
},
|
|
|
anim: 5 //0-6的选择,指定弹出图片动画类型,默认随机(请注意,3.0之前的版本用shift参数)
|
|
|
});
|
|
|
});
|
|
|
Controller.api.bindevent();
|
|
|
},
|
|
|
add: function () {
|
...
|
...
|
|