|
|
@@ -753,24 +753,46 @@ if(coupon.length>0){
|
|
|
html += ' </ul>\n';
|
|
|
html += ' </div>\n';
|
|
|
html += '</div>\n';
|
|
|
- html += '<div class="content dp_announce line">\n ';
|
|
|
- html += ' <div class="cont_head">\n ';
|
|
|
- html += ' <div>\n ';
|
|
|
- html += ' <h4>유의사항</h4>\n ';
|
|
|
- html += ' </div>\n ';
|
|
|
- html += ' </div>\n ';
|
|
|
- html += ' <div class="cont_body">\n ';
|
|
|
- html += ' <div class="announce_txt">\n ';
|
|
|
- html += ' <div class="note_txt">\n ';
|
|
|
- html += ' <img src="/images/pc/ico_content_find.png" alt="유의사항">\n ';
|
|
|
- html += ' <p>유의사항</p>\n ';
|
|
|
- html += ' </div>\n ';
|
|
|
- html += ' <div class="announce_list">\n ';
|
|
|
- html += coupon[0].note;
|
|
|
- html += ' </div> ';
|
|
|
- html += ' </div> ';
|
|
|
- html += ' </div> ';
|
|
|
- html += '</div> ';
|
|
|
+ if(coupon[0].cpnNote0 != null && coupon[0].cpnNote0 != ''){
|
|
|
+ html += '<div class="content dp_announce line">\n ';
|
|
|
+ html += ' <div class="cont_head">\n ';
|
|
|
+ html += ' <div>\n ';
|
|
|
+ html += ' <h4>유의사항</h4>\n ';
|
|
|
+ html += ' </div>\n ';
|
|
|
+ html += ' </div>\n ';
|
|
|
+ html += ' <div class="cont_body">\n ';
|
|
|
+ html += ' <div class="announce_txt">\n ';
|
|
|
+ html += ' <div class="note_txt">\n ';
|
|
|
+ html += ' <img src="/images/pc/ico_content_find.png" alt="유의사항">\n ';
|
|
|
+ html += ' <p>유의사항</p>\n ';
|
|
|
+ html += ' </div>\n ';
|
|
|
+ html += ' <div class="announce_list">\n ';
|
|
|
+ html += ' <ul>\n';
|
|
|
+ html += ' <li>' + coupon[0].cpnNote0 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote1 != null && coupon[0].cpnNote1 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote1 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote2 != null && coupon[0].cpnNote2 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote2 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote3 != null && coupon[0].cpnNote3 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote3 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote4 != null && coupon[0].cpnNote4 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote4 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote5 != null && coupon[0].cpnNote5 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote5 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote6 != null && coupon[0].cpnNote6 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote6 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote7 != null && coupon[0].cpnNote7 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote7 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote8 != null && coupon[0].cpnNote8 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote8 +'</li>\n';
|
|
|
+ if(coupon[0].cpnNote9 != null && coupon[0].cpnNote9 != '')
|
|
|
+ html += ' <li>' + coupon[0].cpnNote9 +'</li>\n';
|
|
|
+ html += ' </ul>\n';
|
|
|
+ html += ' </div> ';
|
|
|
+ html += ' </div> ';
|
|
|
+ html += ' </div> ';
|
|
|
+ html += '</div> ';
|
|
|
+ }
|
|
|
|
|
|
|
|
|
$("#G082_20").append(html);
|