...
|
...
|
@@ -233,6 +233,20 @@ function appEntranceIconOP( url, item) { |
|
|
});
|
|
|
});
|
|
|
$(".modal-dialog").css("width","800px");
|
|
|
/**
|
|
|
* 删除图片
|
|
|
*/
|
|
|
$(document).on("click", ".del-btn", function () {
|
|
|
var key = $(this).data('key');
|
|
|
|
|
|
var $parent = $(this).parent().parent();
|
|
|
|
|
|
$parent.find("input[type=file]").each(function(){
|
|
|
$(this).attr("value", "");
|
|
|
});
|
|
|
|
|
|
$parent.find(".upload-image-list .fileinput-button-icon").html('+');
|
|
|
});
|
|
|
|
|
|
a.init();
|
|
|
|
...
|
...
|
|