|
@@ -147,11 +147,11 @@ var cfnOpenOrderDetailPopup = function(ordNo) {
|
|
|
*/
|
|
*/
|
|
|
//이미지 미리보기 팝업 열기
|
|
//이미지 미리보기 팝업 열기
|
|
|
var cfnOpenImagePreViewPopup = function(id,imgUrl) {
|
|
var cfnOpenImagePreViewPopup = function(id,imgUrl) {
|
|
|
- var str = '<div class="popupWrap videoClose" id="'+id+'" style="z-index:30">';
|
|
|
|
|
- str = str + '<div class="videoPopup modal" data-width="700" data-height="350">';
|
|
|
|
|
|
|
+
|
|
|
|
|
+ var str = '<div class="videoPopup" data-width="700" data-height="350" id="'+id+'" style="z-index:30">';
|
|
|
str = str + '<button type="button" class="close" onclick="uifnPopupClose(\''+id+'\')"><i class="fa fa-times"></i></button>';
|
|
str = str + '<button type="button" class="close" onclick="uifnPopupClose(\''+id+'\')"><i class="fa fa-times"></i></button>';
|
|
|
- str = str + '<img id="imagePreView" src="/image/del01.jpg"/>';
|
|
|
|
|
- str = str + '</div></div>';
|
|
|
|
|
|
|
+ str = str + '<img id="imagePreView" src="/image/no.gif"/>';
|
|
|
|
|
+ str = str + '</div>';
|
|
|
|
|
|
|
|
if ($('#'+ id).length == 0) {
|
|
if ($('#'+ id).length == 0) {
|
|
|
$('body').append(str);
|
|
$('body').append(str);
|
|
@@ -161,6 +161,7 @@ var cfnOpenImagePreViewPopup = function(id,imgUrl) {
|
|
|
var popW = parseInt( $thisId.attr("data-width") );
|
|
var popW = parseInt( $thisId.attr("data-width") );
|
|
|
var popH = parseInt( $thisId.attr("data-height") );
|
|
var popH = parseInt( $thisId.attr("data-height") );
|
|
|
$("#imagePreView").attr("src", imgUrl);
|
|
$("#imagePreView").attr("src", imgUrl);
|
|
|
|
|
+ //$($thisId).css({display:"block"});
|
|
|
$("#"+id).css({display:"block"});
|
|
$("#"+id).css({display:"block"});
|
|
|
}
|
|
}
|
|
|
|
|
|